W2V

1. Read 50 pdf

In [1]:
import re
from pathlib import Path

pathlist = Path(r'C:\Users\ALMUG\Downloads\BondCovenant_Corpus\High Yield - Bond Documents\corpus\aaaaa').glob('**/*.txt')
full_data = ''
for file_path in pathlist:
#         path = r"C:\Users\ALMUG\Downloads\BondCovenant_Corpus\High Yield - Bond Documents\corpus\Aston Martin 2022 Prelim OM Mar 23 2017.txt"
    data = open(file_path, 'r', encoding="utf8")
    text = data.read()
    data.close()
    full_data = full_data + '\n' + text

Total numb. of character in 50 pdf (Corpus)

Totoal numb. of word (unclean ) in corpus

In [41]:
print(len(full_data))
print(len(full_data.split())) 
126400525
21944867

Creating sentence splitter and stopwords

In [42]:
alphabets = "([A-Za-z0-9])"
special_char = "(,|\(|\)|;|\‘‘|£)"
In [43]:
stopwords= ['i', 'me', 'my', 'myself', 'we', 'our', 'ours', 'ourselves', 'you', "you're", "you've",\
            "you'll", "you'd", 'your', 'yours', 'yourself', 'yourselves', 'he', 'him', 'his', 'himself', \
            'she', "she's", 'her', 'hers', 'herself', 'it', "it's", 'its', 'itself', 'they', 'them', 'their',\
            'theirs', 'themselves', 'what', 'which', 'who', 'whom', 'this', 'that', "that'll", 'these', 'those', \
            'am', 'is', 'are', 'was', 'were', 'be', 'been', 'being', 'have', 'has', 'had', 'having', 'do', 'does', \
            'did', 'doing', 'a', 'an', 'the', 'but', 'if', 'because', 'as', 'until', 'while', 'of', \
            'at', 'by', 'for', 'with', 'about', 'against', 'between', 'into', 'through', 'during', 'before', 'after',\
            'above', 'below', 'to', 'from', 'up', 'down', 'in', 'out', 'on', 'off', 'over', 'under', 'again', 'further',\
            'then', 'once', 'here', 'there', 'when', 'where', 'why', 'how', 'all', 'any', 'both', 'each', 'few', 'more',\
            'most', 'other', 'some', 'such', 'only', 'own', 'same', 'so', 'than', 'too', 'very', \
            's', 't', 'can', 'will', 'just', 'don', "don't", 'should', "should've", 'now', 'd', 'll', 'm', 'o', 're', \
            've', 'y', 'ain', 'aren', "aren't", 'couldn', "couldn't", 'didn', "didn't", 'doesn', "doesn't", 'hadn',\
            "hadn't", 'hasn', "hasn't", 'haven', "haven't", 'isn', "isn't", 'ma', 'mightn', "mightn't", 'mustn',\
            "mustn't", 'needn', "needn't", 'shan', "shan't", 'shouldn', "shouldn't", 'wasn', "wasn't", 'weren', "weren't", \
            'won', "won't", 'wouldn', "wouldn't"]
In [44]:
import re
import string
def sentence_splitter(text):
    text = re.sub(alphabets + "\\n"+ alphabets ,"\\1<space>\\2",text)
    text = re.sub( alphabets + "\\n" + special_char ,"\\1<space>\\2",text)
    text = re.sub(special_char + "\\n" + alphabets,"\\1<space>\\2",text)
    text = re.sub("<space>"," ",text)
    text = re.sub("; and,",".\n",text)
    text = re.sub("; and",".\n",text)
    text = re.sub("; or",".\n",text)
    text = re.sub(", and",".\n",text)
    text = text.lower().strip()
    text = text.split('\n')
    sentences = []
    for i in text:
        i = re.sub("\(\w+\)","",i)
        i = re.sub("\d+", "", i)
        i = re.sub("(‘‘)|(’’)", "", i)
        table = str.maketrans({key: None for key in string.punctuation})
        i = i.translate(table)
        i = ' '.join(e for e in i.split() if e.lower() not in stopwords)
        sentences.append(i)
    return sentences
In [45]:
sentences = sentence_splitter(full_data)

Starting 20 sentences (Unclean)

In [47]:
sentences[:20]
Out[47]:
['important notice important must read following disclaimer continuing following disclaimer applies attached offering memorandum and therefore advised read disclaimer page carefully reading accessing or making use attached offering memorandum accessing attached offering memorandum agree bound following terms and conditions including modifications time time time receive information wind acquisition finance sa issuer defined or wind telecomunicazioni spa guarantor defined result access',
 'confirmation representation order eligible view offering memorandum or make investment decision respect securities must not us person within meaning regulation us securities act amended us securities act and outside united states',
 'qualified institutional buyer',
 'within meaning rule us securities act sent attached offering memorandum basis confirmed initial purchasers set forth attached offering memorandum collectively initial purchasers sender or senders attached either and customers represent not us persons',
 'electronic mail or email address delivered not located united states america territories and possessions state united states and district columbia possessions include puerto rico us virgin islands guam american samoa wake island and northern mariana islands',
 'and customers represent qualified institutional buyers and either case consent delivery electronic transmission',
 'offering memorandum sent electronic form reminded documents transmitted via medium may altered or changed process transmission and consequently neither initial purchasers nor person controls initial purchaser nor wind acquisition finance sa or wind telecomunicazioni spa nor director officer employer employee or agent or affiliate person accepts liability or responsibility whatsoever respect difference offering memorandum distributed electronic format and hard copy version available request initial purchasers',
 'reminded attached offering memorandum delivered basis person whose possession offering memorandum may lawfully delivered accordance laws jurisdiction located and may not nor authorized deliver offering memorandum person not transmit attached offering memorandum or copy or part thereof or disclose whether orally or writing contents person except consent initial purchasers',
 'restrictions nothing electronic transmission constitutes offer securities sale united states or jurisdiction recipients offering memorandum intend subscribe or purchase securities reminded subscription or purchase may made basis information contained offering memorandum securities issued not registered us securities act and may not offered or sold united states or or account or benefit us persons terms defined regulation us securities act unless registered us securities act or pursuant exemption registration',
 'communication directed solely persons outside united kingdom or investment professionals term defined article financial promotion order persons falling within article financial services and markets act financial promotion order persons together referred relevant persons offering memorandum must not acted or relied persons not relevant persons investment or investment activity offering memorandum relates available relevant persons and engaged relevant persons person not relevant person not act or rely offering memorandum or contents',
 '',
 'information offering memorandum not complete and may changed offering memorandum not offer sell securities and not soliciting offer buy securities jurisdiction offer or sale not permitted',
 '',
 'subject completion dated april preliminary offering memorandum',
 '',
 'confidential',
 '',
 'wind acquisition finance sa',
 'apr e combination euro and us dollars',
 '']

Observation from above sentences

There are alot of sentences which have numb. of words <10

Total numb. of sentences

In [48]:
len(sentences)
Out[48]:
2708652
In [49]:
count = []
for sentence in sentences:
    length = len(sentence.split())
    count.append(length)
In [50]:
import pandas as pd
list_of_tuples = list(zip(sentences,count))
df = pd.DataFrame(list_of_tuples, columns = ['sentences', 'count'])

Below df contains sentences and word count in a sentence

In [51]:
df.head(20)
Out[51]:
sentences count
0 important notice important must read following... 60
1 confirmation representation order eligible vie... 31
2 qualified institutional buyer 3
3 within meaning rule us securities act sent att... 33
4 electronic mail or email address delivered not... 36
5 and customers represent qualified institutiona... 13
6 offering memorandum sent electronic form remin... 65
7 reminded attached offering memorandum delivere... 49
8 restrictions nothing electronic transmission c... 68
9 communication directed solely persons outside ... 70
10 0
11 information offering memorandum not complete a... 26
12 0
13 subject completion dated april preliminary off... 7
14 0
15 confidential 1
16 0
17 wind acquisition finance sa 4
18 apr e combination euro and us dollars 7
19 0
In [52]:
df['sentences'][5]
Out[52]:
'and customers represent qualified institutional buyers and either case consent delivery electronic transmission'
In [53]:
df['sentences'][84]
Out[53]:
'determined offering memorandum truthful or complete representation contrary criminal offense'

Max. word in a sentences is 527

In [54]:
df['count'].max()
Out[54]:
527

Plot of total number of words in each sentences

In [74]:
import matplotlib.pyplot as plt
import seaborn as sns
plt.figure(figsize=(20,15))
sns.distplot(df['count'], hist=False)
plt.title('Plot of Total number of words in each sentences')
plt.xlabel('Number of words in each sentences')
plt.legend()
plt.show()
No handles with labels found to put in legend.

Important in below cell number of row which is 2.7 million sentences

In [56]:
df.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 2708652 entries, 0 to 2708651
Data columns (total 2 columns):
sentences    object
count        int64
dtypes: int64(1), object(1)
memory usage: 41.3+ MB
In [57]:
df1 = df[df['count'] > 10]

Now the number of sentences come down to 2 lakhs (10% only)

In [58]:
df1.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 262326 entries, 0 to 2708637
Data columns (total 2 columns):
sentences    262326 non-null object
count        262326 non-null int64
dtypes: int64(1), object(1)
memory usage: 6.0+ MB

Cleaned sentences

In [59]:
df1.head(20)
Out[59]:
sentences count
0 important notice important must read following... 60
1 confirmation representation order eligible vie... 31
3 within meaning rule us securities act sent att... 33
4 electronic mail or email address delivered not... 36
5 and customers represent qualified institutiona... 13
6 offering memorandum sent electronic form remin... 65
7 reminded attached offering memorandum delivere... 49
8 restrictions nothing electronic transmission c... 68
9 communication directed solely persons outside ... 70
11 information offering memorandum not complete a... 26
23 senior secured fixed rate notes due senior sec... 18
25 oct wind acquisition finance sa incorporated p... 23
26 registered luxembourg trade and companies regi... 31
28 senior secured notes due fixed rate notes or d... 32
30 per annum and issuer pay interest fixed rates ... 31
34 issuer may option redeem or fixed rate notes o... 123
35 notes senior debt issuer and rank pari passu r... 63
36 rank senior right payment wind’s existing and ... 48
37 offering memorandum includes information terms... 19
38 currently no public market notes application m... 50
In [60]:
sentences = list(df1['sentences'])
In [61]:
type(sentences)
Out[61]:
list

cleaned sentences

In [62]:
sentences[:10]
Out[62]:
['important notice important must read following disclaimer continuing following disclaimer applies attached offering memorandum and therefore advised read disclaimer page carefully reading accessing or making use attached offering memorandum accessing attached offering memorandum agree bound following terms and conditions including modifications time time time receive information wind acquisition finance sa issuer defined or wind telecomunicazioni spa guarantor defined result access',
 'confirmation representation order eligible view offering memorandum or make investment decision respect securities must not us person within meaning regulation us securities act amended us securities act and outside united states',
 'within meaning rule us securities act sent attached offering memorandum basis confirmed initial purchasers set forth attached offering memorandum collectively initial purchasers sender or senders attached either and customers represent not us persons',
 'electronic mail or email address delivered not located united states america territories and possessions state united states and district columbia possessions include puerto rico us virgin islands guam american samoa wake island and northern mariana islands',
 'and customers represent qualified institutional buyers and either case consent delivery electronic transmission',
 'offering memorandum sent electronic form reminded documents transmitted via medium may altered or changed process transmission and consequently neither initial purchasers nor person controls initial purchaser nor wind acquisition finance sa or wind telecomunicazioni spa nor director officer employer employee or agent or affiliate person accepts liability or responsibility whatsoever respect difference offering memorandum distributed electronic format and hard copy version available request initial purchasers',
 'reminded attached offering memorandum delivered basis person whose possession offering memorandum may lawfully delivered accordance laws jurisdiction located and may not nor authorized deliver offering memorandum person not transmit attached offering memorandum or copy or part thereof or disclose whether orally or writing contents person except consent initial purchasers',
 'restrictions nothing electronic transmission constitutes offer securities sale united states or jurisdiction recipients offering memorandum intend subscribe or purchase securities reminded subscription or purchase may made basis information contained offering memorandum securities issued not registered us securities act and may not offered or sold united states or or account or benefit us persons terms defined regulation us securities act unless registered us securities act or pursuant exemption registration',
 'communication directed solely persons outside united kingdom or investment professionals term defined article financial promotion order persons falling within article financial services and markets act financial promotion order persons together referred relevant persons offering memorandum must not acted or relied persons not relevant persons investment or investment activity offering memorandum relates available relevant persons and engaged relevant persons person not relevant person not act or rely offering memorandum or contents',
 'information offering memorandum not complete and may changed offering memorandum not offer sell securities and not soliciting offer buy securities jurisdiction offer or sale not permitted']

Part2

Below code is to copy all text to 1 text file

In [289]:
from tqdm import tqdm
for sentence in tqdm(sentences):
    with open( "full_corpus" + '.txt', 'a', encoding="utf-8") as out_file:
        out_file.write(sentence + '\n')
out_file.close()        


  0%|                                                                                       | 0/262326 [00:00<?, ?it/s]


  0%|                                                                             | 19/262326 [00:00<23:08, 188.85it/s]


  0%|                                                                             | 49/262326 [00:00<20:36, 212.14it/s]


  0%|                                                                             | 69/262326 [00:00<21:23, 204.40it/s]


  0%|                                                                             | 98/262326 [00:00<19:36, 222.85it/s]


  0%|                                                                            | 126/262326 [00:00<18:26, 236.95it/s]


  0%|                                                                            | 151/262326 [00:00<18:14, 239.48it/s]


  0%|                                                                            | 179/262326 [00:00<17:29, 249.85it/s]


  0%|                                                                            | 207/262326 [00:00<16:57, 257.69it/s]


  0%|                                                                            | 235/262326 [00:00<16:34, 263.46it/s]


  0%|                                                                            | 263/262326 [00:01<16:20, 267.18it/s]


  0%|                                                                            | 290/262326 [00:01<16:28, 265.00it/s]


  0%|                                                                            | 317/262326 [00:01<16:51, 258.97it/s]


  0%|                                                                            | 343/262326 [00:01<17:16, 252.70it/s]


  0%|                                                                            | 371/262326 [00:01<16:56, 257.63it/s]


  0%|                                                                            | 397/262326 [00:01<17:11, 254.02it/s]


  0%|                                                                            | 426/262326 [00:01<16:40, 261.83it/s]


  0%|▏                                                                           | 455/262326 [00:01<16:18, 267.66it/s]


  0%|▏                                                                           | 482/262326 [00:01<16:37, 262.42it/s]


  0%|▏                                                                           | 510/262326 [00:01<16:25, 265.61it/s]


  0%|▏                                                                           | 538/262326 [00:02<16:18, 267.66it/s]


  0%|▏                                                                           | 565/262326 [00:02<16:26, 265.47it/s]


  0%|▏                                                                           | 592/262326 [00:02<16:40, 261.66it/s]


  0%|▏                                                                           | 619/262326 [00:02<17:36, 247.67it/s]


  0%|▏                                                                           | 647/262326 [00:02<17:07, 254.63it/s]


  0%|▏                                                                           | 675/262326 [00:02<16:47, 259.73it/s]


  0%|▏                                                                           | 703/262326 [00:02<16:25, 265.49it/s]


  0%|▏                                                                           | 730/262326 [00:02<16:43, 260.73it/s]


  0%|▏                                                                           | 757/262326 [00:02<16:34, 262.88it/s]


  0%|▏                                                                           | 786/262326 [00:03<16:14, 268.44it/s]


  0%|▏                                                                           | 814/262326 [00:03<16:15, 268.10it/s]


  0%|▏                                                                           | 842/262326 [00:03<16:07, 270.23it/s]


  0%|▎                                                                           | 870/262326 [00:03<16:24, 265.54it/s]


  0%|▎                                                                           | 898/262326 [00:03<16:09, 269.65it/s]


  0%|▎                                                                           | 926/262326 [00:03<16:09, 269.51it/s]


  0%|▎                                                                           | 953/262326 [00:03<16:11, 268.99it/s]


  0%|▎                                                                           | 980/262326 [00:03<16:44, 260.21it/s]


  0%|▎                                                                          | 1010/262326 [00:03<16:13, 268.33it/s]


  0%|▎                                                                          | 1037/262326 [00:03<16:38, 261.76it/s]


  0%|▎                                                                          | 1064/262326 [00:04<16:31, 263.61it/s]


  0%|▎                                                                          | 1092/262326 [00:04<16:21, 266.23it/s]


  0%|▎                                                                          | 1120/262326 [00:04<16:13, 268.40it/s]


  0%|▎                                                                          | 1147/262326 [00:04<17:14, 252.41it/s]


  0%|▎                                                                          | 1175/262326 [00:04<16:44, 259.95it/s]


  0%|▎                                                                          | 1204/262326 [00:04<16:20, 266.25it/s]


  0%|▎                                                                          | 1232/262326 [00:04<16:08, 269.66it/s]


  0%|▎                                                                          | 1261/262326 [00:04<15:52, 274.20it/s]


  0%|▎                                                                          | 1291/262326 [00:04<15:31, 280.16it/s]


  1%|▍                                                                          | 1320/262326 [00:04<15:29, 280.87it/s]


  1%|▍                                                                          | 1350/262326 [00:05<15:18, 284.10it/s]


  1%|▍                                                                          | 1379/262326 [00:05<15:14, 285.26it/s]


  1%|▍                                                                          | 1408/262326 [00:05<16:08, 269.33it/s]


  1%|▍                                                                          | 1437/262326 [00:05<15:55, 273.10it/s]


  1%|▍                                                                          | 1465/262326 [00:05<15:50, 274.54it/s]


  1%|▍                                                                          | 1494/262326 [00:05<16:06, 269.91it/s]


  1%|▍                                                                          | 1522/262326 [00:05<16:03, 270.68it/s]


  1%|▍                                                                          | 1552/262326 [00:05<15:42, 276.75it/s]


  1%|▍                                                                          | 1580/262326 [00:05<16:14, 267.61it/s]


  1%|▍                                                                          | 1610/262326 [00:06<15:49, 274.52it/s]


  1%|▍                                                                          | 1638/262326 [00:06<16:11, 268.43it/s]


  1%|▍                                                                          | 1666/262326 [00:06<16:01, 271.20it/s]


  1%|▍                                                                          | 1694/262326 [00:06<17:00, 255.51it/s]


  1%|▍                                                                          | 1725/262326 [00:06<16:08, 269.19it/s]


  1%|▌                                                                          | 1754/262326 [00:06<15:51, 273.77it/s]


  1%|▌                                                                          | 1784/262326 [00:06<15:33, 279.01it/s]


  1%|▌                                                                          | 1813/262326 [00:06<15:32, 279.39it/s]


  1%|▌                                                                          | 1842/262326 [00:06<15:37, 277.86it/s]


  1%|▌                                                                          | 1873/262326 [00:07<15:12, 285.41it/s]


  1%|▌                                                                          | 1904/262326 [00:07<14:57, 290.15it/s]


  1%|▌                                                                          | 1935/262326 [00:07<14:44, 294.35it/s]


  1%|▌                                                                          | 1965/262326 [00:07<14:54, 291.10it/s]


  1%|▌                                                                          | 1995/262326 [00:07<14:58, 289.70it/s]


  1%|▌                                                                          | 2025/262326 [00:07<14:58, 289.58it/s]


  1%|▌                                                                          | 2056/262326 [00:07<14:45, 293.94it/s]


  1%|▌                                                                          | 2087/262326 [00:07<14:38, 296.27it/s]


  1%|▌                                                                          | 2121/262326 [00:07<14:08, 306.67it/s]


  1%|▌                                                                          | 2152/262326 [00:07<14:06, 307.25it/s]


  1%|▌                                                                          | 2184/262326 [00:08<14:00, 309.33it/s]


  1%|▋                                                                          | 2215/262326 [00:08<14:10, 305.72it/s]


  1%|▋                                                                          | 2246/262326 [00:08<14:11, 305.45it/s]


  1%|▋                                                                          | 2277/262326 [00:08<14:58, 289.32it/s]


  1%|▋                                                                          | 2308/262326 [00:08<14:45, 293.81it/s]


  1%|▋                                                                          | 2339/262326 [00:08<14:35, 297.00it/s]


  1%|▋                                                                          | 2369/262326 [00:08<14:48, 292.63it/s]


  1%|▋                                                                          | 2401/262326 [00:08<14:31, 298.15it/s]


  1%|▋                                                                          | 2433/262326 [00:08<14:15, 303.79it/s]


  1%|▋                                                                          | 2464/262326 [00:08<14:11, 305.30it/s]


  1%|▋                                                                          | 2496/262326 [00:09<14:27, 299.38it/s]


  1%|▋                                                                          | 2528/262326 [00:09<14:12, 304.64it/s]


  1%|▋                                                                          | 2559/262326 [00:09<14:30, 298.55it/s]


  1%|▋                                                                          | 2589/262326 [00:09<15:04, 287.20it/s]


  1%|▋                                                                          | 2621/262326 [00:09<14:38, 295.46it/s]


  1%|▊                                                                          | 2655/262326 [00:09<14:10, 305.29it/s]


  1%|▊                                                                          | 2686/262326 [00:09<18:30, 233.86it/s]


  1%|▊                                                                          | 2716/262326 [00:09<17:18, 249.97it/s]


  1%|▊                                                                          | 2748/262326 [00:10<16:12, 267.04it/s]


  1%|▊                                                                          | 2779/262326 [00:10<15:33, 278.08it/s]


  1%|▊                                                                          | 2810/262326 [00:10<15:06, 286.36it/s]


  1%|▊                                                                          | 2840/262326 [00:10<15:16, 283.15it/s]


  1%|▊                                                                          | 2870/262326 [00:10<15:38, 276.32it/s]


  1%|▊                                                                          | 2901/262326 [00:10<15:10, 285.05it/s]


  1%|▊                                                                          | 2933/262326 [00:10<14:44, 293.33it/s]


  1%|▊                                                                          | 2965/262326 [00:10<14:28, 298.54it/s]


  1%|▊                                                                          | 2997/262326 [00:10<14:15, 303.17it/s]


  1%|▊                                                                          | 3028/262326 [00:10<14:59, 288.34it/s]


  1%|▊                                                                          | 3060/262326 [00:11<14:36, 295.73it/s]


  1%|▉                                                                          | 3092/262326 [00:11<14:23, 300.30it/s]


  1%|▉                                                                          | 3123/262326 [00:11<14:19, 301.64it/s]


  1%|▉                                                                          | 3154/262326 [00:11<14:46, 292.30it/s]


  1%|▉                                                                          | 3185/262326 [00:11<14:35, 295.92it/s]


  1%|▉                                                                          | 3217/262326 [00:11<14:22, 300.43it/s]


  1%|▉                                                                          | 3248/262326 [00:11<14:23, 299.97it/s]


  1%|▉                                                                          | 3280/262326 [00:11<14:10, 304.61it/s]


  1%|▉                                                                          | 3314/262326 [00:11<13:49, 312.07it/s]


  1%|▉                                                                          | 3346/262326 [00:12<14:02, 307.42it/s]


  1%|▉                                                                          | 3377/262326 [00:12<14:17, 302.02it/s]


  1%|▉                                                                          | 3408/262326 [00:12<14:22, 300.11it/s]


  1%|▉                                                                          | 3439/262326 [00:12<14:37, 295.04it/s]


  1%|▉                                                                          | 3470/262326 [00:12<14:28, 297.88it/s]


  1%|█                                                                          | 3501/262326 [00:12<14:20, 300.80it/s]


  1%|█                                                                          | 3534/262326 [00:12<14:10, 304.12it/s]


  1%|█                                                                          | 3565/262326 [00:12<14:12, 303.39it/s]


  1%|█                                                                          | 3597/262326 [00:12<13:59, 308.16it/s]


  1%|█                                                                          | 3628/262326 [00:12<14:09, 304.42it/s]


  1%|█                                                                          | 3660/262326 [00:13<14:01, 307.39it/s]


  1%|█                                                                          | 3692/262326 [00:13<13:55, 309.51it/s]


  1%|█                                                                          | 3723/262326 [00:13<14:21, 300.06it/s]


  1%|█                                                                          | 3754/262326 [00:13<14:37, 294.56it/s]


  1%|█                                                                          | 3785/262326 [00:13<14:31, 296.69it/s]


  1%|█                                                                          | 3817/262326 [00:13<14:14, 302.69it/s]


  1%|█                                                                          | 3848/262326 [00:13<14:32, 296.27it/s]


  1%|█                                                                          | 3878/262326 [00:13<14:34, 295.50it/s]


  1%|█                                                                          | 3910/262326 [00:13<14:21, 300.10it/s]


  2%|█▏                                                                         | 3941/262326 [00:14<14:33, 295.68it/s]


  2%|█▏                                                                         | 3973/262326 [00:14<14:20, 300.26it/s]


  2%|█▏                                                                         | 4004/262326 [00:14<14:48, 290.60it/s]


  2%|█▏                                                                         | 4034/262326 [00:14<15:00, 286.86it/s]


  2%|█▏                                                                         | 4066/262326 [00:14<14:36, 294.64it/s]


  2%|█▏                                                                         | 4096/262326 [00:14<14:43, 292.15it/s]


  2%|█▏                                                                         | 4129/262326 [00:14<14:19, 300.31it/s]


  2%|█▏                                                                         | 4161/262326 [00:14<14:05, 305.32it/s]


  2%|█▏                                                                         | 4193/262326 [00:14<13:58, 308.03it/s]


  2%|█▏                                                                         | 4226/262326 [00:14<13:45, 312.76it/s]


  2%|█▏                                                                         | 4258/262326 [00:15<13:46, 312.39it/s]


  2%|█▏                                                                         | 4290/262326 [00:15<14:10, 303.29it/s]


  2%|█▏                                                                         | 4322/262326 [00:15<14:01, 306.57it/s]


  2%|█▏                                                                         | 4353/262326 [00:15<14:17, 300.69it/s]


  2%|█▎                                                                         | 4384/262326 [00:15<14:11, 302.92it/s]


  2%|█▎                                                                         | 4416/262326 [00:15<14:01, 306.32it/s]


  2%|█▎                                                                         | 4448/262326 [00:15<13:52, 309.64it/s]


  2%|█▎                                                                         | 4480/262326 [00:15<14:15, 301.46it/s]


  2%|█▎                                                                         | 4512/262326 [00:15<14:04, 305.28it/s]


  2%|█▎                                                                         | 4544/262326 [00:15<13:55, 308.66it/s]


  2%|█▎                                                                         | 4576/262326 [00:16<13:52, 309.51it/s]


  2%|█▎                                                                         | 4607/262326 [00:16<14:26, 297.45it/s]


  2%|█▎                                                                         | 4637/262326 [00:16<15:12, 282.48it/s]


  2%|█▎                                                                         | 4666/262326 [00:16<21:17, 201.66it/s]


  2%|█▎                                                                         | 4698/262326 [00:16<18:57, 226.48it/s]


  2%|█▎                                                                         | 4730/262326 [00:16<17:21, 247.25it/s]


  2%|█▎                                                                         | 4761/262326 [00:16<16:45, 256.24it/s]


  2%|█▎                                                                         | 4794/262326 [00:16<15:44, 272.81it/s]


  2%|█▍                                                                         | 4824/262326 [00:17<15:22, 279.08it/s]


  2%|█▍                                                                         | 4854/262326 [00:17<15:35, 275.09it/s]


  2%|█▍                                                                         | 4884/262326 [00:17<15:19, 279.98it/s]


  2%|█▍                                                                         | 4914/262326 [00:17<15:05, 284.28it/s]


  2%|█▍                                                                         | 4944/262326 [00:17<14:58, 286.35it/s]


  2%|█▍                                                                         | 4976/262326 [00:17<14:36, 293.47it/s]


  2%|█▍                                                                         | 5006/262326 [00:17<18:57, 226.30it/s]


  2%|█▍                                                                         | 5037/262326 [00:17<17:29, 245.25it/s]


  2%|█▍                                                                         | 5067/262326 [00:18<16:36, 258.15it/s]


  2%|█▍                                                                         | 5098/262326 [00:18<15:46, 271.70it/s]


  2%|█▍                                                                         | 5127/262326 [00:18<15:43, 272.48it/s]


  2%|█▍                                                                         | 5156/262326 [00:18<15:31, 276.15it/s]


  2%|█▍                                                                         | 5186/262326 [00:18<15:15, 280.73it/s]


  2%|█▍                                                                         | 5215/262326 [00:18<15:38, 273.99it/s]


  2%|█▍                                                                         | 5246/262326 [00:18<15:07, 283.31it/s]


  2%|█▌                                                                         | 5275/262326 [00:18<15:18, 279.74it/s]


  2%|█▌                                                                         | 5307/262326 [00:18<14:45, 290.14it/s]


  2%|█▌                                                                         | 5339/262326 [00:18<14:22, 297.88it/s]


  2%|█▌                                                                         | 5372/262326 [00:19<14:34, 293.87it/s]


  2%|█▌                                                                         | 5402/262326 [00:19<15:24, 277.81it/s]


  2%|█▌                                                                         | 5431/262326 [00:19<15:20, 279.16it/s]


  2%|█▌                                                                         | 5461/262326 [00:19<15:05, 283.77it/s]


  2%|█▌                                                                         | 5493/262326 [00:19<14:40, 291.56it/s]


  2%|█▌                                                                         | 5523/262326 [00:19<14:37, 292.56it/s]


  2%|█▌                                                                         | 5554/262326 [00:19<14:27, 296.10it/s]


  2%|█▌                                                                         | 5584/262326 [00:19<14:25, 296.62it/s]


  2%|█▌                                                                         | 5616/262326 [00:19<14:13, 300.93it/s]


  2%|█▌                                                                         | 5649/262326 [00:19<13:56, 306.75it/s]


  2%|█▌                                                                         | 5682/262326 [00:20<13:45, 310.96it/s]


  2%|█▋                                                                         | 5714/262326 [00:20<13:49, 309.33it/s]


  2%|█▋                                                                         | 5745/262326 [00:20<14:27, 295.63it/s]


  2%|█▋                                                                         | 5775/262326 [00:20<14:44, 290.09it/s]


  2%|█▋                                                                         | 5806/262326 [00:20<14:29, 295.17it/s]


  2%|█▋                                                                         | 5836/262326 [00:20<14:34, 293.36it/s]


  2%|█▋                                                                         | 5867/262326 [00:20<14:21, 297.54it/s]


  2%|█▋                                                                         | 5899/262326 [00:20<14:07, 302.45it/s]


  2%|█▋                                                                         | 5930/262326 [00:20<14:20, 297.92it/s]


  2%|█▋                                                                         | 5961/262326 [00:21<14:12, 300.79it/s]


  2%|█▋                                                                         | 5992/262326 [00:21<14:21, 297.62it/s]


  2%|█▋                                                                         | 6023/262326 [00:21<14:15, 299.74it/s]


  2%|█▋                                                                         | 6054/262326 [00:21<14:33, 293.52it/s]


  2%|█▋                                                                         | 6086/262326 [00:21<14:17, 298.69it/s]


  2%|█▋                                                                         | 6116/262326 [00:21<14:21, 297.49it/s]


  2%|█▊                                                                         | 6148/262326 [00:21<14:09, 301.58it/s]


  2%|█▊                                                                         | 6181/262326 [00:21<13:51, 308.06it/s]


  2%|█▊                                                                         | 6212/262326 [00:21<14:31, 293.98it/s]


  2%|█▊                                                                         | 6244/262326 [00:21<14:13, 299.87it/s]


  2%|█▊                                                                         | 6277/262326 [00:22<13:52, 307.68it/s]


  2%|█▊                                                                         | 6309/262326 [00:22<13:44, 310.62it/s]


  2%|█▊                                                                         | 6341/262326 [00:22<13:50, 308.20it/s]


  2%|█▊                                                                         | 6372/262326 [00:22<14:00, 304.47it/s]


  2%|█▊                                                                         | 6403/262326 [00:22<14:10, 300.99it/s]


  2%|█▊                                                                         | 6435/262326 [00:22<13:59, 304.88it/s]


  2%|█▊                                                                         | 6467/262326 [00:22<13:49, 308.62it/s]


  2%|█▊                                                                         | 6499/262326 [00:22<13:42, 311.20it/s]


  2%|█▊                                                                         | 6531/262326 [00:22<13:48, 308.57it/s]


  3%|█▉                                                                         | 6563/262326 [00:23<13:41, 311.25it/s]


  3%|█▉                                                                         | 6596/262326 [00:23<13:33, 314.18it/s]


  3%|█▉                                                                         | 6628/262326 [00:23<17:01, 250.33it/s]


  3%|█▉                                                                         | 6659/262326 [00:23<16:09, 263.80it/s]


  3%|█▉                                                                         | 6691/262326 [00:23<15:19, 277.95it/s]


  3%|█▉                                                                         | 6722/262326 [00:23<14:52, 286.33it/s]


  3%|█▉                                                                         | 6753/262326 [00:23<14:34, 292.41it/s]


  3%|█▉                                                                         | 6785/262326 [00:23<14:15, 298.73it/s]


  3%|█▉                                                                         | 6816/262326 [00:23<14:10, 300.50it/s]


  3%|█▉                                                                         | 6847/262326 [00:24<14:06, 301.76it/s]


  3%|█▉                                                                         | 6878/262326 [00:24<14:21, 296.58it/s]


  3%|█▉                                                                         | 6908/262326 [00:24<14:20, 296.96it/s]


  3%|█▉                                                                         | 6938/262326 [00:24<14:34, 292.02it/s]


  3%|█▉                                                                         | 6970/262326 [00:24<14:13, 299.27it/s]


  3%|██                                                                         | 7001/262326 [00:24<15:00, 283.60it/s]


  3%|██                                                                         | 7032/262326 [00:24<14:40, 290.03it/s]


  3%|██                                                                         | 7064/262326 [00:24<14:17, 297.81it/s]


  3%|██                                                                         | 7096/262326 [00:24<14:03, 302.64it/s]


  3%|██                                                                         | 7127/262326 [00:24<14:53, 285.47it/s]


  3%|██                                                                         | 7158/262326 [00:25<14:34, 291.81it/s]


  3%|██                                                                         | 7190/262326 [00:25<14:12, 299.11it/s]


  3%|██                                                                         | 7221/262326 [00:25<14:05, 301.72it/s]


  3%|██                                                                         | 7252/262326 [00:25<14:32, 292.37it/s]


  3%|██                                                                         | 7284/262326 [00:25<14:16, 297.86it/s]


  3%|██                                                                         | 7314/262326 [00:25<15:40, 271.11it/s]


  3%|██                                                                         | 7345/262326 [00:25<15:09, 280.41it/s]


  3%|██                                                                         | 7376/262326 [00:25<14:44, 288.09it/s]


  3%|██                                                                         | 7406/262326 [00:25<14:42, 288.77it/s]


  3%|██▏                                                                        | 7436/262326 [00:26<14:37, 290.57it/s]


  3%|██▏                                                                        | 7466/262326 [00:26<14:56, 284.41it/s]


  3%|██▏                                                                        | 7497/262326 [00:26<14:35, 291.03it/s]


  3%|██▏                                                                        | 7527/262326 [00:26<14:49, 286.34it/s]


  3%|██▏                                                                        | 7558/262326 [00:26<14:31, 292.45it/s]


  3%|██▏                                                                        | 7590/262326 [00:26<14:15, 297.91it/s]


  3%|██▏                                                                        | 7622/262326 [00:26<14:03, 301.89it/s]


  3%|██▏                                                                        | 7653/262326 [00:26<14:00, 303.17it/s]


  3%|██▏                                                                        | 7684/262326 [00:26<14:15, 297.54it/s]


  3%|██▏                                                                        | 7714/262326 [00:26<14:43, 288.20it/s]


  3%|██▏                                                                        | 7745/262326 [00:27<14:31, 292.12it/s]


  3%|██▏                                                                        | 7777/262326 [00:27<14:10, 299.36it/s]


  3%|██▏                                                                        | 7808/262326 [00:27<16:52, 251.40it/s]


  3%|██▏                                                                        | 7837/262326 [00:27<16:13, 261.34it/s]


  3%|██▏                                                                        | 7869/262326 [00:27<15:24, 275.32it/s]


  3%|██▎                                                                        | 7900/262326 [00:27<15:07, 280.46it/s]


  3%|██▎                                                                        | 7932/262326 [00:27<14:37, 289.89it/s]


  3%|██▎                                                                        | 7962/262326 [00:27<14:30, 292.22it/s]


  3%|██▎                                                                        | 7992/262326 [00:27<14:24, 294.10it/s]


  3%|██▎                                                                        | 8022/262326 [00:28<14:36, 290.09it/s]


  3%|██▎                                                                        | 8054/262326 [00:28<14:13, 297.85it/s]


  3%|██▎                                                                        | 8085/262326 [00:28<14:05, 300.75it/s]


  3%|██▎                                                                        | 8116/262326 [00:28<14:14, 297.60it/s]


  3%|██▎                                                                        | 8147/262326 [00:28<14:08, 299.71it/s]


  3%|██▎                                                                        | 8178/262326 [00:28<14:28, 292.69it/s]


  3%|██▎                                                                        | 8210/262326 [00:28<14:12, 298.09it/s]


  3%|██▎                                                                        | 8242/262326 [00:28<13:58, 303.17it/s]


  3%|██▎                                                                        | 8273/262326 [00:28<14:33, 290.86it/s]


  3%|██▎                                                                        | 8305/262326 [00:29<14:13, 297.60it/s]


  3%|██▍                                                                        | 8337/262326 [00:29<13:57, 303.32it/s]


  3%|██▍                                                                        | 8368/262326 [00:29<14:13, 297.65it/s]


  3%|██▍                                                                        | 8398/262326 [00:29<15:01, 281.55it/s]


  3%|██▍                                                                        | 8428/262326 [00:29<14:52, 284.62it/s]


  3%|██▍                                                                        | 8459/262326 [00:29<14:34, 290.27it/s]


  3%|██▍                                                                        | 8489/262326 [00:29<14:41, 288.07it/s]


  3%|██▍                                                                        | 8518/262326 [00:29<14:41, 288.02it/s]


  3%|██▍                                                                        | 8548/262326 [00:29<14:34, 290.05it/s]


  3%|██▍                                                                        | 8578/262326 [00:29<14:55, 283.25it/s]


  3%|██▍                                                                        | 8607/262326 [00:30<18:59, 222.75it/s]


  3%|██▍                                                                        | 8637/262326 [00:30<17:35, 240.40it/s]


  3%|██▍                                                                        | 8664/262326 [00:30<17:03, 247.95it/s]


  3%|██▍                                                                        | 8694/262326 [00:30<16:28, 256.63it/s]


  3%|██▍                                                                        | 8725/262326 [00:30<15:40, 269.59it/s]


  3%|██▌                                                                        | 8753/262326 [00:30<15:37, 270.50it/s]


  3%|██▌                                                                        | 8781/262326 [00:30<19:59, 211.34it/s]


  3%|██▌                                                                        | 8810/262326 [00:30<18:28, 228.73it/s]


  3%|██▌                                                                        | 8841/262326 [00:31<17:02, 247.85it/s]


  3%|██▌                                                                        | 8872/262326 [00:31<16:02, 263.20it/s]


  3%|██▌                                                                        | 8901/262326 [00:31<15:40, 269.42it/s]


  3%|██▌                                                                        | 8930/262326 [00:31<15:30, 272.38it/s]


  3%|██▌                                                                        | 8962/262326 [00:31<14:52, 283.82it/s]


  3%|██▌                                                                        | 8992/262326 [00:31<14:47, 285.39it/s]


  3%|██▌                                                                        | 9022/262326 [00:31<15:06, 279.36it/s]


  3%|██▌                                                                        | 9052/262326 [00:31<14:54, 283.04it/s]


  3%|██▌                                                                        | 9084/262326 [00:31<14:30, 291.02it/s]


  3%|██▌                                                                        | 9114/262326 [00:32<14:33, 289.72it/s]


  3%|██▌                                                                        | 9144/262326 [00:32<15:14, 276.89it/s]


  3%|██▌                                                                        | 9174/262326 [00:32<14:55, 282.84it/s]


  4%|██▋                                                                        | 9203/262326 [00:32<14:55, 282.68it/s]


  4%|██▋                                                                        | 9234/262326 [00:32<14:33, 289.76it/s]


  4%|██▋                                                                        | 9265/262326 [00:32<14:22, 293.26it/s]


  4%|██▋                                                                        | 9295/262326 [00:32<14:23, 292.89it/s]


  4%|██▋                                                                        | 9325/262326 [00:32<14:37, 288.43it/s]


  4%|██▋                                                                        | 9357/262326 [00:32<14:12, 296.62it/s]


  4%|██▋                                                                        | 9389/262326 [00:32<14:00, 300.94it/s]


  4%|██▋                                                                        | 9421/262326 [00:33<13:49, 304.90it/s]


  4%|██▋                                                                        | 9453/262326 [00:33<13:39, 308.62it/s]


  4%|██▋                                                                        | 9484/262326 [00:33<13:42, 307.40it/s]


  4%|██▋                                                                        | 9515/262326 [00:33<14:38, 287.86it/s]


  4%|██▋                                                                        | 9545/262326 [00:33<14:41, 286.62it/s]


  4%|██▋                                                                        | 9577/262326 [00:33<14:20, 293.66it/s]


  4%|██▋                                                                        | 9608/262326 [00:33<14:08, 297.75it/s]


  4%|██▊                                                                        | 9638/262326 [00:33<14:23, 292.56it/s]


  4%|██▊                                                                        | 9670/262326 [00:33<14:03, 299.54it/s]


  4%|██▊                                                                        | 9702/262326 [00:34<13:51, 303.72it/s]


  4%|██▊                                                                        | 9733/262326 [00:34<13:53, 303.13it/s]


  4%|██▊                                                                        | 9764/262326 [00:34<16:25, 256.17it/s]


  4%|██▊                                                                        | 9791/262326 [00:34<16:43, 251.65it/s]


  4%|██▊                                                                        | 9818/262326 [00:34<16:41, 252.06it/s]


  4%|██▊                                                                        | 9848/262326 [00:34<15:55, 264.24it/s]


  4%|██▊                                                                        | 9878/262326 [00:34<15:25, 272.75it/s]


  4%|██▊                                                                        | 9910/262326 [00:34<14:48, 284.08it/s]


  4%|██▊                                                                        | 9939/262326 [00:34<14:47, 284.38it/s]


  4%|██▊                                                                        | 9968/262326 [00:35<14:44, 285.45it/s]


  4%|██▊                                                                        | 9998/262326 [00:35<14:38, 287.37it/s]


  4%|██▊                                                                       | 10027/262326 [00:35<14:37, 287.53it/s]


  4%|██▊                                                                       | 10056/262326 [00:35<15:00, 280.16it/s]


  4%|██▊                                                                       | 10085/262326 [00:35<15:08, 277.58it/s]


  4%|██▊                                                                       | 10113/262326 [00:35<15:16, 275.25it/s]


  4%|██▊                                                                       | 10141/262326 [00:35<15:48, 265.86it/s]


  4%|██▊                                                                       | 10168/262326 [00:35<16:11, 259.57it/s]


  4%|██▉                                                                       | 10195/262326 [00:35<16:26, 255.47it/s]


  4%|██▉                                                                       | 10226/262326 [00:35<15:38, 268.49it/s]


  4%|██▉                                                                       | 10257/262326 [00:36<15:07, 277.68it/s]


  4%|██▉                                                                       | 10288/262326 [00:36<14:45, 284.49it/s]


  4%|██▉                                                                       | 10318/262326 [00:36<14:32, 288.69it/s]


  4%|██▉                                                                       | 10348/262326 [00:36<17:16, 243.08it/s]


  4%|██▉                                                                       | 10378/262326 [00:36<16:19, 257.26it/s]


  4%|██▉                                                                       | 10410/262326 [00:36<15:27, 271.68it/s]


  4%|██▉                                                                       | 10441/262326 [00:36<14:54, 281.61it/s]


  4%|██▉                                                                       | 10473/262326 [00:36<14:26, 290.72it/s]


  4%|██▉                                                                       | 10505/262326 [00:36<14:04, 298.32it/s]


  4%|██▉                                                                       | 10536/262326 [00:37<13:56, 301.09it/s]


  4%|██▉                                                                       | 10569/262326 [00:37<13:36, 308.34it/s]


  4%|██▉                                                                       | 10601/262326 [00:37<13:36, 308.40it/s]


  4%|██▉                                                                       | 10633/262326 [00:37<14:39, 286.34it/s]


  4%|███                                                                       | 10663/262326 [00:37<14:56, 280.81it/s]


  4%|███                                                                       | 10695/262326 [00:37<14:27, 290.15it/s]


  4%|███                                                                       | 10728/262326 [00:37<14:02, 298.70it/s]


  4%|███                                                                       | 10759/262326 [00:37<14:04, 297.89it/s]


  4%|███                                                                       | 10792/262326 [00:37<13:41, 306.22it/s]


  4%|███                                                                       | 10823/262326 [00:38<16:46, 249.95it/s]


  4%|███                                                                       | 10853/262326 [00:38<16:01, 261.44it/s]


  4%|███                                                                       | 10884/262326 [00:38<15:30, 270.25it/s]


  4%|███                                                                       | 10913/262326 [00:38<15:15, 274.51it/s]


  4%|███                                                                       | 10944/262326 [00:38<14:48, 282.93it/s]


  4%|███                                                                       | 10973/262326 [00:38<14:56, 280.29it/s]


  4%|███                                                                       | 11002/262326 [00:38<15:41, 266.99it/s]


  4%|███                                                                       | 11030/262326 [00:38<15:40, 267.09it/s]


  4%|███                                                                       | 11061/262326 [00:38<15:05, 277.37it/s]


  4%|███▏                                                                      | 11094/262326 [00:39<14:28, 289.27it/s]


  4%|███▏                                                                      | 11126/262326 [00:39<14:07, 296.40it/s]


  4%|███▏                                                                      | 11156/262326 [00:39<14:26, 289.96it/s]


  4%|███▏                                                                      | 11186/262326 [00:39<14:51, 281.60it/s]


  4%|███▏                                                                      | 11215/262326 [00:39<15:03, 277.78it/s]


  4%|███▏                                                                      | 11244/262326 [00:39<14:54, 280.66it/s]


  4%|███▏                                                                      | 11274/262326 [00:39<14:39, 285.36it/s]


  4%|███▏                                                                      | 11303/262326 [00:39<14:47, 282.78it/s]


  4%|███▏                                                                      | 11335/262326 [00:39<14:20, 291.62it/s]


  4%|███▏                                                                      | 11368/262326 [00:39<13:54, 300.73it/s]


  4%|███▏                                                                      | 11400/262326 [00:40<13:43, 304.75it/s]


  4%|███▏                                                                      | 11431/262326 [00:40<13:48, 302.97it/s]


  4%|███▏                                                                      | 11462/262326 [00:40<13:51, 301.86it/s]


  4%|███▏                                                                      | 11493/262326 [00:40<14:32, 287.60it/s]


  4%|███▎                                                                      | 11524/262326 [00:40<14:14, 293.36it/s]


  4%|███▎                                                                      | 11555/262326 [00:40<14:05, 296.69it/s]


  4%|███▎                                                                      | 11586/262326 [00:40<13:56, 299.92it/s]


  4%|███▎                                                                      | 11617/262326 [00:40<13:51, 301.35it/s]


  4%|███▎                                                                      | 11648/262326 [00:40<13:51, 301.30it/s]


  4%|███▎                                                                      | 11680/262326 [00:41<13:43, 304.30it/s]


  4%|███▎                                                                      | 11711/262326 [00:41<13:40, 305.33it/s]


  4%|███▎                                                                      | 11743/262326 [00:41<13:35, 307.15it/s]


  4%|███▎                                                                      | 11774/262326 [00:41<14:21, 290.93it/s]


  4%|███▎                                                                      | 11804/262326 [00:41<14:15, 292.97it/s]


  5%|███▎                                                                      | 11834/262326 [00:41<14:35, 286.01it/s]


  5%|███▎                                                                      | 11865/262326 [00:41<14:19, 291.38it/s]


  5%|███▎                                                                      | 11895/262326 [00:41<14:13, 293.29it/s]


  5%|███▎                                                                      | 11925/262326 [00:41<14:14, 292.91it/s]


  5%|███▎                                                                      | 11956/262326 [00:41<14:07, 295.51it/s]


  5%|███▍                                                                      | 11988/262326 [00:42<13:49, 301.80it/s]


  5%|███▍                                                                      | 12019/262326 [00:42<15:09, 275.15it/s]


  5%|███▍                                                                      | 12049/262326 [00:42<14:51, 280.80it/s]


  5%|███▍                                                                      | 12078/262326 [00:42<14:49, 281.24it/s]


  5%|███▍                                                                      | 12107/262326 [00:42<15:09, 275.16it/s]


  5%|███▍                                                                      | 12140/262326 [00:42<14:30, 287.52it/s]


  5%|███▍                                                                      | 12172/262326 [00:42<14:05, 295.94it/s]


  5%|███▍                                                                      | 12204/262326 [00:42<13:50, 301.29it/s]


  5%|███▍                                                                      | 12236/262326 [00:42<13:41, 304.28it/s]


  5%|███▍                                                                      | 12268/262326 [00:43<13:33, 307.33it/s]


  5%|███▍                                                                      | 12299/262326 [00:43<13:45, 302.94it/s]


  5%|███▍                                                                      | 12330/262326 [00:43<13:42, 304.01it/s]


  5%|███▍                                                                      | 12361/262326 [00:43<14:08, 294.71it/s]


  5%|███▍                                                                      | 12392/262326 [00:43<13:57, 298.50it/s]


  5%|███▌                                                                      | 12423/262326 [00:43<13:54, 299.48it/s]


  5%|███▌                                                                      | 12454/262326 [00:43<14:37, 284.81it/s]


  5%|███▌                                                                      | 12485/262326 [00:43<14:23, 289.48it/s]


  5%|███▌                                                                      | 12516/262326 [00:43<14:07, 294.71it/s]


  5%|███▌                                                                      | 12549/262326 [00:43<13:46, 302.20it/s]


  5%|███▌                                                                      | 12581/262326 [00:44<13:34, 306.68it/s]


  5%|███▌                                                                      | 12613/262326 [00:44<13:28, 309.01it/s]


  5%|███▌                                                                      | 12645/262326 [00:44<13:25, 309.78it/s]


  5%|███▌                                                                      | 12677/262326 [00:44<13:42, 303.50it/s]


  5%|███▌                                                                      | 12709/262326 [00:44<13:36, 305.86it/s]


  5%|███▌                                                                      | 12740/262326 [00:44<13:34, 306.42it/s]


  5%|███▌                                                                      | 12771/262326 [00:44<14:36, 284.58it/s]


  5%|███▌                                                                      | 12800/262326 [00:44<16:14, 255.96it/s]


  5%|███▌                                                                      | 12832/262326 [00:44<15:17, 271.98it/s]


  5%|███▋                                                                      | 12865/262326 [00:45<14:32, 285.83it/s]


  5%|███▋                                                                      | 12897/262326 [00:45<14:06, 294.70it/s]


  5%|███▋                                                                      | 12928/262326 [00:45<17:03, 243.56it/s]


  5%|███▋                                                                      | 12960/262326 [00:45<15:52, 261.89it/s]


  5%|███▋                                                                      | 12991/262326 [00:45<15:14, 272.70it/s]


  5%|███▋                                                                      | 13023/262326 [00:45<14:37, 284.04it/s]


  5%|███▋                                                                      | 13054/262326 [00:45<14:19, 289.94it/s]


  5%|███▋                                                                      | 13085/262326 [00:45<14:05, 294.82it/s]


  5%|███▋                                                                      | 13117/262326 [00:45<13:47, 301.32it/s]


  5%|███▋                                                                      | 13148/262326 [00:46<13:53, 298.85it/s]


  5%|███▋                                                                      | 13180/262326 [00:46<13:40, 303.64it/s]


  5%|███▋                                                                      | 13211/262326 [00:46<13:37, 304.86it/s]


  5%|███▋                                                                      | 13242/262326 [00:46<14:01, 296.11it/s]


  5%|███▋                                                                      | 13272/262326 [00:46<14:13, 291.96it/s]


  5%|███▊                                                                      | 13304/262326 [00:46<13:56, 297.58it/s]


  5%|███▊                                                                      | 13337/262326 [00:46<13:38, 304.18it/s]


  5%|███▊                                                                      | 13369/262326 [00:46<13:26, 308.64it/s]


  5%|███▊                                                                      | 13401/262326 [00:46<13:22, 310.34it/s]


  5%|███▊                                                                      | 13433/262326 [00:46<13:28, 308.00it/s]


  5%|███▊                                                                      | 13465/262326 [00:47<13:20, 310.85it/s]


  5%|███▊                                                                      | 13497/262326 [00:47<13:17, 311.95it/s]


  5%|███▊                                                                      | 13529/262326 [00:47<13:20, 310.91it/s]


  5%|███▊                                                                      | 13561/262326 [00:47<13:33, 305.64it/s]


  5%|███▊                                                                      | 13592/262326 [00:47<13:51, 299.19it/s]


  5%|███▊                                                                      | 13624/262326 [00:47<13:41, 302.79it/s]


  5%|███▊                                                                      | 13655/262326 [00:47<14:05, 294.11it/s]


  5%|███▊                                                                      | 13685/262326 [00:47<14:34, 284.35it/s]


  5%|███▊                                                                      | 13714/262326 [00:47<16:46, 246.90it/s]


  5%|███▉                                                                      | 13748/262326 [00:48<15:25, 268.54it/s]


  5%|███▉                                                                      | 13778/262326 [00:48<15:03, 275.18it/s]


  5%|███▉                                                                      | 13807/262326 [00:48<15:29, 267.36it/s]


  5%|███▉                                                                      | 13837/262326 [00:48<15:03, 275.05it/s]


  5%|███▉                                                                      | 13866/262326 [00:48<15:24, 268.73it/s]


  5%|███▉                                                                      | 13898/262326 [00:48<14:41, 281.75it/s]


  5%|███▉                                                                      | 13930/262326 [00:48<14:16, 290.06it/s]


  5%|███▉                                                                      | 13962/262326 [00:48<13:56, 297.01it/s]


  5%|███▉                                                                      | 13994/262326 [00:48<13:39, 302.92it/s]


  5%|███▉                                                                      | 14025/262326 [00:49<13:52, 298.22it/s]


  5%|███▉                                                                      | 14056/262326 [00:49<13:56, 296.71it/s]


  5%|███▉                                                                      | 14086/262326 [00:49<13:55, 297.12it/s]


  5%|███▉                                                                      | 14116/262326 [00:49<14:19, 288.94it/s]


  5%|███▉                                                                      | 14149/262326 [00:49<13:55, 297.10it/s]


  5%|████                                                                      | 14181/262326 [00:49<13:41, 302.14it/s]


  5%|████                                                                      | 14213/262326 [00:49<13:30, 306.17it/s]


  5%|████                                                                      | 14245/262326 [00:49<13:26, 307.75it/s]


  5%|████                                                                      | 14276/262326 [00:49<13:32, 305.11it/s]


  5%|████                                                                      | 14308/262326 [00:49<13:22, 309.23it/s]


  5%|████                                                                      | 14339/262326 [00:50<13:42, 301.59it/s]


  5%|████                                                                      | 14370/262326 [00:50<13:46, 299.90it/s]


  5%|████                                                                      | 14401/262326 [00:50<14:11, 291.17it/s]


  6%|████                                                                      | 14431/262326 [00:50<14:35, 283.20it/s]


  6%|████                                                                      | 14463/262326 [00:50<14:06, 292.75it/s]


  6%|████                                                                      | 14496/262326 [00:50<13:44, 300.73it/s]


  6%|████                                                                      | 14528/262326 [00:50<13:30, 305.63it/s]


  6%|████                                                                      | 14560/262326 [00:50<13:26, 307.37it/s]


  6%|████                                                                      | 14591/262326 [00:50<13:25, 307.48it/s]


  6%|████                                                                      | 14622/262326 [00:51<13:27, 306.66it/s]


  6%|████▏                                                                     | 14653/262326 [00:51<13:33, 304.28it/s]


  6%|████▏                                                                     | 14684/262326 [00:51<13:31, 305.31it/s]


  6%|████▏                                                                     | 14715/262326 [00:51<14:24, 286.57it/s]


  6%|████▏                                                                     | 14748/262326 [00:51<13:55, 296.16it/s]


  6%|████▏                                                                     | 14781/262326 [00:51<13:36, 303.07it/s]


  6%|████▏                                                                     | 14812/262326 [00:51<13:47, 299.16it/s]


  6%|████▏                                                                     | 14844/262326 [00:51<13:35, 303.62it/s]


  6%|████▏                                                                     | 14876/262326 [00:51<13:26, 306.83it/s]


  6%|████▏                                                                     | 14908/262326 [00:51<13:45, 299.58it/s]


  6%|████▏                                                                     | 14939/262326 [00:52<13:55, 295.95it/s]


  6%|████▏                                                                     | 14970/262326 [00:52<13:46, 299.38it/s]


  6%|████▏                                                                     | 15003/262326 [00:52<13:24, 307.37it/s]


  6%|████▏                                                                     | 15034/262326 [00:52<14:11, 290.26it/s]


  6%|████▏                                                                     | 15066/262326 [00:52<13:49, 297.94it/s]


  6%|████▎                                                                     | 15098/262326 [00:52<13:34, 303.60it/s]


  6%|████▎                                                                     | 15130/262326 [00:52<13:23, 307.68it/s]


  6%|████▎                                                                     | 15162/262326 [00:52<13:18, 309.73it/s]


  6%|████▎                                                                     | 15194/262326 [00:52<13:16, 310.26it/s]


  6%|████▎                                                                     | 15226/262326 [00:53<13:38, 301.87it/s]


  6%|████▎                                                                     | 15259/262326 [00:53<13:23, 307.43it/s]


  6%|████▎                                                                     | 15290/262326 [00:53<13:25, 306.62it/s]


  6%|████▎                                                                     | 15321/262326 [00:53<13:53, 296.42it/s]


  6%|████▎                                                                     | 15351/262326 [00:53<13:56, 295.09it/s]


  6%|████▎                                                                     | 15381/262326 [00:53<18:34, 221.57it/s]


  6%|████▎                                                                     | 15413/262326 [00:53<16:57, 242.58it/s]


  6%|████▎                                                                     | 15445/262326 [00:53<15:48, 260.34it/s]


  6%|████▎                                                                     | 15477/262326 [00:53<14:59, 274.54it/s]


  6%|████▎                                                                     | 15507/262326 [00:54<14:42, 279.65it/s]


  6%|████▍                                                                     | 15539/262326 [00:54<14:13, 289.28it/s]


  6%|████▍                                                                     | 15571/262326 [00:54<13:54, 295.62it/s]


  6%|████▍                                                                     | 15602/262326 [00:54<13:58, 294.29it/s]


  6%|████▍                                                                     | 15632/262326 [00:54<14:10, 290.22it/s]


  6%|████▍                                                                     | 15662/262326 [00:54<15:56, 257.80it/s]


  6%|████▍                                                                     | 15694/262326 [00:54<15:07, 271.86it/s]


  6%|████▍                                                                     | 15726/262326 [00:54<14:30, 283.37it/s]


  6%|████▍                                                                     | 15758/262326 [00:54<14:06, 291.27it/s]


  6%|████▍                                                                     | 15789/262326 [00:55<13:55, 295.18it/s]


  6%|████▍                                                                     | 15821/262326 [00:55<13:37, 301.59it/s]


  6%|████▍                                                                     | 15852/262326 [00:55<13:32, 303.44it/s]


  6%|████▍                                                                     | 15883/262326 [00:55<13:50, 296.86it/s]


  6%|████▍                                                                     | 15915/262326 [00:55<13:36, 301.96it/s]


  6%|████▍                                                                     | 15947/262326 [00:55<13:26, 305.63it/s]


  6%|████▌                                                                     | 15979/262326 [00:55<13:21, 307.18it/s]


  6%|████▌                                                                     | 16011/262326 [00:55<13:15, 309.45it/s]


  6%|████▌                                                                     | 16043/262326 [00:55<13:21, 307.39it/s]


  6%|████▌                                                                     | 16075/262326 [00:55<13:15, 309.51it/s]


  6%|████▌                                                                     | 16106/262326 [00:56<13:31, 303.55it/s]


  6%|████▌                                                                     | 16139/262326 [00:56<13:17, 308.65it/s]


  6%|████▌                                                                     | 16170/262326 [00:56<13:18, 308.38it/s]


  6%|████▌                                                                     | 16201/262326 [00:56<13:49, 296.72it/s]


  6%|████▌                                                                     | 16233/262326 [00:56<13:35, 301.81it/s]


  6%|████▌                                                                     | 16265/262326 [00:56<13:24, 305.91it/s]


  6%|████▌                                                                     | 16297/262326 [00:56<13:17, 308.37it/s]


  6%|████▌                                                                     | 16328/262326 [00:56<13:18, 308.18it/s]


  6%|████▌                                                                     | 16359/262326 [00:56<13:27, 304.43it/s]


  6%|████▌                                                                     | 16390/262326 [00:56<13:27, 304.55it/s]


  6%|████▋                                                                     | 16422/262326 [00:57<13:17, 308.35it/s]


  6%|████▋                                                                     | 16454/262326 [00:57<13:12, 310.23it/s]


  6%|████▋                                                                     | 16486/262326 [00:57<13:41, 299.34it/s]


  6%|████▋                                                                     | 16517/262326 [00:57<13:43, 298.32it/s]


  6%|████▋                                                                     | 16548/262326 [00:57<13:36, 301.08it/s]


  6%|████▋                                                                     | 16581/262326 [00:57<13:20, 306.86it/s]


  6%|████▋                                                                     | 16612/262326 [00:57<13:46, 297.43it/s]


  6%|████▋                                                                     | 16642/262326 [00:57<14:22, 284.89it/s]


  6%|████▋                                                                     | 16672/262326 [00:57<14:09, 289.25it/s]


  6%|████▋                                                                     | 16704/262326 [00:58<13:46, 297.08it/s]


  6%|████▋                                                                     | 16735/262326 [00:58<13:37, 300.59it/s]


  6%|████▋                                                                     | 16768/262326 [00:58<13:21, 306.48it/s]


  6%|████▋                                                                     | 16799/262326 [00:58<13:50, 295.48it/s]


  6%|████▋                                                                     | 16831/262326 [00:58<13:35, 300.96it/s]


  6%|████▊                                                                     | 16863/262326 [00:58<13:24, 304.94it/s]


  6%|████▊                                                                     | 16894/262326 [00:58<14:26, 283.36it/s]


  6%|████▊                                                                     | 16923/262326 [00:58<14:20, 285.15it/s]


  6%|████▊                                                                     | 16954/262326 [00:58<14:05, 290.22it/s]


  6%|████▊                                                                     | 16986/262326 [00:58<13:45, 297.12it/s]


  6%|████▊                                                                     | 17018/262326 [00:59<13:33, 301.45it/s]


  6%|████▊                                                                     | 17049/262326 [00:59<13:57, 292.86it/s]


  7%|████▊                                                                     | 17079/262326 [00:59<14:07, 289.38it/s]


  7%|████▊                                                                     | 17111/262326 [00:59<13:47, 296.41it/s]


  7%|████▊                                                                     | 17142/262326 [00:59<13:47, 296.17it/s]


  7%|████▊                                                                     | 17172/262326 [00:59<13:53, 294.06it/s]


  7%|████▊                                                                     | 17202/262326 [00:59<13:50, 295.18it/s]


  7%|████▊                                                                     | 17234/262326 [00:59<13:32, 301.59it/s]


  7%|████▊                                                                     | 17266/262326 [00:59<13:56, 292.82it/s]


  7%|████▉                                                                     | 17297/262326 [01:00<13:44, 297.15it/s]


  7%|████▉                                                                     | 17329/262326 [01:00<13:30, 302.17it/s]


  7%|████▉                                                                     | 17360/262326 [01:00<13:33, 301.15it/s]


  7%|████▉                                                                     | 17391/262326 [01:00<14:20, 284.57it/s]


  7%|████▉                                                                     | 17423/262326 [01:00<13:56, 292.94it/s]


  7%|████▉                                                                     | 17455/262326 [01:00<13:37, 299.68it/s]


  7%|████▉                                                                     | 17487/262326 [01:00<13:25, 304.00it/s]


  7%|████▉                                                                     | 17518/262326 [01:00<13:24, 304.21it/s]


  7%|████▉                                                                     | 17549/262326 [01:00<13:29, 302.39it/s]


  7%|████▉                                                                     | 17580/262326 [01:01<13:47, 295.91it/s]


  7%|████▉                                                                     | 17611/262326 [01:01<13:38, 298.87it/s]


  7%|████▉                                                                     | 17641/262326 [01:01<14:24, 283.12it/s]


  7%|████▉                                                                     | 17670/262326 [01:01<14:44, 276.46it/s]


  7%|████▉                                                                     | 17701/262326 [01:01<14:20, 284.38it/s]


  7%|█████                                                                     | 17731/262326 [01:01<14:10, 287.73it/s]


  7%|█████                                                                     | 17763/262326 [01:01<13:50, 294.47it/s]


  7%|█████                                                                     | 17793/262326 [01:01<13:50, 294.60it/s]


  7%|█████                                                                     | 17825/262326 [01:01<13:31, 301.19it/s]


  7%|█████                                                                     | 17856/262326 [01:01<13:30, 301.67it/s]


  7%|█████                                                                     | 17887/262326 [01:02<13:26, 303.21it/s]


  7%|█████                                                                     | 17918/262326 [01:02<13:28, 302.47it/s]


  7%|█████                                                                     | 17949/262326 [01:02<13:30, 301.38it/s]


  7%|█████                                                                     | 17980/262326 [01:02<14:05, 288.89it/s]


  7%|█████                                                                     | 18011/262326 [01:02<13:54, 292.64it/s]


  7%|█████                                                                     | 18042/262326 [01:02<13:43, 296.50it/s]


  7%|█████                                                                     | 18074/262326 [01:02<13:25, 303.09it/s]


  7%|█████                                                                     | 18105/262326 [01:02<13:27, 302.34it/s]


  7%|█████                                                                     | 18137/262326 [01:02<13:17, 306.24it/s]


  7%|█████▏                                                                    | 18169/262326 [01:02<13:10, 308.67it/s]


  7%|█████▏                                                                    | 18200/262326 [01:03<13:10, 308.63it/s]


  7%|█████▏                                                                    | 18231/262326 [01:03<13:14, 307.19it/s]


  7%|█████▏                                                                    | 18262/262326 [01:03<13:13, 307.55it/s]


  7%|█████▏                                                                    | 18293/262326 [01:03<13:36, 298.74it/s]


  7%|█████▏                                                                    | 18324/262326 [01:03<13:34, 299.70it/s]


  7%|█████▏                                                                    | 18355/262326 [01:03<13:27, 302.06it/s]


  7%|█████▏                                                                    | 18386/262326 [01:03<13:42, 296.76it/s]


  7%|█████▏                                                                    | 18418/262326 [01:03<13:30, 301.04it/s]


  7%|█████▏                                                                    | 18449/262326 [01:03<13:34, 299.41it/s]


  7%|█████▏                                                                    | 18480/262326 [01:04<13:30, 300.99it/s]


  7%|█████▏                                                                    | 18511/262326 [01:04<15:38, 259.73it/s]


  7%|█████▏                                                                    | 18543/262326 [01:04<14:51, 273.34it/s]


  7%|█████▏                                                                    | 18572/262326 [01:04<14:46, 274.95it/s]


  7%|█████▏                                                                    | 18604/262326 [01:04<14:15, 284.96it/s]


  7%|█████▎                                                                    | 18635/262326 [01:04<13:56, 291.43it/s]


  7%|█████▎                                                                    | 18665/262326 [01:04<14:17, 284.01it/s]


  7%|█████▎                                                                    | 18694/262326 [01:04<15:55, 254.97it/s]


  7%|█████▎                                                                    | 18725/262326 [01:05<22:25, 180.99it/s]


  7%|█████▏                                                                   | 18747/262326 [01:08<3:10:56, 21.26it/s]


  7%|█████▏                                                                   | 18769/262326 [01:08<2:19:19, 29.13it/s]


  7%|█████▏                                                                   | 18800/262326 [01:08<1:41:30, 39.98it/s]


  7%|█████▏                                                                   | 18830/262326 [01:08<1:15:13, 53.95it/s]


  7%|█████▍                                                                     | 18861/262326 [01:08<56:43, 71.54it/s]


  7%|█████▍                                                                     | 18891/262326 [01:08<43:49, 92.57it/s]


  7%|█████▎                                                                    | 18922/262326 [01:08<34:37, 117.15it/s]


  7%|█████▎                                                                    | 18950/262326 [01:09<29:26, 137.78it/s]


  7%|█████▎                                                                    | 18977/262326 [01:09<25:08, 161.30it/s]


  7%|█████▎                                                                    | 19004/262326 [01:09<22:48, 177.86it/s]


  7%|█████▎                                                                    | 19033/262326 [01:09<20:13, 200.48it/s]


  7%|█████▍                                                                    | 19064/262326 [01:09<18:06, 223.89it/s]


  7%|█████▍                                                                    | 19092/262326 [01:09<19:34, 207.14it/s]


  7%|█████▍                                                                    | 19123/262326 [01:09<17:43, 228.76it/s]


  7%|█████▍                                                                    | 19152/262326 [01:09<16:42, 242.54it/s]


  7%|█████▍                                                                    | 19179/262326 [01:09<16:16, 249.00it/s]


  7%|█████▍                                                                    | 19206/262326 [01:10<16:27, 246.08it/s]


  7%|█████▍                                                                    | 19237/262326 [01:10<15:30, 261.16it/s]


  7%|█████▍                                                                    | 19269/262326 [01:10<14:45, 274.47it/s]


  7%|█████▍                                                                    | 19298/262326 [01:10<15:35, 259.72it/s]


  7%|█████▍                                                                    | 19325/262326 [01:10<15:59, 253.33it/s]


  7%|█████▍                                                                    | 19355/262326 [01:10<15:18, 264.51it/s]


  7%|█████▍                                                                    | 19387/262326 [01:10<14:32, 278.50it/s]


  7%|█████▍                                                                    | 19419/262326 [01:10<14:01, 288.59it/s]


  7%|█████▍                                                                    | 19449/262326 [01:10<15:08, 267.25it/s]


  7%|█████▍                                                                    | 19477/262326 [01:11<15:19, 264.25it/s]


  7%|█████▌                                                                    | 19510/262326 [01:11<14:27, 279.81it/s]


  7%|█████▌                                                                    | 19540/262326 [01:11<14:16, 283.40it/s]


  7%|█████▌                                                                    | 19569/262326 [01:11<15:35, 259.54it/s]


  7%|█████▌                                                                    | 19596/262326 [01:11<15:28, 261.28it/s]


  7%|█████▌                                                                    | 19629/262326 [01:11<14:34, 277.48it/s]


  7%|█████▌                                                                    | 19662/262326 [01:11<13:56, 290.06it/s]


  8%|█████▌                                                                    | 19695/262326 [01:11<13:27, 300.39it/s]


  8%|█████▌                                                                    | 19729/262326 [01:11<13:20, 303.19it/s]


  8%|█████▌                                                                    | 19760/262326 [01:11<13:18, 303.65it/s]


  8%|█████▌                                                                    | 19792/262326 [01:12<13:10, 306.84it/s]


  8%|█████▌                                                                    | 19825/262326 [01:12<12:57, 311.91it/s]


  8%|█████▌                                                                    | 19857/262326 [01:12<14:16, 283.06it/s]


  8%|█████▌                                                                    | 19886/262326 [01:12<15:37, 258.66it/s]


  8%|█████▌                                                                    | 19919/262326 [01:12<14:37, 276.09it/s]


  8%|█████▋                                                                    | 19948/262326 [01:12<14:57, 270.18it/s]


  8%|█████▋                                                                    | 19976/262326 [01:12<15:28, 261.09it/s]


  8%|█████▋                                                                    | 20006/262326 [01:12<14:58, 269.64it/s]


  8%|█████▋                                                                    | 20038/262326 [01:12<14:33, 277.33it/s]


  8%|█████▋                                                                    | 20067/262326 [01:13<15:03, 268.01it/s]


  8%|█████▋                                                                    | 20095/262326 [01:13<15:27, 261.10it/s]


  8%|█████▋                                                                    | 20125/262326 [01:13<14:58, 269.69it/s]


  8%|█████▋                                                                    | 20153/262326 [01:13<15:08, 266.67it/s]


  8%|█████▋                                                                    | 20180/262326 [01:13<15:38, 257.94it/s]


  8%|█████▋                                                                    | 20209/262326 [01:13<15:11, 265.50it/s]


  8%|█████▋                                                                    | 20241/262326 [01:13<14:33, 277.09it/s]


  8%|█████▋                                                                    | 20269/262326 [01:13<15:55, 253.33it/s]


  8%|█████▋                                                                    | 20298/262326 [01:13<15:25, 261.38it/s]


  8%|█████▋                                                                    | 20333/262326 [01:14<14:21, 281.01it/s]


  8%|█████▋                                                                    | 20364/262326 [01:14<13:58, 288.55it/s]


  8%|█████▊                                                                    | 20397/262326 [01:14<13:32, 297.61it/s]


  8%|█████▊                                                                    | 20428/262326 [01:14<13:52, 290.47it/s]


  8%|█████▊                                                                    | 20461/262326 [01:14<13:28, 299.07it/s]


  8%|█████▊                                                                    | 20493/262326 [01:14<13:16, 303.46it/s]


  8%|█████▊                                                                    | 20526/262326 [01:14<13:03, 308.59it/s]


  8%|█████▊                                                                    | 20558/262326 [01:14<12:58, 310.36it/s]


  8%|█████▊                                                                    | 20591/262326 [01:14<12:48, 314.44it/s]


  8%|█████▊                                                                    | 20623/262326 [01:15<12:55, 311.65it/s]


  8%|█████▊                                                                    | 20655/262326 [01:15<12:57, 310.99it/s]


  8%|█████▊                                                                    | 20687/262326 [01:15<12:52, 312.97it/s]


  8%|█████▊                                                                    | 20719/262326 [01:15<13:01, 309.04it/s]


  8%|█████▊                                                                    | 20752/262326 [01:15<12:52, 312.58it/s]


  8%|█████▊                                                                    | 20785/262326 [01:15<12:46, 315.26it/s]


  8%|█████▊                                                                    | 20817/262326 [01:15<12:51, 313.21it/s]


  8%|█████▉                                                                    | 20849/262326 [01:15<13:12, 304.70it/s]


  8%|█████▉                                                                    | 20884/262326 [01:15<12:47, 314.66it/s]


  8%|█████▉                                                                    | 20916/262326 [01:16<18:23, 218.78it/s]


  8%|█████▉                                                                    | 20949/262326 [01:16<16:36, 242.32it/s]


  8%|█████▉                                                                    | 20980/262326 [01:16<15:32, 258.85it/s]


  8%|█████▉                                                                    | 21009/262326 [01:16<15:09, 265.44it/s]


  8%|█████▉                                                                    | 21041/262326 [01:16<14:24, 279.22it/s]


  8%|█████▉                                                                    | 21073/262326 [01:16<13:52, 289.74it/s]


  8%|█████▉                                                                    | 21104/262326 [01:16<13:44, 292.41it/s]


  8%|█████▉                                                                    | 21137/262326 [01:16<13:21, 301.08it/s]


  8%|█████▉                                                                    | 21170/262326 [01:16<13:05, 306.86it/s]


  8%|█████▉                                                                    | 21202/262326 [01:17<13:33, 296.28it/s]


  8%|█████▉                                                                    | 21235/262326 [01:17<13:12, 304.19it/s]


  8%|█████▉                                                                    | 21266/262326 [01:17<13:16, 302.58it/s]


  8%|██████                                                                    | 21297/262326 [01:17<13:45, 292.11it/s]


  8%|██████                                                                    | 21329/262326 [01:17<13:29, 297.67it/s]


  8%|██████                                                                    | 21362/262326 [01:17<13:09, 305.21it/s]


  8%|██████                                                                    | 21395/262326 [01:17<12:55, 310.73it/s]


  8%|██████                                                                    | 21427/262326 [01:17<12:48, 313.28it/s]


  8%|██████                                                                    | 21459/262326 [01:17<12:45, 314.59it/s]


  8%|██████                                                                    | 21492/262326 [01:17<12:42, 315.65it/s]


  8%|██████                                                                    | 21524/262326 [01:18<12:43, 315.33it/s]


  8%|██████                                                                    | 21556/262326 [01:18<12:41, 316.03it/s]


  8%|██████                                                                    | 21588/262326 [01:18<12:47, 313.73it/s]


  8%|██████                                                                    | 21620/262326 [01:18<13:45, 291.72it/s]


  8%|██████                                                                    | 21652/262326 [01:18<13:27, 298.23it/s]


  8%|██████                                                                    | 21685/262326 [01:18<13:07, 305.61it/s]


  8%|██████▏                                                                   | 21717/262326 [01:18<12:58, 309.13it/s]


  8%|██████▏                                                                   | 21750/262326 [01:18<12:49, 312.67it/s]


  8%|██████▏                                                                   | 21782/262326 [01:18<13:19, 300.90it/s]


  8%|██████▏                                                                   | 21813/262326 [01:19<13:33, 295.77it/s]


  8%|██████▏                                                                   | 21844/262326 [01:19<13:28, 297.55it/s]


  8%|██████▏                                                                   | 21875/262326 [01:19<13:22, 299.66it/s]


  8%|██████▏                                                                   | 21906/262326 [01:19<14:39, 273.36it/s]


  8%|██████▏                                                                   | 21936/262326 [01:19<14:22, 278.68it/s]


  8%|██████▏                                                                   | 21965/262326 [01:19<14:16, 280.57it/s]


  8%|██████▏                                                                   | 21994/262326 [01:19<14:22, 278.66it/s]


  8%|██████▏                                                                   | 22023/262326 [01:19<14:26, 277.37it/s]


  8%|██████▏                                                                   | 22051/262326 [01:19<15:01, 266.47it/s]


  8%|██████▏                                                                   | 22078/262326 [01:19<15:13, 263.04it/s]


  8%|██████▏                                                                   | 22105/262326 [01:20<16:27, 243.17it/s]


  8%|██████▏                                                                   | 22130/262326 [01:20<17:37, 227.03it/s]


  8%|██████▏                                                                   | 22154/262326 [01:20<17:28, 228.98it/s]


  8%|██████▎                                                                   | 22181/262326 [01:20<16:48, 238.20it/s]


  8%|██████▎                                                                   | 22208/262326 [01:20<16:22, 244.41it/s]


  8%|██████▎                                                                   | 22236/262326 [01:20<15:51, 252.23it/s]


  8%|██████▎                                                                   | 22264/262326 [01:20<15:25, 259.43it/s]


  8%|██████▎                                                                   | 22292/262326 [01:20<15:06, 264.73it/s]


  9%|██████▎                                                                   | 22319/262326 [01:20<15:05, 264.93it/s]


  9%|██████▎                                                                   | 22349/262326 [01:21<14:38, 273.26it/s]


  9%|██████▎                                                                   | 22377/262326 [01:21<14:33, 274.66it/s]


  9%|██████▎                                                                   | 22408/262326 [01:21<14:05, 283.82it/s]


  9%|██████▎                                                                   | 22437/262326 [01:21<14:56, 267.71it/s]


  9%|██████▎                                                                   | 22469/262326 [01:21<14:15, 280.23it/s]


  9%|██████▎                                                                   | 22501/262326 [01:21<13:45, 290.51it/s]


  9%|██████▎                                                                   | 22532/262326 [01:21<13:31, 295.47it/s]


  9%|██████▎                                                                   | 22562/262326 [01:21<13:29, 296.26it/s]


  9%|██████▎                                                                   | 22593/262326 [01:21<13:19, 299.82it/s]


  9%|██████▍                                                                   | 22625/262326 [01:21<13:06, 304.96it/s]


  9%|██████▍                                                                   | 22656/262326 [01:22<13:24, 297.97it/s]


  9%|██████▍                                                                   | 22688/262326 [01:22<13:13, 301.91it/s]


  9%|██████▍                                                                   | 22719/262326 [01:22<13:59, 285.27it/s]


  9%|██████▍                                                                   | 22748/262326 [01:22<14:12, 281.05it/s]


  9%|██████▍                                                                   | 22779/262326 [01:22<13:52, 287.76it/s]


  9%|██████▍                                                                   | 22812/262326 [01:22<13:26, 297.07it/s]


  9%|██████▍                                                                   | 22843/262326 [01:22<13:27, 296.73it/s]


  9%|██████▍                                                                   | 22875/262326 [01:22<13:13, 301.87it/s]


  9%|██████▍                                                                   | 22907/262326 [01:22<13:05, 304.70it/s]


  9%|██████▍                                                                   | 22938/262326 [01:23<13:03, 305.67it/s]


  9%|██████▍                                                                   | 22969/262326 [01:23<16:49, 237.09it/s]


  9%|██████▍                                                                   | 22996/262326 [01:23<16:48, 237.22it/s]


  9%|██████▍                                                                   | 23026/262326 [01:23<15:49, 251.99it/s]


  9%|██████▌                                                                   | 23058/262326 [01:23<14:52, 267.96it/s]


  9%|██████▌                                                                   | 23089/262326 [01:23<14:20, 278.03it/s]


  9%|██████▌                                                                   | 23121/262326 [01:23<13:50, 288.06it/s]


  9%|██████▌                                                                   | 23151/262326 [01:23<13:56, 285.95it/s]


  9%|██████▌                                                                   | 23183/262326 [01:23<13:35, 293.19it/s]


  9%|██████▌                                                                   | 23215/262326 [01:24<13:21, 298.39it/s]


  9%|██████▌                                                                   | 23246/262326 [01:24<13:34, 293.46it/s]


  9%|██████▌                                                                   | 23277/262326 [01:24<13:41, 290.94it/s]


  9%|██████▌                                                                   | 23307/262326 [01:24<14:21, 277.54it/s]


  9%|██████▌                                                                   | 23336/262326 [01:24<16:53, 235.83it/s]


  9%|██████▌                                                                   | 23367/262326 [01:24<15:42, 253.64it/s]


  9%|██████▌                                                                   | 23398/262326 [01:24<14:52, 267.76it/s]


  9%|██████▌                                                                   | 23429/262326 [01:24<14:21, 277.15it/s]


  9%|██████▌                                                                   | 23460/262326 [01:24<14:00, 284.11it/s]


  9%|██████▋                                                                   | 23492/262326 [01:25<13:34, 293.21it/s]


  9%|██████▋                                                                   | 23525/262326 [01:25<13:13, 301.10it/s]


  9%|██████▋                                                                   | 23556/262326 [01:25<14:34, 273.11it/s]


  9%|██████▋                                                                   | 23587/262326 [01:25<14:07, 281.86it/s]


  9%|██████▋                                                                   | 23616/262326 [01:25<14:04, 282.82it/s]


  9%|██████▋                                                                   | 23648/262326 [01:25<13:38, 291.65it/s]


  9%|██████▋                                                                   | 23680/262326 [01:25<13:20, 298.16it/s]


  9%|██████▋                                                                   | 23711/262326 [01:25<18:55, 210.12it/s]


  9%|██████▋                                                                   | 23742/262326 [01:26<17:09, 231.70it/s]


  9%|██████▋                                                                   | 23773/262326 [01:26<15:53, 250.25it/s]


  9%|██████▋                                                                   | 23801/262326 [01:26<15:50, 251.07it/s]


  9%|██████▋                                                                   | 23829/262326 [01:26<15:57, 249.03it/s]


  9%|██████▋                                                                   | 23860/262326 [01:26<15:05, 263.46it/s]


  9%|██████▋                                                                   | 23888/262326 [01:26<15:16, 260.21it/s]


  9%|██████▋                                                                   | 23915/262326 [01:26<15:13, 260.99it/s]


  9%|██████▊                                                                   | 23947/262326 [01:26<14:28, 274.34it/s]


  9%|██████▊                                                                   | 23978/262326 [01:26<14:02, 282.82it/s]


  9%|██████▊                                                                   | 24009/262326 [01:27<13:46, 288.24it/s]


  9%|██████▊                                                                   | 24039/262326 [01:27<16:02, 247.69it/s]


  9%|██████▊                                                                   | 24067/262326 [01:27<15:32, 255.37it/s]


  9%|██████▊                                                                   | 24097/262326 [01:27<14:57, 265.35it/s]


  9%|██████▊                                                                   | 24127/262326 [01:27<14:32, 272.85it/s]


  9%|██████▊                                                                   | 24155/262326 [01:27<14:33, 272.75it/s]


  9%|██████▊                                                                   | 24183/262326 [01:27<15:01, 264.21it/s]


  9%|██████▊                                                                   | 24213/262326 [01:27<14:34, 272.44it/s]


  9%|██████▊                                                                   | 24245/262326 [01:27<14:01, 283.08it/s]


  9%|██████▊                                                                   | 24276/262326 [01:28<13:42, 289.31it/s]


  9%|██████▊                                                                   | 24307/262326 [01:28<13:35, 291.93it/s]


  9%|██████▊                                                                   | 24337/262326 [01:28<14:19, 276.76it/s]


  9%|██████▊                                                                   | 24365/262326 [01:28<15:01, 263.84it/s]


  9%|██████▉                                                                   | 24395/262326 [01:28<14:38, 270.96it/s]


  9%|██████▉                                                                   | 24423/262326 [01:28<16:43, 237.19it/s]


  9%|██████▉                                                                   | 24452/262326 [01:28<16:09, 245.28it/s]


  9%|██████▉                                                                   | 24481/262326 [01:28<15:29, 256.00it/s]


  9%|██████▉                                                                   | 24509/262326 [01:28<15:18, 258.81it/s]


  9%|██████▉                                                                   | 24539/262326 [01:29<14:47, 267.96it/s]


  9%|██████▉                                                                   | 24570/262326 [01:29<14:15, 278.03it/s]


  9%|██████▉                                                                   | 24599/262326 [01:29<14:51, 266.56it/s]


  9%|██████▉                                                                   | 24627/262326 [01:29<15:06, 262.23it/s]


  9%|██████▉                                                                   | 24658/262326 [01:29<14:30, 272.96it/s]


  9%|██████▉                                                                   | 24686/262326 [01:29<14:33, 272.05it/s]


  9%|██████▉                                                                   | 24717/262326 [01:29<14:05, 281.10it/s]


  9%|██████▉                                                                   | 24746/262326 [01:29<13:59, 283.10it/s]


  9%|██████▉                                                                   | 24778/262326 [01:29<13:33, 291.86it/s]


  9%|██████▉                                                                   | 24808/262326 [01:30<14:01, 282.35it/s]


  9%|███████                                                                   | 24837/262326 [01:30<14:08, 279.87it/s]


  9%|███████                                                                   | 24866/262326 [01:30<14:39, 270.00it/s]


  9%|███████                                                                   | 24894/262326 [01:30<14:41, 269.22it/s]


 10%|███████                                                                   | 24922/262326 [01:30<14:41, 269.42it/s]


 10%|███████                                                                   | 24950/262326 [01:30<19:18, 204.98it/s]


 10%|███████                                                                   | 24980/262326 [01:30<17:34, 225.12it/s]


 10%|███████                                                                   | 25008/262326 [01:30<16:39, 237.51it/s]


 10%|███████                                                                   | 25038/262326 [01:30<15:54, 248.48it/s]


 10%|███████                                                                   | 25070/262326 [01:31<14:54, 265.20it/s]


 10%|███████                                                                   | 25102/262326 [01:31<14:14, 277.60it/s]


 10%|███████                                                                   | 25131/262326 [01:31<14:22, 275.03it/s]


 10%|███████                                                                   | 25160/262326 [01:31<14:59, 263.61it/s]


 10%|███████                                                                   | 25190/262326 [01:31<14:28, 273.00it/s]


 10%|███████                                                                   | 25219/262326 [01:31<14:17, 276.51it/s]


 10%|███████                                                                   | 25251/262326 [01:31<13:44, 287.70it/s]


 10%|███████▏                                                                  | 25281/262326 [01:31<15:51, 249.17it/s]


 10%|███████▏                                                                  | 25310/262326 [01:31<15:15, 258.97it/s]


 10%|███████▏                                                                  | 25339/262326 [01:32<14:47, 267.02it/s]


 10%|███████▏                                                                  | 25367/262326 [01:32<14:36, 270.43it/s]


 10%|███████▏                                                                  | 25398/262326 [01:32<14:08, 279.13it/s]


 10%|███████▏                                                                  | 25427/262326 [01:32<14:52, 265.49it/s]


 10%|███████▏                                                                  | 25454/262326 [01:32<19:08, 206.23it/s]


 10%|███████▏                                                                  | 25485/262326 [01:32<17:14, 228.87it/s]


 10%|███████▏                                                                  | 25517/262326 [01:32<15:52, 248.68it/s]


 10%|███████▏                                                                  | 25549/262326 [01:32<14:52, 265.34it/s]


 10%|███████▏                                                                  | 25580/262326 [01:32<14:15, 276.78it/s]


 10%|███████▏                                                                  | 25611/262326 [01:33<13:51, 284.61it/s]


 10%|███████▏                                                                  | 25641/262326 [01:33<13:40, 288.45it/s]


 10%|███████▏                                                                  | 25672/262326 [01:33<13:29, 292.35it/s]


 10%|███████▎                                                                  | 25702/262326 [01:33<13:34, 290.54it/s]


 10%|███████▎                                                                  | 25733/262326 [01:33<13:20, 295.52it/s]


 10%|███████▎                                                                  | 25763/262326 [01:33<13:23, 294.44it/s]


 10%|███████▎                                                                  | 25795/262326 [01:33<13:07, 300.20it/s]


 10%|███████▎                                                                  | 25827/262326 [01:33<12:54, 305.25it/s]


 10%|███████▎                                                                  | 25858/262326 [01:33<12:55, 305.09it/s]


 10%|███████▎                                                                  | 25890/262326 [01:34<12:49, 307.43it/s]


 10%|███████▎                                                                  | 25921/262326 [01:34<15:24, 255.70it/s]


 10%|███████▎                                                                  | 25950/262326 [01:34<14:55, 263.85it/s]


 10%|███████▎                                                                  | 25978/262326 [01:34<14:49, 265.67it/s]


 10%|███████▎                                                                  | 26010/262326 [01:34<14:05, 279.37it/s]


 10%|███████▎                                                                  | 26041/262326 [01:34<13:44, 286.53it/s]


 10%|███████▎                                                                  | 26073/262326 [01:34<13:20, 295.17it/s]


 10%|███████▎                                                                  | 26104/262326 [01:34<13:19, 295.43it/s]


 10%|███████▎                                                                  | 26137/262326 [01:34<13:00, 302.75it/s]


 10%|███████▍                                                                  | 26170/262326 [01:34<12:46, 308.07it/s]


 10%|███████▍                                                                  | 26202/262326 [01:35<13:06, 300.39it/s]


 10%|███████▍                                                                  | 26233/262326 [01:35<13:36, 289.06it/s]


 10%|███████▍                                                                  | 26263/262326 [01:35<13:45, 285.82it/s]


 10%|███████▍                                                                  | 26294/262326 [01:35<13:30, 291.26it/s]


 10%|███████▍                                                                  | 26326/262326 [01:35<13:10, 298.69it/s]


 10%|███████▍                                                                  | 26357/262326 [01:35<13:07, 299.61it/s]


 10%|███████▍                                                                  | 26388/262326 [01:35<13:03, 301.13it/s]


 10%|███████▍                                                                  | 26420/262326 [01:35<12:55, 304.19it/s]


 10%|███████▍                                                                  | 26452/262326 [01:35<12:47, 307.21it/s]


 10%|███████▍                                                                  | 26483/262326 [01:36<13:23, 293.44it/s]


 10%|███████▍                                                                  | 26515/262326 [01:36<13:09, 298.64it/s]


 10%|███████▍                                                                  | 26547/262326 [01:36<12:59, 302.39it/s]


 10%|███████▍                                                                  | 26578/262326 [01:36<13:20, 294.47it/s]


 10%|███████▌                                                                  | 26608/262326 [01:36<13:48, 284.57it/s]


 10%|███████▌                                                                  | 26639/262326 [01:36<13:31, 290.32it/s]


 10%|███████▌                                                                  | 26671/262326 [01:36<13:10, 298.02it/s]


 10%|███████▌                                                                  | 26701/262326 [01:36<15:41, 250.29it/s]


 10%|███████▌                                                                  | 26728/262326 [01:36<15:40, 250.40it/s]


 10%|███████▌                                                                  | 26760/262326 [01:37<14:40, 267.39it/s]


 10%|███████▌                                                                  | 26791/262326 [01:37<14:06, 278.34it/s]


 10%|███████▌                                                                  | 26821/262326 [01:37<13:49, 283.91it/s]


 10%|███████▌                                                                  | 26850/262326 [01:37<14:10, 276.92it/s]


 10%|███████▌                                                                  | 26882/262326 [01:37<13:41, 286.46it/s]


 10%|███████▌                                                                  | 26912/262326 [01:37<13:32, 289.78it/s]


 10%|███████▌                                                                  | 26942/262326 [01:37<13:25, 292.14it/s]


 10%|███████▌                                                                  | 26975/262326 [01:37<13:03, 300.31it/s]


 10%|███████▌                                                                  | 27007/262326 [01:37<12:50, 305.32it/s]


 10%|███████▋                                                                  | 27038/262326 [01:37<12:53, 304.24it/s]


 10%|███████▋                                                                  | 27070/262326 [01:38<12:45, 307.27it/s]


 10%|███████▋                                                                  | 27101/262326 [01:38<13:07, 298.54it/s]


 10%|███████▋                                                                  | 27131/262326 [01:38<13:34, 288.87it/s]


 10%|███████▋                                                                  | 27161/262326 [01:38<13:36, 288.09it/s]


 10%|███████▋                                                                  | 27193/262326 [01:38<13:15, 295.46it/s]


 10%|███████▋                                                                  | 27223/262326 [01:38<13:13, 296.15it/s]


 10%|███████▋                                                                  | 27253/262326 [01:38<13:22, 293.10it/s]


 10%|███████▋                                                                  | 27283/262326 [01:38<13:22, 292.72it/s]


 10%|███████▋                                                                  | 27315/262326 [01:38<13:06, 298.95it/s]


 10%|███████▋                                                                  | 27345/262326 [01:39<13:20, 293.49it/s]


 10%|███████▋                                                                  | 27377/262326 [01:39<13:02, 300.35it/s]


 10%|███████▋                                                                  | 27408/262326 [01:39<13:25, 291.47it/s]


 10%|███████▋                                                                  | 27438/262326 [01:39<14:00, 279.45it/s]


 10%|███████▋                                                                  | 27470/262326 [01:39<13:30, 289.94it/s]


 10%|███████▊                                                                  | 27502/262326 [01:39<13:13, 296.07it/s]


 10%|███████▊                                                                  | 27534/262326 [01:39<12:59, 301.38it/s]


 11%|███████▊                                                                  | 27565/262326 [01:39<12:54, 303.23it/s]


 11%|███████▊                                                                  | 27597/262326 [01:39<12:52, 303.93it/s]


 11%|███████▊                                                                  | 27630/262326 [01:39<12:37, 309.79it/s]


 11%|███████▊                                                                  | 27663/262326 [01:40<12:29, 313.14it/s]


 11%|███████▊                                                                  | 27695/262326 [01:40<12:56, 302.06it/s]


 11%|███████▊                                                                  | 27726/262326 [01:40<13:08, 297.66it/s]


 11%|███████▊                                                                  | 27757/262326 [01:40<13:04, 298.86it/s]


 11%|███████▊                                                                  | 27787/262326 [01:40<13:43, 284.97it/s]


 11%|███████▊                                                                  | 27821/262326 [01:40<13:10, 296.62it/s]


 11%|███████▊                                                                  | 27852/262326 [01:40<13:02, 299.66it/s]


 11%|███████▊                                                                  | 27883/262326 [01:40<13:14, 295.16it/s]


 11%|███████▊                                                                  | 27914/262326 [01:40<13:06, 297.97it/s]


 11%|███████▉                                                                  | 27944/262326 [01:41<13:16, 294.42it/s]


 11%|███████▉                                                                  | 27976/262326 [01:41<13:00, 300.44it/s]


 11%|███████▉                                                                  | 28007/262326 [01:41<12:57, 301.54it/s]


 11%|███████▉                                                                  | 28038/262326 [01:41<13:17, 293.92it/s]


 11%|███████▉                                                                  | 28068/262326 [01:41<14:47, 263.93it/s]


 11%|███████▉                                                                  | 28099/262326 [01:41<14:11, 274.97it/s]


 11%|███████▉                                                                  | 28131/262326 [01:41<13:37, 286.53it/s]


 11%|███████▉                                                                  | 28163/262326 [01:41<13:13, 295.21it/s]


 11%|███████▉                                                                  | 28193/262326 [01:41<13:13, 295.14it/s]


 11%|███████▉                                                                  | 28224/262326 [01:42<13:03, 298.82it/s]


 11%|███████▉                                                                  | 28255/262326 [01:42<12:56, 301.42it/s]


 11%|███████▉                                                                  | 28286/262326 [01:42<14:24, 270.70it/s]


 11%|███████▉                                                                  | 28314/262326 [01:42<14:20, 272.03it/s]


 11%|███████▉                                                                  | 28345/262326 [01:42<13:54, 280.26it/s]


 11%|████████                                                                  | 28377/262326 [01:42<13:27, 289.74it/s]


 11%|████████                                                                  | 28408/262326 [01:42<13:15, 294.08it/s]


 11%|████████                                                                  | 28438/262326 [01:42<13:19, 292.63it/s]


 11%|████████                                                                  | 28469/262326 [01:42<13:09, 296.14it/s]


 11%|████████                                                                  | 28501/262326 [01:42<12:57, 300.59it/s]


 11%|████████                                                                  | 28533/262326 [01:43<12:45, 305.52it/s]


 11%|████████                                                                  | 28564/262326 [01:43<12:43, 306.18it/s]


 11%|████████                                                                  | 28595/262326 [01:43<13:00, 299.58it/s]


 11%|████████                                                                  | 28626/262326 [01:43<14:13, 273.85it/s]


 11%|████████                                                                  | 28655/262326 [01:43<14:27, 269.42it/s]


 11%|████████                                                                  | 28685/262326 [01:43<14:07, 275.83it/s]


 11%|████████                                                                  | 28716/262326 [01:43<13:45, 283.13it/s]


 11%|████████                                                                  | 28747/262326 [01:43<13:29, 288.50it/s]


 11%|████████                                                                  | 28779/262326 [01:43<13:11, 295.02it/s]


 11%|████████▏                                                                 | 28809/262326 [01:44<13:23, 290.70it/s]


 11%|████████▏                                                                 | 28842/262326 [01:44<12:58, 300.05it/s]


 11%|████████▏                                                                 | 28873/262326 [01:44<12:58, 299.70it/s]


 11%|████████▏                                                                 | 28904/262326 [01:44<13:21, 291.06it/s]


 11%|████████▏                                                                 | 28937/262326 [01:44<12:55, 301.12it/s]


 11%|████████▏                                                                 | 28969/262326 [01:44<12:47, 304.16it/s]


 11%|████████▏                                                                 | 29000/262326 [01:44<12:44, 305.23it/s]


 11%|████████▏                                                                 | 29032/262326 [01:44<12:37, 307.97it/s]


 11%|████████▏                                                                 | 29064/262326 [01:44<12:30, 310.82it/s]


 11%|████████▏                                                                 | 29096/262326 [01:44<12:47, 303.91it/s]


 11%|████████▏                                                                 | 29129/262326 [01:45<12:34, 308.91it/s]


 11%|████████▏                                                                 | 29160/262326 [01:45<12:53, 301.38it/s]


 11%|████████▏                                                                 | 29191/262326 [01:45<13:15, 292.97it/s]


 11%|████████▏                                                                 | 29221/262326 [01:45<13:14, 293.56it/s]


 11%|████████▎                                                                 | 29251/262326 [01:45<13:26, 288.87it/s]


 11%|████████▎                                                                 | 29282/262326 [01:45<13:16, 292.63it/s]


 11%|████████▎                                                                 | 29312/262326 [01:45<13:16, 292.45it/s]


 11%|████████▎                                                                 | 29344/262326 [01:45<12:57, 299.56it/s]


 11%|████████▎                                                                 | 29375/262326 [01:45<13:25, 289.34it/s]


 11%|████████▎                                                                 | 29407/262326 [01:46<13:05, 296.45it/s]


 11%|████████▎                                                                 | 29437/262326 [01:46<18:29, 209.96it/s]


 11%|████████▎                                                                 | 29463/262326 [01:46<17:27, 222.36it/s]


 11%|████████▎                                                                 | 29494/262326 [01:46<15:59, 242.55it/s]


 11%|████████▎                                                                 | 29526/262326 [01:46<15:11, 255.27it/s]


 11%|████████▎                                                                 | 29558/262326 [01:46<14:20, 270.57it/s]


 11%|████████▎                                                                 | 29589/262326 [01:46<13:51, 279.99it/s]


 11%|████████▎                                                                 | 29619/262326 [01:46<13:55, 278.50it/s]


 11%|████████▎                                                                 | 29653/262326 [01:47<13:11, 293.94it/s]


 11%|████████▎                                                                 | 29686/262326 [01:47<12:49, 302.44it/s]


 11%|████████▍                                                                 | 29718/262326 [01:47<12:42, 305.11it/s]


 11%|████████▍                                                                 | 29749/262326 [01:47<13:36, 284.87it/s]


 11%|████████▍                                                                 | 29781/262326 [01:47<13:11, 293.97it/s]


 11%|████████▍                                                                 | 29813/262326 [01:47<12:57, 299.02it/s]


 11%|████████▍                                                                 | 29846/262326 [01:47<12:39, 306.21it/s]


 11%|████████▍                                                                 | 29877/262326 [01:47<13:00, 297.85it/s]


 11%|████████▍                                                                 | 29909/262326 [01:47<12:47, 302.68it/s]


 11%|████████▍                                                                 | 29941/262326 [01:47<12:41, 305.27it/s]


 11%|████████▍                                                                 | 29972/262326 [01:48<12:57, 298.95it/s]


 11%|████████▍                                                                 | 30005/262326 [01:48<12:38, 306.15it/s]


 11%|████████▍                                                                 | 30036/262326 [01:48<12:55, 299.54it/s]


 11%|████████▍                                                                 | 30067/262326 [01:48<13:22, 289.31it/s]


 11%|████████▍                                                                 | 30099/262326 [01:48<13:01, 297.27it/s]


 11%|████████▍                                                                 | 30131/262326 [01:48<12:50, 301.41it/s]


 11%|████████▌                                                                 | 30164/262326 [01:48<12:31, 308.82it/s]


 12%|████████▌                                                                 | 30196/262326 [01:48<12:57, 298.39it/s]


 12%|████████▌                                                                 | 30227/262326 [01:48<13:04, 295.98it/s]


 12%|████████▌                                                                 | 30257/262326 [01:49<13:07, 294.81it/s]


 12%|████████▌                                                                 | 30287/262326 [01:49<15:21, 251.86it/s]


 12%|████████▌                                                                 | 30314/262326 [01:49<18:19, 210.95it/s]


 12%|████████▌                                                                 | 30338/262326 [01:49<23:31, 164.31it/s]


 12%|████████▌                                                                 | 30360/262326 [01:49<21:45, 177.74it/s]


 12%|████████▌                                                                 | 30382/262326 [01:49<20:45, 186.16it/s]


 12%|████████▌                                                                 | 30404/262326 [01:49<19:53, 194.39it/s]


 12%|████████▌                                                                 | 30425/262326 [01:49<19:32, 197.85it/s]


 12%|████████▌                                                                 | 30448/262326 [01:50<18:52, 204.77it/s]


 12%|████████▌                                                                 | 30470/262326 [01:50<20:40, 186.84it/s]


 12%|████████▌                                                                 | 30490/262326 [01:50<21:42, 178.05it/s]


 12%|████████▌                                                                 | 30521/262326 [01:50<18:56, 203.96it/s]


 12%|████████▌                                                                 | 30556/262326 [01:50<16:55, 228.12it/s]


 12%|████████▋                                                                 | 30591/262326 [01:50<15:29, 249.26it/s]


 12%|████████▋                                                                 | 30625/262326 [01:50<14:29, 266.58it/s]


 12%|████████▋                                                                 | 30657/262326 [01:50<13:46, 280.21it/s]


 12%|████████▋                                                                 | 30687/262326 [01:50<13:34, 284.37it/s]


 12%|████████▋                                                                 | 30723/262326 [01:51<13:11, 292.44it/s]


 12%|████████▋                                                                 | 30760/262326 [01:51<12:52, 299.93it/s]


 12%|████████▋                                                                 | 30791/262326 [01:51<13:29, 286.12it/s]


 12%|████████▋                                                                 | 30827/262326 [01:51<13:05, 294.75it/s]


 12%|████████▋                                                                 | 30864/262326 [01:51<12:45, 302.26it/s]


 12%|████████▋                                                                 | 30895/262326 [01:51<12:44, 302.59it/s]


 12%|████████▋                                                                 | 30932/262326 [01:51<12:31, 307.99it/s]


 12%|████████▋                                                                 | 30963/262326 [01:51<13:25, 287.19it/s]


 12%|████████▋                                                                 | 30993/262326 [01:52<14:01, 275.04it/s]


 12%|████████▊                                                                 | 31023/262326 [01:52<13:56, 276.44it/s]


 12%|████████▊                                                                 | 31051/262326 [01:52<13:59, 275.48it/s]


 12%|████████▊                                                                 | 31079/262326 [01:52<14:51, 259.38it/s]


 12%|████████▊                                                                 | 31109/262326 [01:52<14:16, 269.83it/s]


 12%|████████▊                                                                 | 31141/262326 [01:52<13:41, 281.48it/s]


 12%|████████▊                                                                 | 31170/262326 [01:52<14:21, 268.26it/s]


 12%|████████▊                                                                 | 31198/262326 [01:52<15:09, 254.15it/s]


 12%|████████▊                                                                 | 31224/262326 [01:52<15:20, 251.16it/s]


 12%|████████▊                                                                 | 31260/262326 [01:53<14:05, 273.23it/s]


 12%|████████▊                                                                 | 31289/262326 [01:53<14:30, 265.32it/s]


 12%|████████▊                                                                 | 31317/262326 [01:53<14:56, 257.71it/s]


 12%|████████▊                                                                 | 31346/262326 [01:53<14:31, 265.00it/s]


 12%|████████▊                                                                 | 31376/262326 [01:53<14:10, 271.62it/s]


 12%|████████▊                                                                 | 31404/262326 [01:53<14:43, 261.26it/s]


 12%|████████▊                                                                 | 31431/262326 [01:53<14:42, 261.73it/s]


 12%|████████▉                                                                 | 31467/262326 [01:53<13:46, 279.39it/s]


 12%|████████▉                                                                 | 31498/262326 [01:53<14:02, 273.83it/s]


 12%|████████▉                                                                 | 31529/262326 [01:54<13:35, 282.88it/s]


 12%|████████▉                                                                 | 31562/262326 [01:54<13:06, 293.51it/s]


 12%|████████▉                                                                 | 31594/262326 [01:54<12:47, 300.50it/s]


 12%|████████▉                                                                 | 31625/262326 [01:54<13:59, 274.82it/s]


 12%|████████▉                                                                 | 31654/262326 [01:54<14:15, 269.58it/s]


 12%|████████▉                                                                 | 31689/262326 [01:54<13:46, 279.16it/s]


 12%|████████▉                                                                 | 31718/262326 [01:54<13:44, 279.80it/s]


 12%|████████▉                                                                 | 31747/262326 [01:54<14:01, 274.03it/s]


 12%|████████▉                                                                 | 31775/262326 [01:54<14:00, 274.39it/s]


 12%|████████▉                                                                 | 31805/262326 [01:54<13:42, 280.18it/s]


 12%|████████▉                                                                 | 31834/262326 [01:55<13:43, 279.75it/s]


 12%|████████▉                                                                 | 31863/262326 [01:55<15:07, 254.02it/s]


 12%|████████▉                                                                 | 31889/262326 [01:55<15:14, 251.96it/s]


 12%|█████████                                                                 | 31918/262326 [01:55<14:40, 261.81it/s]


 12%|█████████                                                                 | 31949/262326 [01:55<14:00, 274.05it/s]


 12%|█████████                                                                 | 31977/262326 [01:55<13:56, 275.34it/s]


 12%|█████████                                                                 | 32005/262326 [01:55<14:10, 270.89it/s]


 12%|█████████                                                                 | 32038/262326 [01:55<13:30, 284.26it/s]


 12%|█████████                                                                 | 32070/262326 [01:55<13:07, 292.47it/s]


 12%|█████████                                                                 | 32100/262326 [01:56<13:07, 292.42it/s]


 12%|█████████                                                                 | 32132/262326 [01:56<12:56, 296.64it/s]


 12%|█████████                                                                 | 32163/262326 [01:56<12:52, 298.04it/s]


 12%|█████████                                                                 | 32193/262326 [01:56<15:02, 254.88it/s]


 12%|█████████                                                                 | 32220/262326 [01:56<15:32, 246.67it/s]


 12%|█████████                                                                 | 32246/262326 [01:56<16:00, 239.66it/s]


 12%|█████████                                                                 | 32271/262326 [01:56<15:52, 241.45it/s]


 12%|█████████                                                                 | 32296/262326 [01:56<16:09, 237.20it/s]


 12%|█████████                                                                 | 32323/262326 [01:56<15:38, 245.03it/s]


 12%|█████████▏                                                                | 32354/262326 [01:57<14:39, 261.39it/s]


 12%|█████████▏                                                                | 32387/262326 [01:57<13:50, 276.98it/s]


 12%|█████████▏                                                                | 32417/262326 [01:57<13:34, 282.34it/s]


 12%|█████████▏                                                                | 32446/262326 [01:57<14:23, 266.20it/s]


 12%|█████████▏                                                                | 32474/262326 [01:57<15:22, 249.05it/s]


 12%|█████████▏                                                                | 32504/262326 [01:57<14:42, 260.54it/s]


 12%|█████████▏                                                                | 32537/262326 [01:57<13:49, 276.89it/s]


 12%|█████████▏                                                                | 32568/262326 [01:57<13:55, 274.92it/s]


 12%|█████████▏                                                                | 32599/262326 [01:57<13:29, 283.94it/s]


 12%|█████████▏                                                                | 32631/262326 [01:58<13:03, 293.12it/s]


 12%|█████████▏                                                                | 32661/262326 [01:58<13:28, 284.05it/s]


 12%|█████████▏                                                                | 32692/262326 [01:58<13:09, 290.76it/s]


 12%|█████████▏                                                                | 32722/262326 [01:58<13:13, 289.41it/s]


 12%|█████████▏                                                                | 32752/262326 [01:58<13:32, 282.53it/s]


 12%|█████████▏                                                                | 32783/262326 [01:58<13:18, 287.41it/s]


 13%|█████████▎                                                                | 32813/262326 [01:58<13:10, 290.34it/s]


 13%|█████████▎                                                                | 32843/262326 [01:58<13:35, 281.34it/s]


 13%|█████████▎                                                                | 32873/262326 [01:58<13:24, 285.28it/s]


 13%|█████████▎                                                                | 32903/262326 [01:58<13:12, 289.39it/s]


 13%|█████████▎                                                                | 32936/262326 [01:59<12:56, 295.27it/s]


 13%|█████████▎                                                                | 32971/262326 [01:59<12:36, 303.27it/s]


 13%|█████████▎                                                                | 33003/262326 [01:59<12:57, 294.94it/s]


 13%|█████████▎                                                                | 33033/262326 [01:59<12:56, 295.21it/s]


 13%|█████████▎                                                                | 33063/262326 [01:59<14:45, 258.86it/s]


 13%|█████████▎                                                                | 33095/262326 [01:59<14:02, 271.97it/s]


 13%|█████████▎                                                                | 33125/262326 [01:59<13:39, 279.80it/s]


 13%|█████████▎                                                                | 33160/262326 [01:59<13:18, 286.97it/s]


 13%|█████████▎                                                                | 33191/262326 [01:59<13:02, 292.83it/s]


 13%|█████████▎                                                                | 33221/262326 [02:00<14:45, 258.65it/s]


 13%|█████████▍                                                                | 33250/262326 [02:00<14:21, 265.90it/s]


 13%|█████████▍                                                                | 33279/262326 [02:00<14:05, 270.98it/s]


 13%|█████████▍                                                                | 33314/262326 [02:00<13:35, 280.95it/s]


 13%|█████████▍                                                                | 33343/262326 [02:00<14:48, 257.86it/s]


 13%|█████████▍                                                                | 33370/262326 [02:00<14:41, 259.80it/s]


 13%|█████████▍                                                                | 33398/262326 [02:00<14:22, 265.42it/s]


 13%|█████████▍                                                                | 33425/262326 [02:00<14:53, 256.17it/s]


 13%|█████████▍                                                                | 33454/262326 [02:01<14:28, 263.46it/s]


 13%|█████████▍                                                                | 33485/262326 [02:01<14:21, 265.67it/s]


 13%|█████████▍                                                                | 33512/262326 [02:01<15:21, 248.17it/s]


 13%|█████████▍                                                                | 33543/262326 [02:01<14:49, 257.09it/s]


 13%|█████████▍                                                                | 33576/262326 [02:01<14:22, 265.15it/s]


 13%|█████████▍                                                                | 33609/262326 [02:01<13:38, 279.36it/s]


 13%|█████████▍                                                                | 33646/262326 [02:01<13:02, 292.16it/s]


 13%|█████████▌                                                                | 33677/262326 [02:01<12:51, 296.42it/s]


 13%|█████████▌                                                                | 33708/262326 [02:01<12:41, 300.09it/s]


 13%|█████████▌                                                                | 33745/262326 [02:02<12:26, 306.25it/s]


 13%|█████████▌                                                                | 33776/262326 [02:02<12:42, 299.89it/s]


 13%|█████████▌                                                                | 33808/262326 [02:02<12:35, 302.48it/s]


 13%|█████████▌                                                                | 33839/262326 [02:02<12:48, 297.28it/s]


 13%|█████████▌                                                                | 33875/262326 [02:02<12:34, 302.78it/s]


 13%|█████████▌                                                                | 33906/262326 [02:02<12:32, 303.50it/s]


 13%|█████████▌                                                                | 33942/262326 [02:02<12:26, 306.08it/s]


 13%|█████████▌                                                                | 33974/262326 [02:02<12:19, 308.82it/s]


 13%|█████████▌                                                                | 34009/262326 [02:02<12:22, 307.69it/s]


 13%|█████████▌                                                                | 34041/262326 [02:02<12:16, 309.95it/s]


 13%|█████████▌                                                                | 34073/262326 [02:03<12:13, 311.32it/s]


 13%|█████████▌                                                                | 34107/262326 [02:03<12:25, 306.13it/s]


 13%|█████████▋                                                                | 34138/262326 [02:03<12:34, 302.45it/s]


 13%|█████████▋                                                                | 34169/262326 [02:03<12:53, 294.97it/s]


 13%|█████████▋                                                                | 34199/262326 [02:03<12:52, 295.24it/s]


 13%|█████████▋                                                                | 34232/262326 [02:03<13:00, 292.23it/s]


 13%|█████████▋                                                                | 34262/262326 [02:03<13:19, 285.11it/s]


 13%|█████████▋                                                                | 34296/262326 [02:03<12:53, 294.83it/s]


 13%|█████████▋                                                                | 34327/262326 [02:03<12:47, 296.89it/s]


 13%|█████████▋                                                                | 34357/262326 [02:04<14:27, 262.92it/s]


 13%|█████████▋                                                                | 34386/262326 [02:04<14:10, 268.01it/s]


 13%|█████████▋                                                                | 34415/262326 [02:04<13:53, 273.31it/s]


 13%|█████████▋                                                                | 34446/262326 [02:04<13:24, 283.26it/s]


 13%|█████████▋                                                                | 34483/262326 [02:04<12:57, 293.16it/s]


 13%|█████████▋                                                                | 34520/262326 [02:04<12:36, 301.31it/s]


 13%|█████████▋                                                                | 34552/262326 [02:04<12:25, 305.42it/s]


 13%|█████████▊                                                                | 34583/262326 [02:04<12:25, 305.69it/s]


 13%|█████████▊                                                                | 34614/262326 [02:04<12:22, 306.89it/s]


 13%|█████████▊                                                                | 34649/262326 [02:05<12:24, 305.86it/s]


 13%|█████████▊                                                                | 34680/262326 [02:05<12:22, 306.55it/s]


 13%|█████████▊                                                                | 34711/262326 [02:05<12:49, 295.97it/s]


 13%|█████████▊                                                                | 34741/262326 [02:05<12:56, 293.26it/s]


 13%|█████████▊                                                                | 34771/262326 [02:05<13:30, 280.64it/s]


 13%|█████████▊                                                                | 34803/262326 [02:05<13:33, 279.74it/s]


 13%|█████████▊                                                                | 34841/262326 [02:05<12:56, 292.89it/s]


 13%|█████████▊                                                                | 34871/262326 [02:05<12:54, 293.54it/s]


 13%|█████████▊                                                                | 34902/262326 [02:05<12:44, 297.58it/s]


 13%|█████████▊                                                                | 34939/262326 [02:06<12:27, 304.06it/s]


 13%|█████████▊                                                                | 34970/262326 [02:06<12:28, 303.81it/s]


 13%|█████████▊                                                                | 35001/262326 [02:06<13:45, 275.38it/s]


 13%|█████████▉                                                                | 35030/262326 [02:06<13:58, 271.07it/s]


 13%|█████████▉                                                                | 35058/262326 [02:06<13:52, 273.03it/s]


 13%|█████████▉                                                                | 35086/262326 [02:06<13:46, 274.90it/s]


 13%|█████████▉                                                                | 35116/262326 [02:06<13:26, 281.59it/s]


 13%|█████████▉                                                                | 35147/262326 [02:06<13:04, 289.44it/s]


 13%|█████████▉                                                                | 35182/262326 [02:06<12:52, 293.97it/s]


 13%|█████████▉                                                                | 35214/262326 [02:06<12:38, 299.35it/s]


 13%|█████████▉                                                                | 35253/262326 [02:07<12:10, 310.75it/s]


 13%|█████████▉                                                                | 35285/262326 [02:07<12:37, 299.81it/s]


 13%|█████████▉                                                                | 35317/262326 [02:07<12:40, 298.45it/s]


 13%|█████████▉                                                                | 35352/262326 [02:07<12:25, 304.37it/s]


 13%|█████████▉                                                                | 35384/262326 [02:07<12:18, 307.45it/s]


 14%|█████████▉                                                                | 35422/262326 [02:07<12:03, 313.74it/s]


 14%|██████████                                                                | 35456/262326 [02:07<11:53, 317.80it/s]


 14%|██████████                                                                | 35488/262326 [02:07<12:19, 306.73it/s]


 14%|██████████                                                                | 35521/262326 [02:07<12:09, 310.90it/s]


 14%|██████████                                                                | 35558/262326 [02:08<12:57, 291.60it/s]


 14%|██████████                                                                | 35588/262326 [02:08<13:15, 285.20it/s]


 14%|██████████                                                                | 35621/262326 [02:08<13:08, 287.64it/s]


 14%|██████████                                                                | 35654/262326 [02:08<13:04, 288.92it/s]


 14%|██████████                                                                | 35685/262326 [02:08<12:54, 292.73it/s]


 14%|██████████                                                                | 35723/262326 [02:08<12:26, 303.71it/s]


 14%|██████████                                                                | 35756/262326 [02:08<12:16, 307.82it/s]


 14%|██████████                                                                | 35788/262326 [02:08<12:36, 299.64it/s]


 14%|██████████                                                                | 35821/262326 [02:08<12:16, 307.56it/s]


 14%|██████████                                                                | 35854/262326 [02:09<12:01, 313.96it/s]


 14%|██████████                                                                | 35887/262326 [02:09<11:52, 317.86it/s]


 14%|██████████▏                                                               | 35919/262326 [02:09<12:10, 310.12it/s]


 14%|██████████▏                                                               | 35952/262326 [02:09<12:12, 308.85it/s]


 14%|██████████▏                                                               | 35990/262326 [02:09<12:03, 312.77it/s]


 14%|██████████▏                                                               | 36022/262326 [02:09<11:58, 314.79it/s]


 14%|██████████▏                                                               | 36060/262326 [02:09<11:48, 319.35it/s]


 14%|██████████▏                                                               | 36093/262326 [02:09<11:42, 321.88it/s]


 14%|██████████▏                                                               | 36126/262326 [02:09<11:37, 324.26it/s]


 14%|██████████▏                                                               | 36159/262326 [02:10<11:36, 324.72it/s]


 14%|██████████▏                                                               | 36192/262326 [02:10<11:36, 324.78it/s]


 14%|██████████▏                                                               | 36225/262326 [02:10<12:09, 309.93it/s]


 14%|██████████▏                                                               | 36257/262326 [02:10<12:33, 299.87it/s]


 14%|██████████▏                                                               | 36288/262326 [02:10<12:26, 302.84it/s]


 14%|██████████▏                                                               | 36320/262326 [02:10<12:46, 294.95it/s]


 14%|██████████▎                                                               | 36352/262326 [02:10<12:30, 301.08it/s]


 14%|██████████▎                                                               | 36384/262326 [02:10<12:17, 306.29it/s]


 14%|██████████▎                                                               | 36415/262326 [02:10<14:39, 256.79it/s]


 14%|██████████▎                                                               | 36444/262326 [02:11<14:11, 265.32it/s]


 14%|██████████▎                                                               | 36474/262326 [02:11<13:43, 274.20it/s]


 14%|██████████▎                                                               | 36503/262326 [02:11<13:44, 274.01it/s]


 14%|██████████▎                                                               | 36534/262326 [02:11<13:35, 276.93it/s]


 14%|██████████▎                                                               | 36567/262326 [02:11<12:57, 290.41it/s]


 14%|██████████▎                                                               | 36603/262326 [02:11<12:40, 296.81it/s]


 14%|██████████▎                                                               | 36636/262326 [02:11<12:23, 303.53it/s]


 14%|██████████▎                                                               | 36671/262326 [02:11<12:20, 304.84it/s]


 14%|██████████▎                                                               | 36702/262326 [02:11<12:18, 305.56it/s]


 14%|██████████▎                                                               | 36733/262326 [02:12<12:19, 304.95it/s]


 14%|██████████▎                                                               | 36765/262326 [02:12<12:39, 297.17it/s]


 14%|██████████▍                                                               | 36795/262326 [02:12<14:06, 266.39it/s]


 14%|██████████▍                                                               | 36828/262326 [02:12<13:40, 274.85it/s]


 14%|██████████▍                                                               | 36857/262326 [02:12<13:29, 278.62it/s]


 14%|██████████▍                                                               | 36888/262326 [02:12<13:06, 286.50it/s]


 14%|██████████▍                                                               | 36919/262326 [02:12<12:49, 292.86it/s]


 14%|██████████▍                                                               | 36951/262326 [02:12<13:01, 288.38it/s]


 14%|██████████▍                                                               | 36982/262326 [02:12<12:45, 294.38it/s]


 14%|██████████▍                                                               | 37018/262326 [02:13<12:31, 299.93it/s]


 14%|██████████▍                                                               | 37050/262326 [02:13<12:20, 304.21it/s]


 14%|██████████▍                                                               | 37082/262326 [02:13<12:09, 308.56it/s]


 14%|██████████▍                                                               | 37113/262326 [02:13<12:23, 303.11it/s]


 14%|██████████▍                                                               | 37144/262326 [02:13<12:39, 296.56it/s]


 14%|██████████▍                                                               | 37176/262326 [02:13<12:27, 301.05it/s]


 14%|██████████▍                                                               | 37207/262326 [02:13<12:21, 303.52it/s]


 14%|██████████▌                                                               | 37242/262326 [02:13<12:19, 304.57it/s]


 14%|██████████▌                                                               | 37274/262326 [02:13<12:11, 307.77it/s]


 14%|██████████▌                                                               | 37305/262326 [02:13<12:10, 308.21it/s]


 14%|██████████▌                                                               | 37336/262326 [02:14<12:11, 307.52it/s]


 14%|██████████▌                                                               | 37367/262326 [02:14<12:11, 307.68it/s]


 14%|██████████▌                                                               | 37398/262326 [02:14<12:21, 303.24it/s]


 14%|██████████▌                                                               | 37429/262326 [02:14<12:40, 295.82it/s]


 14%|██████████▌                                                               | 37466/262326 [02:14<12:22, 303.04it/s]


 14%|██████████▌                                                               | 37498/262326 [02:14<12:11, 307.33it/s]


 14%|██████████▌                                                               | 37536/262326 [02:14<11:56, 313.52it/s]


 14%|██████████▌                                                               | 37570/262326 [02:14<11:41, 320.17it/s]


 14%|██████████▌                                                               | 37603/262326 [02:14<11:45, 318.39it/s]


 14%|██████████▌                                                               | 37639/262326 [02:15<11:41, 320.12it/s]


 14%|██████████▋                                                               | 37672/262326 [02:15<11:52, 315.50it/s]


 14%|██████████▋                                                               | 37704/262326 [02:15<12:08, 308.50it/s]


 14%|██████████▋                                                               | 37735/262326 [02:15<12:09, 307.88it/s]


 14%|██████████▋                                                               | 37766/262326 [02:15<12:08, 308.18it/s]


 14%|██████████▋                                                               | 37797/262326 [02:15<12:39, 295.50it/s]


 14%|██████████▋                                                               | 37827/262326 [02:15<13:15, 282.05it/s]


 14%|██████████▋                                                               | 37859/262326 [02:15<12:53, 290.28it/s]


 14%|██████████▋                                                               | 37895/262326 [02:15<12:35, 296.97it/s]


 14%|██████████▋                                                               | 37927/262326 [02:15<12:22, 302.29it/s]


 14%|██████████▋                                                               | 37963/262326 [02:16<12:12, 306.09it/s]


 14%|██████████▋                                                               | 37994/262326 [02:16<12:17, 304.00it/s]


 14%|██████████▋                                                               | 38025/262326 [02:16<13:26, 278.16it/s]


 15%|██████████▋                                                               | 38057/262326 [02:16<13:21, 279.83it/s]


 15%|██████████▋                                                               | 38088/262326 [02:16<13:03, 286.31it/s]


 15%|██████████▊                                                               | 38119/262326 [02:16<12:46, 292.37it/s]


 15%|██████████▊                                                               | 38151/262326 [02:16<12:30, 298.84it/s]


 15%|██████████▊                                                               | 38188/262326 [02:16<12:11, 306.40it/s]


 15%|██████████▊                                                               | 38225/262326 [02:17<12:30, 298.71it/s]


 15%|██████████▊                                                               | 38256/262326 [02:17<12:27, 299.61it/s]


 15%|██████████▊                                                               | 38288/262326 [02:17<12:17, 303.90it/s]


 15%|██████████▊                                                               | 38319/262326 [02:17<12:53, 289.70it/s]


 15%|██████████▊                                                               | 38349/262326 [02:17<13:14, 281.97it/s]


 15%|██████████▊                                                               | 38381/262326 [02:17<12:50, 290.72it/s]


 15%|██████████▊                                                               | 38417/262326 [02:17<12:31, 297.97it/s]


 15%|██████████▊                                                               | 38450/262326 [02:17<12:10, 306.27it/s]


 15%|██████████▊                                                               | 38482/262326 [02:17<12:01, 310.23it/s]


 15%|██████████▊                                                               | 38514/262326 [02:17<11:58, 311.43it/s]


 15%|██████████▊                                                               | 38546/262326 [02:18<11:53, 313.64it/s]


 15%|██████████▉                                                               | 38580/262326 [02:18<12:05, 308.33it/s]


 15%|██████████▉                                                               | 38611/262326 [02:18<12:13, 305.16it/s]


 15%|██████████▉                                                               | 38645/262326 [02:18<12:16, 303.77it/s]


 15%|██████████▉                                                               | 38676/262326 [02:18<12:12, 305.48it/s]


 15%|██████████▉                                                               | 38708/262326 [02:18<12:02, 309.30it/s]


 15%|██████████▉                                                               | 38745/262326 [02:18<11:54, 312.78it/s]


 15%|██████████▉                                                               | 38777/262326 [02:18<11:52, 313.59it/s]


 15%|██████████▉                                                               | 38809/262326 [02:18<12:17, 303.14it/s]


 15%|██████████▉                                                               | 38840/262326 [02:19<14:36, 254.99it/s]


 15%|██████████▉                                                               | 38872/262326 [02:19<13:49, 269.26it/s]


 15%|██████████▉                                                               | 38902/262326 [02:19<13:32, 274.88it/s]


 15%|██████████▉                                                               | 38931/262326 [02:19<13:50, 269.03it/s]


 15%|██████████▉                                                               | 38960/262326 [02:19<13:38, 273.04it/s]


 15%|███████████                                                               | 38997/262326 [02:19<13:00, 286.12it/s]


 15%|███████████                                                               | 39027/262326 [02:19<12:51, 289.52it/s]


 15%|███████████                                                               | 39064/262326 [02:19<12:27, 298.63it/s]


 15%|███████████                                                               | 39095/262326 [02:19<12:20, 301.47it/s]


 15%|███████████                                                               | 39126/262326 [02:20<12:15, 303.62it/s]


 15%|███████████                                                               | 39157/262326 [02:20<12:14, 303.75it/s]


 15%|███████████                                                               | 39188/262326 [02:20<12:11, 304.95it/s]


 15%|███████████                                                               | 39219/262326 [02:20<12:08, 306.37it/s]


 15%|███████████                                                               | 39250/262326 [02:20<16:16, 228.55it/s]


 15%|███████████                                                               | 39285/262326 [02:20<15:03, 246.95it/s]


 15%|███████████                                                               | 39316/262326 [02:20<14:13, 261.19it/s]


 15%|███████████                                                               | 39353/262326 [02:20<13:23, 277.52it/s]


 15%|███████████                                                               | 39385/262326 [02:20<12:56, 287.29it/s]


 15%|███████████                                                               | 39420/262326 [02:21<12:43, 291.90it/s]


 15%|███████████▏                                                              | 39453/262326 [02:21<12:21, 300.39it/s]


 15%|███████████▏                                                              | 39484/262326 [02:21<12:27, 298.21it/s]


 15%|███████████▏                                                              | 39515/262326 [02:21<12:36, 294.69it/s]


 15%|███████████▏                                                              | 39545/262326 [02:21<12:46, 290.46it/s]


 15%|███████████▏                                                              | 39580/262326 [02:21<12:28, 297.64it/s]


 15%|███████████▏                                                              | 39611/262326 [02:21<12:21, 300.32it/s]


 15%|███████████▏                                                              | 39643/262326 [02:21<12:08, 305.68it/s]


 15%|███████████▏                                                              | 39678/262326 [02:21<12:08, 305.72it/s]


 15%|███████████▏                                                              | 39711/262326 [02:22<11:54, 311.74it/s]


 15%|███████████▏                                                              | 39743/262326 [02:22<11:50, 313.23it/s]


 15%|███████████▏                                                              | 39775/262326 [02:22<12:05, 306.61it/s]


 15%|███████████▏                                                              | 39806/262326 [02:22<12:17, 301.53it/s]


 15%|███████████▏                                                              | 39838/262326 [02:22<12:36, 294.13it/s]


 15%|███████████▏                                                              | 39871/262326 [02:22<12:15, 302.61it/s]


 15%|███████████▎                                                              | 39904/262326 [02:22<11:57, 310.16it/s]


 15%|███████████▎                                                              | 39942/262326 [02:22<11:44, 315.55it/s]


 15%|███████████▎                                                              | 39974/262326 [02:22<11:57, 309.97it/s]


 15%|███████████▎                                                              | 40010/262326 [02:23<11:45, 315.19it/s]


 15%|███████████▎                                                              | 40042/262326 [02:23<12:10, 304.38it/s]


 15%|███████████▎                                                              | 40073/262326 [02:23<12:16, 301.83it/s]


 15%|███████████▎                                                              | 40107/262326 [02:23<12:20, 300.08it/s]


 15%|███████████▎                                                              | 40138/262326 [02:23<12:19, 300.59it/s]


 15%|███████████▎                                                              | 40171/262326 [02:23<12:28, 296.97it/s]


 15%|███████████▎                                                              | 40203/262326 [02:23<12:14, 302.58it/s]


 15%|███████████▎                                                              | 40236/262326 [02:23<11:56, 309.86it/s]


 15%|███████████▎                                                              | 40268/262326 [02:23<12:21, 299.66it/s]


 15%|███████████▎                                                              | 40299/262326 [02:23<12:17, 301.22it/s]


 15%|███████████▍                                                              | 40333/262326 [02:24<12:22, 299.12it/s]


 15%|███████████▍                                                              | 40365/262326 [02:24<12:15, 301.67it/s]


 15%|███████████▍                                                              | 40399/262326 [02:24<12:20, 299.81it/s]


 15%|███████████▍                                                              | 40431/262326 [02:24<12:07, 305.19it/s]


 15%|███████████▍                                                              | 40462/262326 [02:24<13:48, 267.86it/s]


 15%|███████████▍                                                              | 40490/262326 [02:24<13:39, 270.75it/s]


 15%|███████████▍                                                              | 40528/262326 [02:24<12:55, 286.03it/s]


 15%|███████████▍                                                              | 40558/262326 [02:24<13:11, 280.12it/s]


 15%|███████████▍                                                              | 40588/262326 [02:25<12:56, 285.54it/s]


 15%|███████████▍                                                              | 40618/262326 [02:25<12:51, 287.33it/s]


 15%|███████████▍                                                              | 40648/262326 [02:25<12:47, 288.73it/s]


 16%|███████████▍                                                              | 40678/262326 [02:25<12:49, 288.06it/s]


 16%|███████████▍                                                              | 40707/262326 [02:25<13:15, 278.57it/s]


 16%|███████████▍                                                              | 40738/262326 [02:25<12:53, 286.29it/s]


 16%|███████████▌                                                              | 40769/262326 [02:25<12:41, 291.05it/s]


 16%|███████████▌                                                              | 40802/262326 [02:25<12:39, 291.52it/s]


 16%|███████████▌                                                              | 40832/262326 [02:25<12:37, 292.43it/s]


 16%|███████████▌                                                              | 40871/262326 [02:25<12:05, 305.37it/s]


 16%|███████████▌                                                              | 40902/262326 [02:26<12:03, 306.19it/s]


 16%|███████████▌                                                              | 40935/262326 [02:26<11:48, 312.53it/s]


 16%|███████████▌                                                              | 40967/262326 [02:26<11:54, 310.00it/s]


 16%|███████████▌                                                              | 41000/262326 [02:26<12:05, 304.96it/s]


 16%|███████████▌                                                              | 41037/262326 [02:26<12:22, 298.00it/s]


 16%|███████████▌                                                              | 41067/262326 [02:26<12:27, 296.19it/s]


 16%|███████████▌                                                              | 41097/262326 [02:26<12:36, 292.47it/s]


 16%|███████████▌                                                              | 41127/262326 [02:26<12:36, 292.24it/s]


 16%|███████████▌                                                              | 41158/262326 [02:26<12:27, 295.93it/s]


 16%|███████████▌                                                              | 41189/262326 [02:27<12:18, 299.38it/s]


 16%|███████████▋                                                              | 41219/262326 [02:27<13:04, 281.89it/s]


 16%|███████████▋                                                              | 41248/262326 [02:27<13:35, 270.98it/s]


 16%|███████████▋                                                              | 41276/262326 [02:27<13:33, 271.70it/s]


 16%|███████████▋                                                              | 41304/262326 [02:27<14:13, 258.86it/s]


 16%|███████████▋                                                              | 41331/262326 [02:27<14:53, 247.23it/s]


 16%|███████████▋                                                              | 41358/262326 [02:27<14:32, 253.12it/s]


 16%|███████████▋                                                              | 41392/262326 [02:27<13:38, 269.88it/s]


 16%|███████████▋                                                              | 41420/262326 [02:27<14:20, 256.60it/s]


 16%|███████████▋                                                              | 41447/262326 [02:28<15:13, 241.82it/s]


 16%|███████████▋                                                              | 41472/262326 [02:28<15:16, 241.08it/s]


 16%|███████████▋                                                              | 41497/262326 [02:28<15:17, 240.57it/s]


 16%|███████████▋                                                              | 41522/262326 [02:28<16:44, 219.81it/s]


 16%|███████████▋                                                              | 41550/262326 [02:28<15:45, 233.47it/s]


 16%|███████████▋                                                              | 41574/262326 [02:28<17:20, 212.09it/s]


 16%|███████████▋                                                              | 41597/262326 [02:28<17:50, 206.11it/s]


 16%|███████████▋                                                              | 41619/262326 [02:28<18:20, 200.49it/s]


 16%|███████████▋                                                              | 41645/262326 [02:28<17:05, 215.18it/s]


 16%|███████████▊                                                              | 41677/262326 [02:29<15:56, 230.65it/s]


 16%|███████████▊                                                              | 41704/262326 [02:29<15:17, 240.51it/s]


 16%|███████████▊                                                              | 41729/262326 [02:29<15:07, 243.14it/s]


 16%|███████████▊                                                              | 41754/262326 [02:29<15:27, 237.82it/s]


 16%|███████████▊                                                              | 41779/262326 [02:29<16:58, 216.50it/s]


 16%|███████████▊                                                              | 41803/262326 [02:29<16:35, 221.53it/s]


 16%|███████████▊                                                              | 41833/262326 [02:29<15:46, 232.89it/s]


 16%|███████████▊                                                              | 41857/262326 [02:29<15:59, 229.66it/s]


 16%|███████████▊                                                              | 41881/262326 [02:29<16:36, 221.28it/s]


 16%|███████████▊                                                              | 41909/262326 [02:30<15:56, 230.47it/s]


 16%|███████████▊                                                              | 41934/262326 [02:30<15:34, 235.83it/s]


 16%|███████████▊                                                              | 41959/262326 [02:30<15:26, 237.84it/s]


 16%|███████████▊                                                              | 41983/262326 [02:30<15:35, 235.47it/s]


 16%|███████████▊                                                              | 42007/262326 [02:30<16:13, 226.30it/s]


 16%|███████████▊                                                              | 42030/262326 [02:30<16:16, 225.57it/s]


 16%|███████████▊                                                              | 42059/262326 [02:30<15:26, 237.66it/s]


 16%|███████████▊                                                              | 42085/262326 [02:30<15:11, 241.70it/s]


 16%|███████████▉                                                              | 42110/262326 [02:30<15:54, 230.82it/s]


 16%|███████████▉                                                              | 42134/262326 [02:31<16:13, 226.07it/s]


 16%|███████████▉                                                              | 42164/262326 [02:31<15:03, 243.75it/s]


 16%|███████████▉                                                              | 42193/262326 [02:31<14:25, 254.36it/s]


 16%|███████████▉                                                              | 42226/262326 [02:31<13:55, 263.52it/s]


 16%|███████████▉                                                              | 42253/262326 [02:31<14:02, 261.34it/s]


 16%|███████████▉                                                              | 42283/262326 [02:31<13:32, 270.80it/s]


 16%|███████████▉                                                              | 42313/262326 [02:31<13:31, 271.26it/s]


 16%|███████████▉                                                              | 42344/262326 [02:31<13:32, 270.89it/s]


 16%|███████████▉                                                              | 42372/262326 [02:31<13:45, 266.53it/s]


 16%|███████████▉                                                              | 42402/262326 [02:32<13:21, 274.43it/s]


 16%|███████████▉                                                              | 42430/262326 [02:32<13:48, 265.36it/s]


 16%|███████████▉                                                              | 42460/262326 [02:32<13:23, 273.51it/s]


 16%|███████████▉                                                              | 42489/262326 [02:32<13:30, 271.13it/s]


 16%|███████████▉                                                              | 42522/262326 [02:32<13:49, 265.08it/s]


 16%|████████████                                                              | 42555/262326 [02:32<13:02, 280.78it/s]


 16%|████████████                                                              | 42584/262326 [02:32<14:10, 258.50it/s]


 16%|████████████                                                              | 42614/262326 [02:32<13:41, 267.34it/s]


 16%|████████████                                                              | 42649/262326 [02:32<13:12, 277.29it/s]


 16%|████████████                                                              | 42681/262326 [02:33<12:44, 287.33it/s]


 16%|████████████                                                              | 42717/262326 [02:33<12:23, 295.54it/s]


 16%|████████████                                                              | 42747/262326 [02:33<12:20, 296.43it/s]


 16%|████████████                                                              | 42777/262326 [02:33<12:25, 294.44it/s]


 16%|████████████                                                              | 42807/262326 [02:33<12:52, 284.24it/s]


 16%|████████████                                                              | 42836/262326 [02:33<12:53, 283.93it/s]


 16%|████████████                                                              | 42872/262326 [02:33<12:31, 291.99it/s]


 16%|████████████                                                              | 42905/262326 [02:33<12:08, 301.34it/s]


 16%|████████████                                                              | 42942/262326 [02:33<11:54, 306.87it/s]


 16%|████████████                                                              | 42973/262326 [02:34<14:05, 259.53it/s]


 16%|████████████▏                                                             | 43001/262326 [02:34<13:59, 261.23it/s]


 16%|████████████▏                                                             | 43030/262326 [02:34<13:37, 268.30it/s]


 16%|████████████▏                                                             | 43065/262326 [02:34<13:08, 278.20it/s]


 16%|████████████▏                                                             | 43094/262326 [02:34<13:00, 281.06it/s]


 16%|████████████▏                                                             | 43124/262326 [02:34<12:46, 286.13it/s]


 16%|████████████▏                                                             | 43161/262326 [02:34<12:20, 295.91it/s]


 16%|████████████▏                                                             | 43194/262326 [02:34<12:00, 304.09it/s]


 16%|████████████▏                                                             | 43226/262326 [02:34<11:53, 307.21it/s]


 16%|████████████▏                                                             | 43263/262326 [02:35<11:39, 313.15it/s]


 17%|████████████▏                                                             | 43296/262326 [02:35<11:34, 315.33it/s]


 17%|████████████▏                                                             | 43328/262326 [02:35<11:38, 313.69it/s]


 17%|████████████▏                                                             | 43360/262326 [02:35<12:02, 303.17it/s]


 17%|████████████▏                                                             | 43391/262326 [02:35<13:01, 280.03it/s]


 17%|████████████▏                                                             | 43420/262326 [02:35<13:00, 280.65it/s]


 17%|████████████▎                                                             | 43456/262326 [02:35<12:35, 289.60it/s]


 17%|████████████▎                                                             | 43489/262326 [02:35<12:09, 300.12it/s]


 17%|████████████▎                                                             | 43522/262326 [02:35<11:51, 307.32it/s]


 17%|████████████▎                                                             | 43557/262326 [02:36<11:37, 313.61it/s]


 17%|████████████▎                                                             | 43593/262326 [02:36<11:24, 319.44it/s]


 17%|████████████▎                                                             | 43626/262326 [02:36<12:20, 295.52it/s]


 17%|████████████▎                                                             | 43657/262326 [02:36<12:53, 282.71it/s]


 17%|████████████▎                                                             | 43686/262326 [02:36<12:50, 283.69it/s]


 17%|████████████▎                                                             | 43715/262326 [02:36<13:18, 273.75it/s]


 17%|████████████▎                                                             | 43745/262326 [02:36<13:17, 274.25it/s]


 17%|████████████▎                                                             | 43776/262326 [02:36<13:09, 276.70it/s]


 17%|████████████▎                                                             | 43814/262326 [02:36<12:30, 291.23it/s]


 17%|████████████▎                                                             | 43846/262326 [02:37<12:12, 298.14it/s]


 17%|████████████▍                                                             | 43882/262326 [02:37<12:03, 302.07it/s]


 17%|████████████▍                                                             | 43913/262326 [02:37<12:47, 284.62it/s]


 17%|████████████▍                                                             | 43942/262326 [02:37<13:11, 275.79it/s]


 17%|████████████▍                                                             | 43970/262326 [02:37<13:41, 265.89it/s]


 17%|████████████▍                                                             | 43999/262326 [02:37<13:23, 271.84it/s]


 17%|████████████▍                                                             | 44031/262326 [02:37<12:50, 283.48it/s]


 17%|████████████▍                                                             | 44068/262326 [02:37<12:20, 294.77it/s]


 17%|████████████▍                                                             | 44101/262326 [02:37<12:02, 301.96it/s]


 17%|████████████▍                                                             | 44139/262326 [02:38<11:42, 310.64it/s]


 17%|████████████▍                                                             | 44172/262326 [02:38<11:36, 313.35it/s]


 17%|████████████▍                                                             | 44205/262326 [02:38<11:26, 317.63it/s]


 17%|████████████▍                                                             | 44237/262326 [02:38<11:38, 312.09it/s]


 17%|████████████▍                                                             | 44269/262326 [02:38<12:21, 294.08it/s]


 17%|████████████▍                                                             | 44303/262326 [02:38<11:56, 304.29it/s]


 17%|████████████▌                                                             | 44341/262326 [02:38<11:39, 311.53it/s]


 17%|████████████▌                                                             | 44373/262326 [02:38<11:36, 312.85it/s]


 17%|████████████▌                                                             | 44411/262326 [02:38<11:26, 317.52it/s]


 17%|████████████▌                                                             | 44443/262326 [02:38<11:30, 315.44it/s]


 17%|████████████▌                                                             | 44475/262326 [02:39<11:37, 312.23it/s]


 17%|████████████▌                                                             | 44507/262326 [02:39<11:51, 306.19it/s]


 17%|████████████▌                                                             | 44538/262326 [02:39<11:59, 302.71it/s]


 17%|████████████▌                                                             | 44572/262326 [02:39<11:57, 303.52it/s]


 17%|████████████▌                                                             | 44603/262326 [02:39<11:54, 304.70it/s]


 17%|████████████▌                                                             | 44634/262326 [02:39<12:25, 292.01it/s]


 17%|████████████▌                                                             | 44665/262326 [02:39<12:17, 295.14it/s]


 17%|████████████▌                                                             | 44704/262326 [02:39<11:48, 307.24it/s]


 17%|████████████▌                                                             | 44736/262326 [02:39<11:42, 309.95it/s]


 17%|████████████▋                                                             | 44773/262326 [02:40<11:33, 313.56it/s]


 17%|████████████▋                                                             | 44805/262326 [02:40<11:38, 311.59it/s]


 17%|████████████▋                                                             | 44837/262326 [02:40<12:53, 281.27it/s]


 17%|████████████▋                                                             | 44866/262326 [02:40<13:50, 261.81it/s]


 17%|████████████▋                                                             | 44899/262326 [02:40<13:25, 269.80it/s]


 17%|████████████▋                                                             | 44935/262326 [02:40<12:52, 281.39it/s]


 17%|████████████▋                                                             | 44966/262326 [02:40<12:35, 287.84it/s]


 17%|████████████▋                                                             | 44996/262326 [02:40<14:04, 257.40it/s]


 17%|████████████▋                                                             | 45023/262326 [02:41<14:10, 255.42it/s]


 17%|████████████▋                                                             | 45050/262326 [02:41<14:22, 251.85it/s]


 17%|████████████▋                                                             | 45080/262326 [02:41<13:45, 263.24it/s]


 17%|████████████▋                                                             | 45107/262326 [02:41<13:57, 259.36it/s]


 17%|████████████▋                                                             | 45134/262326 [02:41<14:48, 244.54it/s]


 17%|████████████▋                                                             | 45161/262326 [02:41<14:22, 251.65it/s]


 17%|████████████▋                                                             | 45187/262326 [02:41<14:32, 248.97it/s]


 17%|████████████▊                                                             | 45213/262326 [02:41<14:37, 247.35it/s]


 17%|████████████▊                                                             | 45244/262326 [02:41<13:53, 260.36it/s]


 17%|████████████▊                                                             | 45282/262326 [02:41<13:01, 277.87it/s]


 17%|████████████▊                                                             | 45311/262326 [02:42<13:25, 269.51it/s]


 17%|████████████▊                                                             | 45339/262326 [02:42<13:56, 259.52it/s]


 17%|████████████▊                                                             | 45366/262326 [02:42<14:40, 246.31it/s]


 17%|████████████▊                                                             | 45392/262326 [02:42<14:53, 242.74it/s]


 17%|████████████▊                                                             | 45423/262326 [02:42<14:01, 257.88it/s]


 17%|████████████▊                                                             | 45454/262326 [02:42<13:20, 270.88it/s]


 17%|████████████▊                                                             | 45482/262326 [02:42<13:54, 259.85it/s]


 17%|████████████▊                                                             | 45509/262326 [02:42<14:25, 250.62it/s]


 17%|████████████▊                                                             | 45544/262326 [02:43<13:40, 264.36it/s]


 17%|████████████▊                                                             | 45576/262326 [02:43<12:57, 278.70it/s]


 17%|████████████▊                                                             | 45605/262326 [02:43<13:23, 269.75it/s]


 17%|████████████▊                                                             | 45633/262326 [02:43<14:21, 251.67it/s]


 17%|████████████▉                                                             | 45661/262326 [02:43<14:08, 255.31it/s]


 17%|████████████▉                                                             | 45693/262326 [02:43<13:19, 271.00it/s]


 17%|████████████▉                                                             | 45721/262326 [02:43<14:01, 257.31it/s]


 17%|████████████▉                                                             | 45751/262326 [02:43<13:48, 261.40it/s]


 17%|████████████▉                                                             | 45784/262326 [02:43<12:56, 278.77it/s]


 17%|████████████▉                                                             | 45815/262326 [02:44<12:53, 279.83it/s]


 17%|████████████▉                                                             | 45844/262326 [02:44<13:10, 274.00it/s]


 17%|████████████▉                                                             | 45872/262326 [02:44<14:22, 250.82it/s]


 17%|████████████▉                                                             | 45898/262326 [02:44<14:57, 241.05it/s]


 18%|████████████▉                                                             | 45935/262326 [02:44<13:41, 263.55it/s]


 18%|████████████▉                                                             | 45966/262326 [02:44<13:06, 274.99it/s]


 18%|████████████▉                                                             | 45996/262326 [02:44<12:53, 279.69it/s]


 18%|████████████▉                                                             | 46029/262326 [02:44<12:19, 292.33it/s]


 18%|████████████▉                                                             | 46059/262326 [02:44<15:59, 225.38it/s]


 18%|█████████████                                                             | 46085/262326 [02:45<15:40, 229.93it/s]


 18%|█████████████                                                             | 46111/262326 [02:45<15:15, 236.15it/s]


 18%|█████████████                                                             | 46141/262326 [02:45<14:27, 249.32it/s]


 18%|█████████████                                                             | 46173/262326 [02:45<13:31, 266.52it/s]


 18%|█████████████                                                             | 46204/262326 [02:45<13:00, 276.91it/s]


 18%|█████████████                                                             | 46233/262326 [02:45<13:20, 269.85it/s]


 18%|█████████████                                                             | 46261/262326 [02:45<13:45, 261.60it/s]


 18%|█████████████                                                             | 46288/262326 [02:45<13:56, 258.20it/s]


 18%|█████████████                                                             | 46315/262326 [02:45<14:25, 249.53it/s]


 18%|█████████████                                                             | 46349/262326 [02:46<13:26, 267.88it/s]


 18%|█████████████                                                             | 46377/262326 [02:46<13:22, 268.94it/s]


 18%|█████████████                                                             | 46405/262326 [02:46<14:18, 251.51it/s]


 18%|█████████████                                                             | 46434/262326 [02:46<13:50, 260.00it/s]


 18%|█████████████                                                             | 46466/262326 [02:46<13:09, 273.57it/s]


 18%|█████████████                                                             | 46499/262326 [02:46<12:33, 286.32it/s]


 18%|█████████████▏                                                            | 46531/262326 [02:46<12:15, 293.44it/s]


 18%|█████████████▏                                                            | 46562/262326 [02:46<12:07, 296.45it/s]


 18%|█████████████▏                                                            | 46593/262326 [02:46<12:06, 296.82it/s]


 18%|█████████████▏                                                            | 46623/262326 [02:47<12:05, 297.46it/s]


 18%|█████████████▏                                                            | 46653/262326 [02:47<12:04, 297.57it/s]


 18%|█████████████▏                                                            | 46683/262326 [02:47<12:21, 290.74it/s]


 18%|█████████████▏                                                            | 46717/262326 [02:47<12:08, 295.97it/s]


 18%|█████████████▏                                                            | 46748/262326 [02:47<12:03, 298.03it/s]


 18%|█████████████▏                                                            | 46782/262326 [02:47<11:44, 305.80it/s]


 18%|█████████████▏                                                            | 46813/262326 [02:47<12:35, 285.31it/s]


 18%|█████████████▏                                                            | 46842/262326 [02:47<13:41, 262.22it/s]


 18%|█████████████▏                                                            | 46869/262326 [02:47<14:16, 251.45it/s]


 18%|█████████████▏                                                            | 46904/262326 [02:48<13:10, 272.41it/s]


 18%|█████████████▏                                                            | 46944/262326 [02:48<12:20, 291.01it/s]


 18%|█████████████▎                                                            | 46975/262326 [02:48<13:03, 274.83it/s]


 18%|█████████████▎                                                            | 47004/262326 [02:48<13:34, 264.22it/s]


 18%|█████████████▎                                                            | 47033/262326 [02:48<13:14, 270.90it/s]


 18%|█████████████▎                                                            | 47062/262326 [02:48<13:02, 274.98it/s]


 18%|█████████████▎                                                            | 47090/262326 [02:48<13:00, 275.87it/s]


 18%|█████████████▎                                                            | 47118/262326 [02:48<13:16, 270.11it/s]


 18%|█████████████▎                                                            | 47154/262326 [02:48<12:32, 285.86it/s]


 18%|█████████████▎                                                            | 47183/262326 [02:49<12:31, 286.46it/s]


 18%|█████████████▎                                                            | 47213/262326 [02:49<12:24, 289.10it/s]


 18%|█████████████▎                                                            | 47243/262326 [02:49<12:32, 285.70it/s]


 18%|█████████████▎                                                            | 47272/262326 [02:49<12:40, 282.94it/s]


 18%|█████████████▎                                                            | 47304/262326 [02:49<12:22, 289.56it/s]


 18%|█████████████▎                                                            | 47335/262326 [02:49<12:11, 293.91it/s]


 18%|█████████████▎                                                            | 47372/262326 [02:49<11:51, 302.16it/s]


 18%|█████████████▎                                                            | 47403/262326 [02:49<12:16, 291.73it/s]


 18%|█████████████▍                                                            | 47433/262326 [02:49<12:14, 292.64it/s]


 18%|█████████████▍                                                            | 47463/262326 [02:49<12:10, 294.27it/s]


 18%|█████████████▍                                                            | 47493/262326 [02:50<12:07, 295.43it/s]


 18%|█████████████▍                                                            | 47523/262326 [02:50<12:04, 296.45it/s]


 18%|█████████████▍                                                            | 47553/262326 [02:50<12:40, 282.43it/s]


 18%|█████████████▍                                                            | 47582/262326 [02:50<13:00, 275.16it/s]


 18%|█████████████▍                                                            | 47615/262326 [02:50<12:26, 287.75it/s]


 18%|█████████████▍                                                            | 47652/262326 [02:50<12:02, 297.15it/s]


 18%|█████████████▍                                                            | 47682/262326 [02:50<13:09, 271.90it/s]


 18%|█████████████▍                                                            | 47713/262326 [02:50<12:44, 280.73it/s]


 18%|█████████████▍                                                            | 47744/262326 [02:50<12:23, 288.50it/s]


 18%|█████████████▍                                                            | 47778/262326 [02:51<12:17, 290.74it/s]


 18%|█████████████▍                                                            | 47810/262326 [02:51<12:03, 296.65it/s]


 18%|█████████████▍                                                            | 47842/262326 [02:51<11:52, 301.05it/s]


 18%|█████████████▌                                                            | 47875/262326 [02:51<11:58, 298.44it/s]


 18%|█████████████▌                                                            | 47905/262326 [02:51<11:58, 298.27it/s]


 18%|█████████████▌                                                            | 47935/262326 [02:51<13:09, 271.65it/s]


 18%|█████████████▌                                                            | 47963/262326 [02:51<13:06, 272.47it/s]


 18%|█████████████▌                                                            | 48001/262326 [02:51<12:21, 288.93it/s]


 18%|█████████████▌                                                            | 48034/262326 [02:51<12:01, 297.10it/s]


 18%|█████████████▌                                                            | 48072/262326 [02:52<11:37, 307.06it/s]


 18%|█████████████▌                                                            | 48104/262326 [02:52<11:30, 310.20it/s]


 18%|█████████████▌                                                            | 48136/262326 [02:52<11:56, 298.88it/s]


 18%|█████████████▌                                                            | 48167/262326 [02:52<11:51, 301.14it/s]


 18%|█████████████▌                                                            | 48198/262326 [02:52<11:45, 303.71it/s]


 18%|█████████████▌                                                            | 48229/262326 [02:52<11:42, 304.63it/s]


 18%|█████████████▌                                                            | 48265/262326 [02:52<11:38, 306.66it/s]


 18%|█████████████▋                                                            | 48302/262326 [02:52<11:29, 310.55it/s]


 18%|█████████████▋                                                            | 48334/262326 [02:52<11:56, 298.81it/s]


 18%|█████████████▋                                                            | 48367/262326 [02:53<11:40, 305.33it/s]


 18%|█████████████▋                                                            | 48404/262326 [02:53<11:27, 311.19it/s]


 18%|█████████████▋                                                            | 48436/262326 [02:53<11:30, 309.57it/s]


 18%|█████████████▋                                                            | 48468/262326 [02:53<11:37, 306.54it/s]


 18%|█████████████▋                                                            | 48503/262326 [02:53<11:26, 311.48it/s]


 19%|█████████████▋                                                            | 48535/262326 [02:53<11:25, 312.00it/s]


 19%|█████████████▋                                                            | 48567/262326 [02:53<11:47, 302.08it/s]


 19%|█████████████▋                                                            | 48598/262326 [02:53<11:44, 303.23it/s]


 19%|█████████████▋                                                            | 48629/262326 [02:53<11:41, 304.73it/s]


 19%|█████████████▋                                                            | 48660/262326 [02:53<11:38, 306.07it/s]


 19%|█████████████▋                                                            | 48694/262326 [02:54<11:44, 303.07it/s]


 19%|█████████████▋                                                            | 48726/262326 [02:54<11:40, 304.73it/s]


 19%|█████████████▊                                                            | 48758/262326 [02:54<11:34, 307.72it/s]


 19%|█████████████▊                                                            | 48792/262326 [02:54<12:08, 293.17it/s]


 19%|█████████████▊                                                            | 48824/262326 [02:54<11:51, 299.90it/s]


 19%|█████████████▊                                                            | 48856/262326 [02:54<11:39, 304.96it/s]


 19%|█████████████▊                                                            | 48892/262326 [02:54<11:33, 307.60it/s]


 19%|█████████████▊                                                            | 48925/262326 [02:54<11:24, 311.98it/s]


 19%|█████████████▊                                                            | 48957/262326 [02:54<11:27, 310.18it/s]


 19%|█████████████▊                                                            | 48989/262326 [02:55<11:42, 303.53it/s]


 19%|█████████████▊                                                            | 49020/262326 [02:55<12:14, 290.59it/s]


 19%|█████████████▊                                                            | 49052/262326 [02:55<11:58, 296.89it/s]


 19%|█████████████▊                                                            | 49082/262326 [02:55<12:22, 287.22it/s]


 19%|█████████████▊                                                            | 49112/262326 [02:55<12:19, 288.15it/s]


 19%|█████████████▊                                                            | 49143/262326 [02:55<12:04, 294.36it/s]


 19%|█████████████▊                                                            | 49179/262326 [02:55<11:51, 299.57it/s]


 19%|█████████████▉                                                            | 49217/262326 [02:55<11:32, 307.75it/s]


 19%|█████████████▉                                                            | 49249/262326 [02:55<11:30, 308.77it/s]


 19%|█████████████▉                                                            | 49285/262326 [02:56<11:27, 309.73it/s]


 19%|█████████████▉                                                            | 49323/262326 [02:56<11:15, 315.22it/s]


 19%|█████████████▉                                                            | 49355/262326 [02:56<11:22, 311.84it/s]


 19%|█████████████▉                                                            | 49388/262326 [02:56<11:37, 305.13it/s]


 19%|█████████████▉                                                            | 49419/262326 [02:56<12:09, 292.02it/s]


 19%|█████████████▉                                                            | 49449/262326 [02:56<12:04, 293.79it/s]


 19%|█████████████▉                                                            | 49479/262326 [02:56<12:33, 282.42it/s]


 19%|█████████████▉                                                            | 49508/262326 [02:56<13:04, 271.19it/s]


 19%|█████████████▉                                                            | 49536/262326 [02:56<13:02, 271.98it/s]


 19%|█████████████▉                                                            | 49566/262326 [02:57<13:10, 269.18it/s]


 19%|█████████████▉                                                            | 49598/262326 [02:57<12:35, 281.61it/s]


 19%|█████████████▉                                                            | 49629/262326 [02:57<12:20, 287.26it/s]


 19%|██████████████                                                            | 49658/262326 [02:57<12:35, 281.60it/s]


 19%|██████████████                                                            | 49692/262326 [02:57<12:07, 292.19it/s]


 19%|██████████████                                                            | 49724/262326 [02:57<11:53, 298.12it/s]


 19%|██████████████                                                            | 49760/262326 [02:57<11:41, 303.12it/s]


 19%|██████████████                                                            | 49791/262326 [02:57<11:38, 304.25it/s]


 19%|██████████████                                                            | 49827/262326 [02:57<11:32, 306.99it/s]


 19%|██████████████                                                            | 49858/262326 [02:57<11:31, 307.31it/s]


 19%|██████████████                                                            | 49890/262326 [02:58<11:24, 310.23it/s]


 19%|██████████████                                                            | 49922/262326 [02:58<11:20, 312.06it/s]


 19%|██████████████                                                            | 49954/262326 [02:58<11:53, 297.64it/s]


 19%|██████████████                                                            | 49991/262326 [02:58<11:32, 306.48it/s]


 19%|██████████████                                                            | 50023/262326 [02:58<11:27, 308.60it/s]


 19%|██████████████                                                            | 50060/262326 [02:58<11:18, 312.92it/s]


 19%|██████████████▏                                                           | 50092/262326 [02:58<11:16, 313.81it/s]


 19%|██████████████▏                                                           | 50129/262326 [02:58<11:10, 316.27it/s]


 19%|██████████████▏                                                           | 50162/262326 [02:58<11:07, 317.85it/s]


 19%|██████████████▏                                                           | 50194/262326 [02:59<11:36, 304.65it/s]


 19%|██████████████▏                                                           | 50226/262326 [02:59<11:31, 306.77it/s]


 19%|██████████████▏                                                           | 50257/262326 [02:59<11:38, 303.56it/s]


 19%|██████████████▏                                                           | 50289/262326 [02:59<11:47, 299.82it/s]


 19%|██████████████▏                                                           | 50320/262326 [02:59<11:41, 302.05it/s]


 19%|██████████████▏                                                           | 50351/262326 [02:59<13:45, 256.89it/s]


 19%|██████████████▏                                                           | 50378/262326 [02:59<13:49, 255.66it/s]


 19%|██████████████▏                                                           | 50406/262326 [02:59<13:28, 262.24it/s]


 19%|██████████████▏                                                           | 50438/262326 [02:59<12:47, 276.24it/s]


 19%|██████████████▏                                                           | 50474/262326 [03:00<12:41, 278.09it/s]


 19%|██████████████▏                                                           | 50504/262326 [03:00<12:28, 282.91it/s]


 19%|██████████████▎                                                           | 50536/262326 [03:00<12:04, 292.17it/s]


 19%|██████████████▎                                                           | 50566/262326 [03:00<12:01, 293.50it/s]


 19%|██████████████▎                                                           | 50596/262326 [03:00<13:15, 266.05it/s]


 19%|██████████████▎                                                           | 50631/262326 [03:00<12:39, 278.60it/s]


 19%|██████████████▎                                                           | 50662/262326 [03:00<12:19, 286.36it/s]


 19%|██████████████▎                                                           | 50699/262326 [03:00<11:53, 296.61it/s]


 19%|██████████████▎                                                           | 50731/262326 [03:00<11:41, 301.54it/s]


 19%|██████████████▎                                                           | 50764/262326 [03:01<11:49, 298.23it/s]


 19%|██████████████▎                                                           | 50795/262326 [03:01<16:16, 216.62it/s]


 19%|██████████████▎                                                           | 50823/262326 [03:01<15:15, 231.06it/s]


 19%|██████████████▎                                                           | 50854/262326 [03:01<14:06, 249.78it/s]


 19%|██████████████▎                                                           | 50889/262326 [03:01<13:19, 264.34it/s]


 19%|██████████████▎                                                           | 50921/262326 [03:01<13:13, 266.48it/s]


 19%|██████████████▎                                                           | 50953/262326 [03:01<12:33, 280.36it/s]


 19%|██████████████▍                                                           | 50983/262326 [03:01<12:51, 274.03it/s]


 19%|██████████████▍                                                           | 51015/262326 [03:02<12:21, 284.82it/s]


 19%|██████████████▍                                                           | 51045/262326 [03:02<12:12, 288.25it/s]


 19%|██████████████▍                                                           | 51075/262326 [03:02<12:15, 287.18it/s]


 19%|██████████████▍                                                           | 51105/262326 [03:02<13:38, 258.21it/s]


 19%|██████████████▍                                                           | 51132/262326 [03:02<13:28, 261.11it/s]


 20%|██████████████▍                                                           | 51159/262326 [03:02<13:23, 262.86it/s]


 20%|██████████████▍                                                           | 51192/262326 [03:02<13:03, 269.63it/s]


 20%|██████████████▍                                                           | 51223/262326 [03:02<12:33, 280.22it/s]


 20%|██████████████▍                                                           | 51255/262326 [03:02<12:08, 289.67it/s]


 20%|██████████████▍                                                           | 51294/262326 [03:03<11:36, 303.09it/s]


 20%|██████████████▍                                                           | 51325/262326 [03:03<11:33, 304.45it/s]


 20%|██████████████▍                                                           | 51357/262326 [03:03<11:28, 306.34it/s]


 20%|██████████████▍                                                           | 51391/262326 [03:03<11:33, 304.16it/s]


 20%|██████████████▌                                                           | 51422/262326 [03:03<12:03, 291.60it/s]


 20%|██████████████▌                                                           | 51452/262326 [03:03<11:58, 293.33it/s]


 20%|██████████████▌                                                           | 51488/262326 [03:03<11:45, 298.92it/s]


 20%|██████████████▌                                                           | 51519/262326 [03:03<11:40, 301.07it/s]


 20%|██████████████▌                                                           | 51550/262326 [03:03<11:36, 302.57it/s]


 20%|██████████████▌                                                           | 51581/262326 [03:04<12:34, 279.50it/s]


 20%|██████████████▌                                                           | 51610/262326 [03:04<12:31, 280.27it/s]


 20%|██████████████▌                                                           | 51640/262326 [03:04<12:19, 284.94it/s]


 20%|██████████████▌                                                           | 51672/262326 [03:04<12:22, 283.58it/s]


 20%|██████████████▌                                                           | 51703/262326 [03:04<12:05, 290.31it/s]


 20%|██████████████▌                                                           | 51733/262326 [03:04<11:58, 293.08it/s]


 20%|██████████████▌                                                           | 51768/262326 [03:04<11:49, 296.60it/s]


 20%|██████████████▌                                                           | 51800/262326 [03:04<11:37, 301.84it/s]


 20%|██████████████▌                                                           | 51832/262326 [03:04<11:27, 306.32it/s]


 20%|██████████████▋                                                           | 51863/262326 [03:04<11:59, 292.45it/s]


 20%|██████████████▋                                                           | 51899/262326 [03:05<11:45, 298.25it/s]


 20%|██████████████▋                                                           | 51931/262326 [03:05<11:33, 303.37it/s]


 20%|██████████████▋                                                           | 51962/262326 [03:05<11:32, 303.80it/s]


 20%|██████████████▋                                                           | 51996/262326 [03:05<11:36, 301.85it/s]


 20%|██████████████▋                                                           | 52033/262326 [03:05<11:24, 307.33it/s]


 20%|██████████████▋                                                           | 52066/262326 [03:05<11:13, 312.22it/s]


 20%|██████████████▋                                                           | 52106/262326 [03:05<10:53, 321.74it/s]


 20%|██████████████▋                                                           | 52139/262326 [03:05<10:51, 322.86it/s]


 20%|██████████████▋                                                           | 52172/262326 [03:05<10:46, 324.84it/s]


 20%|██████████████▋                                                           | 52205/262326 [03:06<10:45, 325.41it/s]


 20%|██████████████▋                                                           | 52238/262326 [03:06<11:17, 310.18it/s]


 20%|██████████████▋                                                           | 52270/262326 [03:06<11:33, 302.84it/s]


 20%|██████████████▊                                                           | 52301/262326 [03:06<11:34, 302.58it/s]


 20%|██████████████▊                                                           | 52332/262326 [03:06<11:33, 302.92it/s]


 20%|██████████████▊                                                           | 52363/262326 [03:06<12:00, 291.46it/s]


 20%|██████████████▊                                                           | 52399/262326 [03:06<12:40, 276.04it/s]


 20%|██████████████▊                                                           | 52428/262326 [03:06<12:38, 276.75it/s]


 20%|██████████████▊                                                           | 52457/262326 [03:06<12:28, 280.44it/s]


 20%|██████████████▊                                                           | 52486/262326 [03:07<12:21, 282.80it/s]


 20%|██████████████▊                                                           | 52517/262326 [03:07<12:05, 289.37it/s]


 20%|██████████████▊                                                           | 52549/262326 [03:07<11:47, 296.48it/s]


 20%|██████████████▊                                                           | 52582/262326 [03:07<11:49, 295.81it/s]


 20%|██████████████▊                                                           | 52614/262326 [03:07<11:35, 301.35it/s]


 20%|██████████████▊                                                           | 52652/262326 [03:07<11:16, 310.05it/s]


 20%|██████████████▊                                                           | 52685/262326 [03:07<11:09, 313.27it/s]


 20%|██████████████▊                                                           | 52721/262326 [03:07<11:07, 313.87it/s]


 20%|██████████████▉                                                           | 52753/262326 [03:07<11:07, 314.17it/s]


 20%|██████████████▉                                                           | 52785/262326 [03:07<11:05, 314.98it/s]


 20%|██████████████▉                                                           | 52817/262326 [03:08<13:36, 256.67it/s]


 20%|██████████████▉                                                           | 52845/262326 [03:08<13:47, 253.12it/s]


 20%|██████████████▉                                                           | 52877/262326 [03:08<13:09, 265.14it/s]


 20%|██████████████▉                                                           | 52908/262326 [03:08<12:39, 275.89it/s]


 20%|██████████████▉                                                           | 52945/262326 [03:08<12:05, 288.79it/s]


 20%|██████████████▉                                                           | 52976/262326 [03:08<11:53, 293.60it/s]


 20%|██████████████▉                                                           | 53007/262326 [03:08<11:43, 297.59it/s]


 20%|██████████████▉                                                           | 53041/262326 [03:08<11:42, 297.99it/s]


 20%|██████████████▉                                                           | 53073/262326 [03:09<11:30, 302.91it/s]


 20%|██████████████▉                                                           | 53104/262326 [03:09<11:28, 303.87it/s]


 20%|██████████████▉                                                           | 53135/262326 [03:09<11:41, 298.18it/s]


 20%|██████████████▉                                                           | 53165/262326 [03:09<11:52, 293.71it/s]


 20%|███████████████                                                           | 53198/262326 [03:09<11:30, 302.78it/s]


 20%|███████████████                                                           | 53229/262326 [03:09<11:34, 300.97it/s]


 20%|███████████████                                                           | 53260/262326 [03:09<12:58, 268.52it/s]


 20%|███████████████                                                           | 53292/262326 [03:09<12:23, 281.17it/s]


 20%|███████████████                                                           | 53323/262326 [03:09<12:03, 288.70it/s]


 20%|███████████████                                                           | 53353/262326 [03:09<11:55, 291.98it/s]


 20%|███████████████                                                           | 53384/262326 [03:10<11:47, 295.25it/s]


 20%|███████████████                                                           | 53420/262326 [03:10<11:32, 301.46it/s]


 20%|███████████████                                                           | 53451/262326 [03:10<11:38, 299.16it/s]


 20%|███████████████                                                           | 53486/262326 [03:10<11:30, 302.58it/s]


 20%|███████████████                                                           | 53520/262326 [03:10<11:34, 300.66it/s]


 20%|███████████████                                                           | 53552/262326 [03:10<11:26, 304.07it/s]


 20%|███████████████                                                           | 53590/262326 [03:10<11:10, 311.28it/s]


 20%|███████████████▏                                                          | 53622/262326 [03:10<11:08, 312.40it/s]


 20%|███████████████▏                                                          | 53654/262326 [03:10<11:38, 298.71it/s]


 20%|███████████████▏                                                          | 53687/262326 [03:11<11:46, 295.26it/s]


 20%|███████████████▏                                                          | 53723/262326 [03:11<11:36, 299.50it/s]


 20%|███████████████▏                                                          | 53755/262326 [03:11<11:43, 296.40it/s]


 21%|███████████████▏                                                          | 53788/262326 [03:11<11:35, 299.91it/s]


 21%|███████████████▏                                                          | 53819/262326 [03:11<11:30, 302.08it/s]


 21%|███████████████▏                                                          | 53857/262326 [03:11<11:11, 310.48it/s]


 21%|███████████████▏                                                          | 53889/262326 [03:11<11:13, 309.68it/s]


 21%|███████████████▏                                                          | 53925/262326 [03:11<11:08, 311.58it/s]


 21%|███████████████▏                                                          | 53957/262326 [03:11<11:08, 311.66it/s]


 21%|███████████████▏                                                          | 53993/262326 [03:12<11:07, 311.89it/s]


 21%|███████████████▏                                                          | 54025/262326 [03:12<11:06, 312.61it/s]


 21%|███████████████▏                                                          | 54057/262326 [03:12<11:23, 304.54it/s]


 21%|███████████████▎                                                          | 54088/262326 [03:12<11:29, 302.11it/s]


 21%|███████████████▎                                                          | 54120/262326 [03:12<11:18, 306.73it/s]


 21%|███████████████▎                                                          | 54157/262326 [03:12<11:09, 310.89it/s]


 21%|███████████████▎                                                          | 54189/262326 [03:12<11:03, 313.51it/s]


 21%|███████████████▎                                                          | 54221/262326 [03:12<11:31, 300.88it/s]


 21%|███████████████▎                                                          | 54252/262326 [03:12<11:26, 302.96it/s]


 21%|███████████████▎                                                          | 54283/262326 [03:13<11:55, 290.66it/s]


 21%|███████████████▎                                                          | 54313/262326 [03:13<12:12, 284.04it/s]


 21%|███████████████▎                                                          | 54343/262326 [03:13<12:04, 287.03it/s]


 21%|███████████████▎                                                          | 54372/262326 [03:13<12:07, 285.72it/s]


 21%|███████████████▎                                                          | 54401/262326 [03:13<12:34, 275.59it/s]


 21%|███████████████▎                                                          | 54432/262326 [03:13<12:10, 284.54it/s]


 21%|███████████████▎                                                          | 54464/262326 [03:13<11:51, 292.17it/s]


 21%|███████████████▎                                                          | 54494/262326 [03:13<11:57, 289.68it/s]


 21%|███████████████▍                                                          | 54524/262326 [03:13<11:54, 290.99it/s]


 21%|███████████████▍                                                          | 54555/262326 [03:13<11:45, 294.51it/s]


 21%|███████████████▍                                                          | 54587/262326 [03:14<11:34, 299.32it/s]


 21%|███████████████▍                                                          | 54619/262326 [03:14<11:25, 302.89it/s]


 21%|███████████████▍                                                          | 54650/262326 [03:14<11:56, 289.84it/s]


 21%|███████████████▍                                                          | 54680/262326 [03:14<11:51, 291.74it/s]


 21%|███████████████▍                                                          | 54710/262326 [03:14<12:04, 286.42it/s]


 21%|███████████████▍                                                          | 54746/262326 [03:14<11:31, 300.20it/s]


 21%|███████████████▍                                                          | 54779/262326 [03:14<11:22, 304.01it/s]


 21%|███████████████▍                                                          | 54816/262326 [03:14<11:08, 310.48it/s]


 21%|███████████████▍                                                          | 54848/262326 [03:14<11:58, 288.71it/s]


 21%|███████████████▍                                                          | 54878/262326 [03:15<12:08, 284.61it/s]


 21%|███████████████▍                                                          | 54915/262326 [03:15<11:40, 295.91it/s]


 21%|███████████████▍                                                          | 54945/262326 [03:15<12:50, 269.06it/s]


 21%|███████████████▌                                                          | 54973/262326 [03:15<13:18, 259.61it/s]


 21%|███████████████▌                                                          | 55004/262326 [03:15<12:42, 272.06it/s]


 21%|███████████████▌                                                          | 55035/262326 [03:15<12:17, 281.10it/s]


 21%|███████████████▌                                                          | 55071/262326 [03:15<11:48, 292.71it/s]


 21%|███████████████▌                                                          | 55102/262326 [03:15<11:37, 297.20it/s]


 21%|███████████████▌                                                          | 55133/262326 [03:15<11:29, 300.51it/s]


 21%|███████████████▌                                                          | 55164/262326 [03:16<11:26, 301.85it/s]


 21%|███████████████▌                                                          | 55196/262326 [03:16<11:41, 295.22it/s]


 21%|███████████████▌                                                          | 55226/262326 [03:16<12:19, 279.94it/s]


 21%|███████████████▌                                                          | 55255/262326 [03:16<13:15, 260.41it/s]


 21%|███████████████▌                                                          | 55284/262326 [03:16<12:53, 267.84it/s]


 21%|███████████████▌                                                          | 55316/262326 [03:16<12:18, 280.23it/s]


 21%|███████████████▌                                                          | 55346/262326 [03:16<12:04, 285.73it/s]


 21%|███████████████▌                                                          | 55380/262326 [03:16<11:57, 288.52it/s]


 21%|███████████████▋                                                          | 55412/262326 [03:16<11:40, 295.32it/s]


 21%|███████████████▋                                                          | 55442/262326 [03:17<12:07, 284.54it/s]


 21%|███████████████▋                                                          | 55474/262326 [03:17<11:46, 292.72it/s]


 21%|███████████████▋                                                          | 55504/262326 [03:17<12:00, 287.15it/s]


 21%|███████████████▋                                                          | 55536/262326 [03:17<11:53, 289.71it/s]


 21%|███████████████▋                                                          | 55572/262326 [03:17<11:36, 296.71it/s]


 21%|███████████████▋                                                          | 55604/262326 [03:17<11:26, 301.05it/s]


 21%|███████████████▋                                                          | 55635/262326 [03:17<13:58, 246.65it/s]


 21%|███████████████▋                                                          | 55662/262326 [03:17<14:19, 240.51it/s]


 21%|███████████████▋                                                          | 55689/262326 [03:18<13:56, 247.00it/s]


 21%|███████████████▋                                                          | 55717/262326 [03:18<13:28, 255.48it/s]


 21%|███████████████▋                                                          | 55748/262326 [03:18<12:46, 269.36it/s]


 21%|███████████████▋                                                          | 55780/262326 [03:18<12:40, 271.66it/s]


 21%|███████████████▋                                                          | 55815/262326 [03:18<12:16, 280.57it/s]


 21%|███████████████▊                                                          | 55846/262326 [03:18<11:57, 287.69it/s]


 21%|███████████████▊                                                          | 55882/262326 [03:18<11:40, 294.67it/s]


 21%|███████████████▊                                                          | 55913/262326 [03:18<11:32, 297.98it/s]


 21%|███████████████▊                                                          | 55947/262326 [03:18<11:35, 296.87it/s]


 21%|███████████████▊                                                          | 55979/262326 [03:18<11:22, 302.35it/s]


 21%|███████████████▊                                                          | 56010/262326 [03:19<11:18, 304.08it/s]


 21%|███████████████▊                                                          | 56045/262326 [03:19<11:17, 304.30it/s]


 21%|███████████████▊                                                          | 56076/262326 [03:19<11:14, 305.61it/s]


 21%|███████████████▊                                                          | 56107/262326 [03:19<11:14, 305.56it/s]


 21%|███████████████▊                                                          | 56138/262326 [03:19<11:42, 293.41it/s]


 21%|███████████████▊                                                          | 56169/262326 [03:19<11:33, 297.10it/s]


 21%|███████████████▊                                                          | 56199/262326 [03:19<12:11, 281.73it/s]


 21%|███████████████▊                                                          | 56228/262326 [03:19<12:33, 273.60it/s]


 21%|███████████████▊                                                          | 56257/262326 [03:19<12:24, 276.91it/s]


 21%|███████████████▉                                                          | 56289/262326 [03:20<11:54, 288.47it/s]


 21%|███████████████▉                                                          | 56326/262326 [03:20<11:30, 298.26it/s]


 21%|███████████████▉                                                          | 56357/262326 [03:20<11:27, 299.74it/s]


 21%|███████████████▉                                                          | 56390/262326 [03:20<11:35, 295.95it/s]


 22%|███████████████▉                                                          | 56423/262326 [03:20<11:16, 304.51it/s]


 22%|███████████████▉                                                          | 56455/262326 [03:20<11:08, 308.11it/s]


 22%|███████████████▉                                                          | 56491/262326 [03:20<11:03, 310.14it/s]


 22%|███████████████▉                                                          | 56524/262326 [03:20<10:53, 314.81it/s]


 22%|███████████████▉                                                          | 56556/262326 [03:20<10:54, 314.50it/s]


 22%|███████████████▉                                                          | 56592/262326 [03:21<10:54, 314.34it/s]


 22%|███████████████▉                                                          | 56624/262326 [03:21<10:52, 315.30it/s]


 22%|███████████████▉                                                          | 56659/262326 [03:21<11:00, 311.55it/s]


 22%|███████████████▉                                                          | 56691/262326 [03:21<11:16, 303.89it/s]


 22%|████████████████                                                          | 56723/262326 [03:21<11:17, 303.49it/s]


 22%|████████████████                                                          | 56755/262326 [03:21<11:11, 306.34it/s]


 22%|████████████████                                                          | 56793/262326 [03:21<10:55, 313.37it/s]


 22%|████████████████                                                          | 56825/262326 [03:21<10:54, 314.07it/s]


 22%|████████████████                                                          | 56862/262326 [03:21<10:50, 315.89it/s]


 22%|████████████████                                                          | 56894/262326 [03:21<10:49, 316.06it/s]


 22%|████████████████                                                          | 56926/262326 [03:22<10:48, 316.57it/s]


 22%|████████████████                                                          | 56958/262326 [03:22<10:52, 314.62it/s]


 22%|████████████████                                                          | 56990/262326 [03:22<11:31, 297.07it/s]


 22%|████████████████                                                          | 57025/262326 [03:22<11:14, 304.55it/s]


 22%|████████████████                                                          | 57056/262326 [03:22<11:12, 305.27it/s]


 22%|████████████████                                                          | 57087/262326 [03:22<11:10, 306.16it/s]


 22%|████████████████                                                          | 57118/262326 [03:22<11:10, 306.11it/s]


 22%|████████████████                                                          | 57153/262326 [03:22<11:10, 306.18it/s]


 22%|████████████████▏                                                         | 57184/262326 [03:22<11:10, 305.93it/s]


 22%|████████████████▏                                                         | 57221/262326 [03:23<10:58, 311.44it/s]


 22%|████████████████▏                                                         | 57253/262326 [03:23<13:03, 261.77it/s]


 22%|████████████████▏                                                         | 57283/262326 [03:23<12:58, 263.32it/s]


 22%|████████████████▏                                                         | 57316/262326 [03:23<12:23, 275.70it/s]


 22%|████████████████▏                                                         | 57349/262326 [03:23<12:13, 279.53it/s]


 22%|████████████████▏                                                         | 57381/262326 [03:23<11:48, 289.31it/s]


 22%|████████████████▏                                                         | 57411/262326 [03:23<11:45, 290.65it/s]


 22%|████████████████▏                                                         | 57445/262326 [03:23<11:39, 292.69it/s]


 22%|████████████████▏                                                         | 57476/262326 [03:23<11:28, 297.35it/s]


 22%|████████████████▏                                                         | 57507/262326 [03:24<11:22, 300.18it/s]


 22%|████████████████▏                                                         | 57542/262326 [03:24<11:18, 301.63it/s]


 22%|████████████████▏                                                         | 57573/262326 [03:24<11:20, 300.71it/s]


 22%|████████████████▎                                                         | 57607/262326 [03:24<11:22, 299.88it/s]


 22%|████████████████▎                                                         | 57638/262326 [03:24<12:01, 283.54it/s]


 22%|████████████████▎                                                         | 57674/262326 [03:24<11:33, 295.02it/s]


 22%|████████████████▎                                                         | 57706/262326 [03:24<11:21, 300.44it/s]


 22%|████████████████▎                                                         | 57740/262326 [03:24<11:24, 298.89it/s]


 22%|████████████████▎                                                         | 57772/262326 [03:24<11:12, 303.95it/s]


 22%|████████████████▎                                                         | 57810/262326 [03:25<10:56, 311.45it/s]


 22%|████████████████▎                                                         | 57842/262326 [03:25<10:54, 312.42it/s]


 22%|████████████████▎                                                         | 57874/262326 [03:25<10:59, 310.06it/s]


 22%|████████████████▎                                                         | 57906/262326 [03:25<11:15, 302.79it/s]


 22%|████████████████▎                                                         | 57937/262326 [03:25<11:13, 303.39it/s]


 22%|████████████████▎                                                         | 57972/262326 [03:25<11:11, 304.25it/s]


 22%|████████████████▎                                                         | 58005/262326 [03:25<10:58, 310.50it/s]


 22%|████████████████▎                                                         | 58037/262326 [03:25<11:52, 286.65it/s]


 22%|████████████████▍                                                         | 58067/262326 [03:25<11:47, 288.59it/s]


 22%|████████████████▍                                                         | 58097/262326 [03:26<11:40, 291.75it/s]


 22%|████████████████▍                                                         | 58127/262326 [03:26<11:43, 290.43it/s]


 22%|████████████████▍                                                         | 58157/262326 [03:26<11:41, 291.24it/s]


 22%|████████████████▍                                                         | 58187/262326 [03:26<12:00, 283.28it/s]


 22%|████████████████▍                                                         | 58222/262326 [03:26<11:42, 290.62it/s]


 22%|████████████████▍                                                         | 58252/262326 [03:26<12:03, 282.22it/s]


 22%|████████████████▍                                                         | 58285/262326 [03:26<11:37, 292.71it/s]


 22%|████████████████▍                                                         | 58317/262326 [03:26<11:21, 299.44it/s]


 22%|████████████████▍                                                         | 58354/262326 [03:26<11:07, 305.74it/s]


 22%|████████████████▍                                                         | 58386/262326 [03:26<11:02, 308.01it/s]


 22%|████████████████▍                                                         | 58418/262326 [03:27<11:23, 298.21it/s]


 22%|████████████████▍                                                         | 58449/262326 [03:27<11:22, 298.66it/s]


 22%|████████████████▍                                                         | 58479/262326 [03:27<11:35, 293.22it/s]


 22%|████████████████▌                                                         | 58509/262326 [03:27<11:46, 288.43it/s]


 22%|████████████████▌                                                         | 58544/262326 [03:27<11:35, 292.97it/s]


 22%|████████████████▌                                                         | 58574/262326 [03:27<11:32, 294.07it/s]


 22%|████████████████▌                                                         | 58604/262326 [03:27<11:32, 293.98it/s]


 22%|████████████████▌                                                         | 58635/262326 [03:27<11:22, 298.46it/s]


 22%|████████████████▌                                                         | 58665/262326 [03:27<11:22, 298.28it/s]


 22%|████████████████▌                                                         | 58702/262326 [03:28<11:04, 306.64it/s]


 22%|████████████████▌                                                         | 58734/262326 [03:28<10:57, 309.46it/s]


 22%|████████████████▌                                                         | 58766/262326 [03:28<11:00, 308.29it/s]


 22%|████████████████▌                                                         | 58799/262326 [03:28<11:10, 303.38it/s]


 22%|████████████████▌                                                         | 58832/262326 [03:28<11:22, 298.29it/s]


 22%|████████████████▌                                                         | 58862/262326 [03:28<11:53, 285.25it/s]


 22%|████████████████▌                                                         | 58891/262326 [03:28<11:56, 283.83it/s]


 22%|████████████████▌                                                         | 58926/262326 [03:28<11:39, 290.61it/s]


 22%|████████████████▋                                                         | 58958/262326 [03:28<11:25, 296.83it/s]


 22%|████████████████▋                                                         | 58988/262326 [03:29<12:25, 272.79it/s]


 22%|████████████████▋                                                         | 59016/262326 [03:29<12:27, 272.15it/s]


 23%|████████████████▋                                                         | 59045/262326 [03:29<12:15, 276.34it/s]


 23%|████████████████▋                                                         | 59074/262326 [03:29<12:10, 278.40it/s]


 23%|████████████████▋                                                         | 59106/262326 [03:29<11:48, 286.78it/s]


 23%|████████████████▋                                                         | 59138/262326 [03:29<11:31, 293.80it/s]


 23%|████████████████▋                                                         | 59168/262326 [03:29<11:28, 295.20it/s]


 23%|████████████████▋                                                         | 59198/262326 [03:29<12:23, 273.36it/s]


 23%|████████████████▋                                                         | 59226/262326 [03:29<12:33, 269.59it/s]


 23%|████████████████▋                                                         | 59254/262326 [03:30<12:42, 266.28it/s]


 23%|████████████████▋                                                         | 59283/262326 [03:30<12:24, 272.75it/s]


 23%|████████████████▋                                                         | 59313/262326 [03:30<12:06, 279.58it/s]


 23%|████████████████▋                                                         | 59342/262326 [03:30<12:26, 271.89it/s]


 23%|████████████████▋                                                         | 59376/262326 [03:30<12:07, 278.81it/s]


 23%|████████████████▊                                                         | 59405/262326 [03:30<12:01, 281.40it/s]


 23%|████████████████▊                                                         | 59435/262326 [03:30<12:17, 275.20it/s]


 23%|████████████████▊                                                         | 59464/262326 [03:30<12:08, 278.55it/s]


 23%|████████████████▊                                                         | 59492/262326 [03:30<12:10, 277.75it/s]


 23%|████████████████▊                                                         | 59526/262326 [03:30<11:56, 282.85it/s]


 23%|████████████████▊                                                         | 59559/262326 [03:31<11:30, 293.83it/s]


 23%|████████████████▊                                                         | 59589/262326 [03:31<11:25, 295.59it/s]


 23%|████████████████▊                                                         | 59619/262326 [03:31<11:42, 288.52it/s]


 23%|████████████████▊                                                         | 59648/262326 [03:31<12:28, 270.85it/s]


 23%|████████████████▊                                                         | 59676/262326 [03:31<12:57, 260.59it/s]


 23%|████████████████▊                                                         | 59706/262326 [03:31<12:29, 270.37it/s]


 23%|████████████████▊                                                         | 59735/262326 [03:31<12:38, 267.04it/s]


 23%|████████████████▊                                                         | 59767/262326 [03:31<12:06, 278.69it/s]


 23%|████████████████▊                                                         | 59796/262326 [03:31<13:09, 256.69it/s]


 23%|████████████████▉                                                         | 59823/262326 [03:32<13:02, 258.91it/s]


 23%|████████████████▉                                                         | 59850/262326 [03:32<13:31, 249.37it/s]


 23%|████████████████▉                                                         | 59876/262326 [03:32<13:39, 247.02it/s]


 23%|████████████████▉                                                         | 59904/262326 [03:32<13:26, 250.86it/s]


 23%|████████████████▉                                                         | 59933/262326 [03:32<13:00, 259.45it/s]


 23%|████████████████▉                                                         | 59963/262326 [03:32<12:54, 261.22it/s]


 23%|████████████████▉                                                         | 59995/262326 [03:32<12:19, 273.60it/s]


 23%|████████████████▉                                                         | 60032/262326 [03:32<11:43, 287.71it/s]


 23%|████████████████▉                                                         | 60064/262326 [03:32<11:22, 296.27it/s]


 23%|████████████████▉                                                         | 60096/262326 [03:33<11:08, 302.72it/s]


 23%|████████████████▉                                                         | 60127/262326 [03:33<11:03, 304.64it/s]


 23%|████████████████▉                                                         | 60158/262326 [03:33<11:15, 299.11it/s]


 23%|████████████████▉                                                         | 60189/262326 [03:33<11:27, 293.88it/s]


 23%|████████████████▉                                                         | 60219/262326 [03:33<12:24, 271.45it/s]


 23%|████████████████▉                                                         | 60248/262326 [03:33<12:15, 274.68it/s]


 23%|█████████████████                                                         | 60280/262326 [03:33<11:46, 285.96it/s]


 23%|█████████████████                                                         | 60313/262326 [03:33<11:44, 286.91it/s]


 23%|█████████████████                                                         | 60342/262326 [03:33<12:03, 279.26it/s]


 23%|█████████████████                                                         | 60371/262326 [03:34<12:09, 276.66it/s]


 23%|█████████████████                                                         | 60399/262326 [03:34<12:10, 276.43it/s]


 23%|█████████████████                                                         | 60429/262326 [03:34<11:57, 281.56it/s]


 23%|█████████████████                                                         | 60458/262326 [03:34<12:31, 268.76it/s]


 23%|█████████████████                                                         | 60493/262326 [03:34<11:55, 282.21it/s]


 23%|█████████████████                                                         | 60523/262326 [03:34<11:45, 285.97it/s]


 23%|█████████████████                                                         | 60554/262326 [03:34<11:59, 280.50it/s]


 23%|█████████████████                                                         | 60587/262326 [03:34<11:29, 292.79it/s]


 23%|█████████████████                                                         | 60617/262326 [03:34<11:26, 293.86it/s]


 23%|█████████████████                                                         | 60655/262326 [03:35<11:01, 304.67it/s]


 23%|█████████████████                                                         | 60688/262326 [03:35<10:52, 309.16it/s]


 23%|█████████████████▏                                                        | 60725/262326 [03:35<10:47, 311.32it/s]


 23%|█████████████████▏                                                        | 60759/262326 [03:35<10:54, 307.92it/s]


 23%|█████████████████▏                                                        | 60790/262326 [03:35<12:01, 279.47it/s]


 23%|█████████████████▏                                                        | 60824/262326 [03:35<11:23, 294.74it/s]


 23%|█████████████████▏                                                        | 60862/262326 [03:35<11:02, 304.21it/s]


 23%|█████████████████▏                                                        | 60894/262326 [03:35<10:53, 308.42it/s]


 23%|█████████████████▏                                                        | 60926/262326 [03:35<10:48, 310.67it/s]


 23%|█████████████████▏                                                        | 60959/262326 [03:35<10:37, 315.76it/s]


 23%|█████████████████▏                                                        | 60993/262326 [03:36<10:50, 309.66it/s]


 23%|█████████████████▏                                                        | 61025/262326 [03:36<10:47, 310.87it/s]


 23%|█████████████████▏                                                        | 61057/262326 [03:36<11:01, 304.05it/s]


 23%|█████████████████▏                                                        | 61088/262326 [03:36<11:12, 299.30it/s]


 23%|█████████████████▏                                                        | 61119/262326 [03:36<11:16, 297.53it/s]


 23%|█████████████████▎                                                        | 61155/262326 [03:36<10:55, 306.84it/s]


 23%|█████████████████▎                                                        | 61187/262326 [03:36<10:51, 308.51it/s]


 23%|█████████████████▎                                                        | 61223/262326 [03:36<10:48, 310.04it/s]


 23%|█████████████████▎                                                        | 61255/262326 [03:36<10:45, 311.72it/s]


 23%|█████████████████▎                                                        | 61287/262326 [03:37<10:40, 314.03it/s]


 23%|█████████████████▎                                                        | 61319/262326 [03:37<10:38, 314.76it/s]


 23%|█████████████████▎                                                        | 61351/262326 [03:37<10:45, 311.24it/s]


 23%|█████████████████▎                                                        | 61383/262326 [03:37<11:01, 303.96it/s]


 23%|█████████████████▎                                                        | 61414/262326 [03:37<10:59, 304.57it/s]


 23%|█████████████████▎                                                        | 61446/262326 [03:37<11:19, 295.66it/s]


 23%|█████████████████▎                                                        | 61478/262326 [03:37<11:04, 302.04it/s]


 23%|█████████████████▎                                                        | 61515/262326 [03:37<10:52, 307.75it/s]


 23%|█████████████████▎                                                        | 61547/262326 [03:37<10:46, 310.41it/s]


 23%|█████████████████▎                                                        | 61579/262326 [03:38<10:44, 311.53it/s]


 23%|█████████████████▍                                                        | 61611/262326 [03:38<10:47, 309.92it/s]


 24%|█████████████████▍                                                        | 61648/262326 [03:38<10:34, 316.46it/s]


 24%|█████████████████▍                                                        | 61680/262326 [03:38<11:00, 303.94it/s]


 24%|█████████████████▍                                                        | 61711/262326 [03:38<10:56, 305.39it/s]


 24%|█████████████████▍                                                        | 61742/262326 [03:38<10:54, 306.50it/s]


 24%|█████████████████▍                                                        | 61773/262326 [03:38<10:54, 306.44it/s]


 24%|█████████████████▍                                                        | 61809/262326 [03:38<10:50, 308.30it/s]


 24%|█████████████████▍                                                        | 61840/262326 [03:38<10:52, 307.15it/s]


 24%|█████████████████▍                                                        | 61871/262326 [03:38<10:51, 307.71it/s]


 24%|█████████████████▍                                                        | 61907/262326 [03:39<10:48, 309.15it/s]


 24%|█████████████████▍                                                        | 61938/262326 [03:39<10:49, 308.36it/s]


 24%|█████████████████▍                                                        | 61969/262326 [03:39<10:57, 304.56it/s]


 24%|█████████████████▍                                                        | 62000/262326 [03:39<11:45, 283.87it/s]


 24%|█████████████████▍                                                        | 62029/262326 [03:39<11:45, 283.78it/s]


 24%|█████████████████▌                                                        | 62058/262326 [03:39<12:14, 272.75it/s]


 24%|█████████████████▌                                                        | 62086/262326 [03:39<12:15, 272.20it/s]


 24%|█████████████████▌                                                        | 62124/262326 [03:39<11:35, 287.95it/s]


 24%|█████████████████▌                                                        | 62154/262326 [03:39<11:54, 280.22it/s]


 24%|█████████████████▌                                                        | 62187/262326 [03:40<11:27, 291.30it/s]


 24%|█████████████████▌                                                        | 62218/262326 [03:40<11:16, 295.82it/s]


 24%|█████████████████▌                                                        | 62248/262326 [03:40<12:47, 260.79it/s]


 24%|█████████████████▌                                                        | 62276/262326 [03:40<12:39, 263.44it/s]


 24%|█████████████████▌                                                        | 62307/262326 [03:40<12:08, 274.63it/s]


 24%|█████████████████▌                                                        | 62344/262326 [03:40<11:36, 287.16it/s]


 24%|█████████████████▌                                                        | 62375/262326 [03:40<11:21, 293.53it/s]


 24%|█████████████████▌                                                        | 62409/262326 [03:40<11:19, 294.02it/s]


 24%|█████████████████▌                                                        | 62442/262326 [03:40<10:59, 303.01it/s]


 24%|█████████████████▌                                                        | 62474/262326 [03:41<10:50, 307.22it/s]


 24%|█████████████████▋                                                        | 62511/262326 [03:41<10:42, 311.13it/s]


 24%|█████████████████▋                                                        | 62543/262326 [03:41<10:46, 309.13it/s]


 24%|█████████████████▋                                                        | 62576/262326 [03:41<10:56, 304.24it/s]


 24%|█████████████████▋                                                        | 62607/262326 [03:41<10:58, 303.08it/s]


 24%|█████████████████▋                                                        | 62638/262326 [03:41<11:44, 283.63it/s]


 24%|█████████████████▋                                                        | 62667/262326 [03:41<11:44, 283.23it/s]


 24%|█████████████████▋                                                        | 62696/262326 [03:41<12:01, 276.52it/s]


 24%|█████████████████▋                                                        | 62724/262326 [03:41<12:26, 267.45it/s]


 24%|█████████████████▋                                                        | 62753/262326 [03:42<12:12, 272.49it/s]


 24%|█████████████████▋                                                        | 62783/262326 [03:42<11:55, 278.84it/s]


 24%|█████████████████▋                                                        | 62813/262326 [03:42<12:02, 276.00it/s]


 24%|█████████████████▋                                                        | 62841/262326 [03:42<12:41, 262.11it/s]


 24%|█████████████████▋                                                        | 62868/262326 [03:42<12:49, 259.31it/s]


 24%|█████████████████▋                                                        | 62897/262326 [03:42<12:28, 266.47it/s]


 24%|█████████████████▊                                                        | 62927/262326 [03:42<12:04, 275.18it/s]


 24%|█████████████████▊                                                        | 62955/262326 [03:42<12:19, 269.62it/s]


 24%|█████████████████▊                                                        | 62983/262326 [03:42<12:21, 268.77it/s]


 24%|█████████████████▊                                                        | 63010/262326 [03:42<12:22, 268.40it/s]


 24%|█████████████████▊                                                        | 63039/262326 [03:43<12:10, 272.86it/s]


 24%|█████████████████▊                                                        | 63067/262326 [03:43<12:27, 266.48it/s]


 24%|█████████████████▊                                                        | 63094/262326 [03:43<12:39, 262.29it/s]


 24%|█████████████████▊                                                        | 63121/262326 [03:43<12:43, 260.88it/s]


 24%|█████████████████▊                                                        | 63149/262326 [03:43<12:31, 265.03it/s]


 24%|█████████████████▊                                                        | 63183/262326 [03:43<12:02, 275.69it/s]


 24%|█████████████████▊                                                        | 63214/262326 [03:43<11:41, 283.78it/s]


 24%|█████████████████▊                                                        | 63246/262326 [03:43<11:45, 282.18it/s]


 24%|█████████████████▊                                                        | 63279/262326 [03:43<11:18, 293.20it/s]


 24%|█████████████████▊                                                        | 63316/262326 [03:44<11:00, 301.37it/s]


 24%|█████████████████▊                                                        | 63348/262326 [03:44<11:19, 292.80it/s]


 24%|█████████████████▉                                                        | 63378/262326 [03:44<11:58, 277.06it/s]


 24%|█████████████████▉                                                        | 63407/262326 [03:44<12:47, 259.35it/s]


 24%|█████████████████▉                                                        | 63434/262326 [03:44<12:56, 256.27it/s]


 24%|█████████████████▉                                                        | 63468/262326 [03:44<12:15, 270.30it/s]


 24%|█████████████████▉                                                        | 63497/262326 [03:44<12:06, 273.50it/s]


 24%|█████████████████▉                                                        | 63525/262326 [03:44<12:22, 267.77it/s]


 24%|█████████████████▉                                                        | 63553/262326 [03:44<12:56, 255.93it/s]


 24%|█████████████████▉                                                        | 63579/262326 [03:45<13:01, 254.28it/s]


 24%|█████████████████▉                                                        | 63605/262326 [03:45<13:11, 251.00it/s]


 24%|█████████████████▉                                                        | 63631/262326 [03:45<14:15, 232.15it/s]


 24%|█████████████████▉                                                        | 63655/262326 [03:45<14:17, 231.57it/s]


 24%|█████████████████▉                                                        | 63686/262326 [03:45<13:17, 248.94it/s]


 24%|█████████████████▉                                                        | 63717/262326 [03:45<12:32, 264.08it/s]


 24%|█████████████████▉                                                        | 63747/262326 [03:45<12:06, 273.37it/s]


 24%|█████████████████▉                                                        | 63780/262326 [03:45<11:29, 288.08it/s]


 24%|██████████████████                                                        | 63810/262326 [03:45<11:23, 290.30it/s]


 24%|██████████████████                                                        | 63842/262326 [03:46<11:33, 286.33it/s]


 24%|██████████████████                                                        | 63871/262326 [03:46<11:34, 285.96it/s]


 24%|██████████████████                                                        | 63900/262326 [03:46<12:16, 269.28it/s]


 24%|██████████████████                                                        | 63930/262326 [03:46<12:18, 268.72it/s]


 24%|██████████████████                                                        | 63958/262326 [03:46<12:39, 261.21it/s]


 24%|██████████████████                                                        | 63985/262326 [03:46<12:35, 262.66it/s]


 24%|██████████████████                                                        | 64012/262326 [03:46<13:03, 253.12it/s]


 24%|██████████████████                                                        | 64038/262326 [03:46<12:59, 254.49it/s]


 24%|██████████████████                                                        | 64064/262326 [03:46<13:07, 251.82it/s]


 24%|██████████████████                                                        | 64097/262326 [03:47<12:29, 264.48it/s]


 24%|██████████████████                                                        | 64125/262326 [03:47<12:29, 264.51it/s]


 24%|██████████████████                                                        | 64156/262326 [03:47<11:59, 275.41it/s]


 24%|██████████████████                                                        | 64184/262326 [03:47<13:09, 251.08it/s]


 24%|██████████████████                                                        | 64210/262326 [03:47<13:59, 236.10it/s]


 24%|██████████████████                                                        | 64235/262326 [03:47<14:30, 227.69it/s]


 24%|██████████████████▏                                                       | 64259/262326 [03:47<15:33, 212.10it/s]


 25%|██████████████████▏                                                       | 64281/262326 [03:47<16:12, 203.63it/s]


 25%|██████████████████▏                                                       | 64302/262326 [03:47<16:04, 205.36it/s]


 25%|██████████████████▏                                                       | 64334/262326 [03:48<14:46, 223.26it/s]


 25%|██████████████████▏                                                       | 64365/262326 [03:48<13:35, 242.86it/s]


 25%|██████████████████▏                                                       | 64394/262326 [03:48<12:57, 254.49it/s]


 25%|██████████████████▏                                                       | 64424/262326 [03:48<12:52, 256.29it/s]


 25%|██████████████████▏                                                       | 64451/262326 [03:48<13:47, 239.05it/s]


 25%|██████████████████▏                                                       | 64476/262326 [03:48<14:59, 220.07it/s]


 25%|██████████████████▏                                                       | 64503/262326 [03:48<14:17, 230.78it/s]


 25%|██████████████████▏                                                       | 64534/262326 [03:48<13:40, 241.21it/s]


 25%|██████████████████▏                                                       | 64559/262326 [03:49<16:37, 198.20it/s]


 25%|██████████████████▏                                                       | 64586/262326 [03:49<15:29, 212.80it/s]


 25%|██████████████████▏                                                       | 64610/262326 [03:49<15:01, 219.39it/s]


 25%|██████████████████▏                                                       | 64642/262326 [03:49<14:01, 234.98it/s]


 25%|██████████████████▏                                                       | 64673/262326 [03:49<13:03, 252.31it/s]


 25%|██████████████████▎                                                       | 64700/262326 [03:49<12:53, 255.65it/s]


 25%|██████████████████▎                                                       | 64729/262326 [03:49<12:53, 255.32it/s]


 25%|██████████████████▎                                                       | 64761/262326 [03:49<12:34, 261.93it/s]


 25%|██████████████████▎                                                       | 64791/262326 [03:49<12:10, 270.53it/s]


 25%|██████████████████▎                                                       | 64819/262326 [03:50<12:03, 272.93it/s]


 25%|██████████████████▎                                                       | 64847/262326 [03:50<12:59, 253.21it/s]


 25%|██████████████████▎                                                       | 64873/262326 [03:50<13:15, 248.11it/s]


 25%|██████████████████▎                                                       | 64900/262326 [03:50<12:58, 253.75it/s]


 25%|██████████████████▎                                                       | 64933/262326 [03:50<12:20, 266.61it/s]


 25%|██████████████████▎                                                       | 64961/262326 [03:50<12:13, 269.08it/s]


 25%|██████████████████▎                                                       | 64989/262326 [03:50<12:54, 254.76it/s]


 25%|██████████████████▎                                                       | 65022/262326 [03:50<12:20, 266.30it/s]


 25%|██████████████████▎                                                       | 65050/262326 [03:50<12:18, 267.06it/s]


 25%|██████████████████▎                                                       | 65083/262326 [03:51<11:56, 275.38it/s]


 25%|██████████████████▎                                                       | 65111/262326 [03:51<11:52, 276.63it/s]


 25%|██████████████████▍                                                       | 65139/262326 [03:51<11:58, 274.33it/s]


 25%|██████████████████▍                                                       | 65170/262326 [03:51<12:00, 273.52it/s]


 25%|██████████████████▍                                                       | 65199/262326 [03:51<12:19, 266.44it/s]


 25%|██████████████████▍                                                       | 65228/262326 [03:51<12:05, 271.72it/s]


 25%|██████████████████▍                                                       | 65259/262326 [03:51<11:39, 281.54it/s]


 25%|██████████████████▍                                                       | 65293/262326 [03:51<11:28, 286.08it/s]


 25%|██████████████████▍                                                       | 65323/262326 [03:51<11:22, 288.73it/s]


 25%|██████████████████▍                                                       | 65352/262326 [03:51<11:23, 288.15it/s]


 25%|██████████████████▍                                                       | 65386/262326 [03:52<11:44, 279.36it/s]


 25%|██████████████████▍                                                       | 65415/262326 [03:52<11:40, 280.95it/s]


 25%|██████████████████▍                                                       | 65448/262326 [03:52<11:35, 282.91it/s]


 25%|██████████████████▍                                                       | 65478/262326 [03:52<11:55, 274.96it/s]


 25%|██████████████████▍                                                       | 65508/262326 [03:52<11:41, 280.48it/s]


 25%|██████████████████▍                                                       | 65540/262326 [03:52<11:15, 291.12it/s]


 25%|██████████████████▍                                                       | 65572/262326 [03:52<11:02, 296.98it/s]


 25%|██████████████████▌                                                       | 65608/262326 [03:52<10:50, 302.19it/s]


 25%|██████████████████▌                                                       | 65639/262326 [03:52<11:15, 291.31it/s]


 25%|██████████████████▌                                                       | 65669/262326 [03:53<11:13, 292.18it/s]


 25%|██████████████████▌                                                       | 65699/262326 [03:53<11:39, 281.15it/s]


 25%|██████████████████▌                                                       | 65729/262326 [03:53<11:29, 285.16it/s]


 25%|██████████████████▌                                                       | 65762/262326 [03:53<11:27, 285.98it/s]


 25%|██████████████████▌                                                       | 65792/262326 [03:53<11:20, 288.63it/s]


 25%|██████████████████▌                                                       | 65823/262326 [03:53<11:07, 294.42it/s]


 25%|██████████████████▌                                                       | 65854/262326 [03:53<10:59, 297.96it/s]


 25%|██████████████████▌                                                       | 65889/262326 [03:53<10:54, 300.18it/s]


 25%|██████████████████▌                                                       | 65920/262326 [03:53<10:48, 302.90it/s]


 25%|██████████████████▌                                                       | 65951/262326 [03:54<10:47, 303.14it/s]


 25%|██████████████████▌                                                       | 65982/262326 [03:54<11:36, 281.72it/s]


 25%|██████████████████▌                                                       | 66011/262326 [03:54<11:32, 283.31it/s]


 25%|██████████████████▋                                                       | 66040/262326 [03:54<11:34, 282.79it/s]


 25%|██████████████████▋                                                       | 66069/262326 [03:54<13:07, 249.19it/s]


 25%|██████████████████▋                                                       | 66095/262326 [03:54<13:04, 250.20it/s]


 25%|██████████████████▋                                                       | 66129/262326 [03:54<12:28, 262.28it/s]


 25%|██████████████████▋                                                       | 66157/262326 [03:54<12:15, 266.80it/s]


 25%|██████████████████▋                                                       | 66185/262326 [03:54<12:08, 269.40it/s]


 25%|██████████████████▋                                                       | 66219/262326 [03:55<11:47, 277.12it/s]


 25%|██████████████████▋                                                       | 66249/262326 [03:55<11:32, 283.03it/s]


 25%|██████████████████▋                                                       | 66278/262326 [03:55<11:33, 282.81it/s]


 25%|██████████████████▋                                                       | 66310/262326 [03:55<11:33, 282.72it/s]


 25%|██████████████████▋                                                       | 66342/262326 [03:55<11:11, 292.06it/s]


 25%|██████████████████▋                                                       | 66372/262326 [03:55<11:05, 294.37it/s]


 25%|██████████████████▋                                                       | 66402/262326 [03:55<11:02, 295.91it/s]


 25%|██████████████████▋                                                       | 66432/262326 [03:55<12:03, 270.85it/s]


 25%|██████████████████▋                                                       | 66460/262326 [03:55<11:59, 272.38it/s]


 25%|██████████████████▊                                                       | 66492/262326 [03:56<11:54, 274.23it/s]


 25%|██████████████████▊                                                       | 66520/262326 [03:56<11:55, 273.53it/s]


 25%|██████████████████▊                                                       | 66548/262326 [03:56<12:41, 257.22it/s]


 25%|██████████████████▊                                                       | 66578/262326 [03:56<12:22, 263.68it/s]


 25%|██████████████████▊                                                       | 66608/262326 [03:56<11:55, 273.39it/s]


 25%|██████████████████▊                                                       | 66637/262326 [03:56<11:48, 276.06it/s]


 25%|██████████████████▊                                                       | 66670/262326 [03:56<11:37, 280.69it/s]


 25%|██████████████████▊                                                       | 66699/262326 [03:56<11:36, 280.69it/s]


 25%|██████████████████▊                                                       | 66733/262326 [03:56<11:23, 286.10it/s]


 25%|██████████████████▊                                                       | 66763/262326 [03:56<11:46, 276.91it/s]


 25%|██████████████████▊                                                       | 66791/262326 [03:57<12:22, 263.35it/s]


 25%|██████████████████▊                                                       | 66818/262326 [03:57<12:53, 252.84it/s]


 25%|██████████████████▊                                                       | 66845/262326 [03:57<12:44, 255.76it/s]


 25%|██████████████████▊                                                       | 66871/262326 [03:57<13:09, 247.56it/s]


 26%|██████████████████▊                                                       | 66896/262326 [03:57<13:53, 234.41it/s]


 26%|██████████████████▉                                                       | 66929/262326 [03:57<13:07, 248.12it/s]


 26%|██████████████████▉                                                       | 66955/262326 [03:57<12:57, 251.22it/s]


 26%|██████████████████▉                                                       | 66986/262326 [03:57<12:15, 265.76it/s]


 26%|██████████████████▉                                                       | 67016/262326 [03:57<11:50, 275.07it/s]


 26%|██████████████████▉                                                       | 67046/262326 [03:58<11:32, 281.93it/s]


 26%|██████████████████▉                                                       | 67078/262326 [03:58<11:10, 291.39it/s]


 26%|██████████████████▉                                                       | 67109/262326 [03:58<10:58, 296.24it/s]


 26%|██████████████████▉                                                       | 67141/262326 [03:58<11:36, 280.14it/s]


 26%|██████████████████▉                                                       | 67173/262326 [03:58<11:16, 288.55it/s]


 26%|██████████████████▉                                                       | 67203/262326 [03:58<11:36, 280.00it/s]


 26%|██████████████████▉                                                       | 67232/262326 [03:58<11:33, 281.13it/s]


 26%|██████████████████▉                                                       | 67261/262326 [03:58<11:56, 272.42it/s]


 26%|██████████████████▉                                                       | 67289/262326 [03:58<11:58, 271.56it/s]


 26%|██████████████████▉                                                       | 67323/262326 [03:59<11:39, 278.79it/s]


 26%|██████████████████▉                                                       | 67352/262326 [03:59<11:31, 281.80it/s]


 26%|███████████████████                                                       | 67381/262326 [03:59<11:38, 279.13it/s]


 26%|███████████████████                                                       | 67409/262326 [03:59<11:58, 271.19it/s]


 26%|███████████████████                                                       | 67437/262326 [03:59<11:58, 271.20it/s]


 26%|███████████████████                                                       | 67465/262326 [03:59<12:20, 262.98it/s]


 26%|███████████████████                                                       | 67494/262326 [03:59<12:03, 269.30it/s]


 26%|███████████████████                                                       | 67522/262326 [03:59<11:55, 272.12it/s]


 26%|███████████████████                                                       | 67553/262326 [03:59<12:26, 260.75it/s]


 26%|███████████████████                                                       | 67585/262326 [04:00<11:50, 274.06it/s]


 26%|███████████████████                                                       | 67615/262326 [04:00<11:33, 280.95it/s]


 26%|███████████████████                                                       | 67644/262326 [04:00<11:56, 271.73it/s]


 26%|███████████████████                                                       | 67672/262326 [04:00<11:50, 274.03it/s]


 26%|███████████████████                                                       | 67701/262326 [04:00<11:42, 276.90it/s]


 26%|███████████████████                                                       | 67731/262326 [04:00<11:27, 283.25it/s]


 26%|███████████████████                                                       | 67765/262326 [04:00<11:17, 287.13it/s]


 26%|███████████████████                                                       | 67794/262326 [04:00<11:19, 286.15it/s]


 26%|███████████████████▏                                                      | 67823/262326 [04:00<11:18, 286.83it/s]


 26%|███████████████████▏                                                      | 67852/262326 [04:00<12:19, 263.05it/s]


 26%|███████████████████▏                                                      | 67882/262326 [04:01<11:53, 272.53it/s]


 26%|███████████████████▏                                                      | 67915/262326 [04:01<11:47, 274.66it/s]


 26%|███████████████████▏                                                      | 67943/262326 [04:01<11:55, 271.57it/s]


 26%|███████████████████▏                                                      | 67971/262326 [04:01<12:08, 266.81it/s]


 26%|███████████████████▏                                                      | 67998/262326 [04:01<12:22, 261.89it/s]


 26%|███████████████████▏                                                      | 68029/262326 [04:01<12:04, 268.16it/s]


 26%|███████████████████▏                                                      | 68059/262326 [04:01<11:43, 276.24it/s]


 26%|███████████████████▏                                                      | 68093/262326 [04:01<11:28, 282.31it/s]


 26%|███████████████████▏                                                      | 68122/262326 [04:01<11:26, 282.71it/s]


 26%|███████████████████▏                                                      | 68151/262326 [04:02<11:52, 272.61it/s]


 26%|███████████████████▏                                                      | 68180/262326 [04:02<11:45, 275.33it/s]


 26%|███████████████████▏                                                      | 68208/262326 [04:02<12:03, 268.44it/s]


 26%|███████████████████▏                                                      | 68237/262326 [04:02<11:55, 271.34it/s]


 26%|███████████████████▎                                                      | 68265/262326 [04:02<11:50, 272.97it/s]


 26%|███████████████████▎                                                      | 68293/262326 [04:02<11:48, 274.02it/s]


 26%|███████████████████▎                                                      | 68326/262326 [04:02<11:38, 277.86it/s]


 26%|███████████████████▎                                                      | 68357/262326 [04:02<11:18, 285.77it/s]


 26%|███████████████████▎                                                      | 68386/262326 [04:02<11:16, 286.67it/s]


 26%|███████████████████▎                                                      | 68417/262326 [04:03<11:29, 281.21it/s]


 26%|███████████████████▎                                                      | 68446/262326 [04:03<11:37, 277.79it/s]


 26%|███████████████████▎                                                      | 68474/262326 [04:03<11:37, 277.80it/s]


 26%|███████████████████▎                                                      | 68502/262326 [04:03<11:53, 271.81it/s]


 26%|███████████████████▎                                                      | 68530/262326 [04:03<11:52, 271.90it/s]


 26%|███████████████████▎                                                      | 68563/262326 [04:03<11:41, 276.33it/s]


 26%|███████████████████▎                                                      | 68593/262326 [04:03<11:26, 282.30it/s]


 26%|███████████████████▎                                                      | 68622/262326 [04:03<11:24, 282.79it/s]


 26%|███████████████████▎                                                      | 68652/262326 [04:03<11:40, 276.29it/s]


 26%|███████████████████▎                                                      | 68682/262326 [04:03<11:54, 271.03it/s]


 26%|███████████████████▍                                                      | 68713/262326 [04:04<11:56, 270.19it/s]


 26%|███████████████████▍                                                      | 68744/262326 [04:04<11:34, 278.92it/s]


 26%|███████████████████▍                                                      | 68772/262326 [04:04<11:37, 277.57it/s]


 26%|███████████████████▍                                                      | 68806/262326 [04:04<11:22, 283.66it/s]


 26%|███████████████████▍                                                      | 68835/262326 [04:04<11:29, 280.76it/s]


 26%|███████████████████▍                                                      | 68867/262326 [04:04<11:26, 281.93it/s]


 26%|███████████████████▍                                                      | 68896/262326 [04:04<11:43, 274.85it/s]


 26%|███████████████████▍                                                      | 68928/262326 [04:04<11:21, 283.82it/s]


 26%|███████████████████▍                                                      | 68958/262326 [04:04<11:10, 288.38it/s]


 26%|███████████████████▍                                                      | 68990/262326 [04:05<10:51, 296.56it/s]


 26%|███████████████████▍                                                      | 69020/262326 [04:05<10:50, 297.10it/s]


 26%|███████████████████▍                                                      | 69050/262326 [04:05<11:12, 287.20it/s]


 26%|███████████████████▍                                                      | 69079/262326 [04:05<11:22, 283.27it/s]


 26%|███████████████████▍                                                      | 69113/262326 [04:05<11:11, 287.73it/s]


 26%|███████████████████▌                                                      | 69144/262326 [04:05<10:57, 293.93it/s]


 26%|███████████████████▌                                                      | 69175/262326 [04:05<11:16, 285.73it/s]


 26%|███████████████████▌                                                      | 69205/262326 [04:05<11:09, 288.28it/s]


 26%|███████████████████▌                                                      | 69235/262326 [04:05<11:05, 290.00it/s]


 26%|███████████████████▌                                                      | 69265/262326 [04:06<10:59, 292.75it/s]


 26%|███████████████████▌                                                      | 69295/262326 [04:06<11:03, 290.91it/s]


 26%|███████████████████▌                                                      | 69325/262326 [04:06<10:58, 293.12it/s]


 26%|███████████████████▌                                                      | 69357/262326 [04:06<11:04, 290.41it/s]


 26%|███████████████████▌                                                      | 69393/262326 [04:06<10:48, 297.70it/s]


 26%|███████████████████▌                                                      | 69424/262326 [04:06<10:42, 300.41it/s]


 26%|███████████████████▌                                                      | 69455/262326 [04:06<10:36, 302.93it/s]


 26%|███████████████████▌                                                      | 69489/262326 [04:06<10:41, 300.65it/s]


 27%|███████████████████▌                                                      | 69520/262326 [04:06<10:35, 303.22it/s]


 27%|███████████████████▌                                                      | 69551/262326 [04:06<10:37, 302.60it/s]


 27%|███████████████████▋                                                      | 69584/262326 [04:07<10:46, 298.11it/s]


 27%|███████████████████▋                                                      | 69615/262326 [04:07<10:39, 301.55it/s]


 27%|███████████████████▋                                                      | 69646/262326 [04:07<10:44, 299.10it/s]


 27%|███████████████████▋                                                      | 69676/262326 [04:07<11:06, 289.19it/s]


 27%|███████████████████▋                                                      | 69707/262326 [04:07<10:53, 294.96it/s]


 27%|███████████████████▋                                                      | 69738/262326 [04:07<10:44, 298.70it/s]


 27%|███████████████████▋                                                      | 69769/262326 [04:07<10:38, 301.38it/s]


 27%|███████████████████▋                                                      | 69800/262326 [04:07<11:02, 290.46it/s]


 27%|███████████████████▋                                                      | 69830/262326 [04:07<10:58, 292.30it/s]


 27%|███████████████████▋                                                      | 69860/262326 [04:08<11:21, 282.23it/s]


 27%|███████████████████▋                                                      | 69889/262326 [04:08<11:17, 284.02it/s]


 27%|███████████████████▋                                                      | 69918/262326 [04:08<11:33, 277.35it/s]


 27%|███████████████████▋                                                      | 69947/262326 [04:08<11:37, 275.93it/s]


 27%|███████████████████▋                                                      | 69977/262326 [04:08<11:24, 281.13it/s]


 27%|███████████████████▊                                                      | 70014/262326 [04:08<10:58, 291.83it/s]


 27%|███████████████████▊                                                      | 70044/262326 [04:08<10:54, 293.75it/s]


 27%|███████████████████▊                                                      | 70074/262326 [04:08<10:51, 294.87it/s]


 27%|███████████████████▊                                                      | 70107/262326 [04:08<10:56, 292.78it/s]


 27%|███████████████████▊                                                      | 70139/262326 [04:08<10:43, 298.46it/s]


 27%|███████████████████▊                                                      | 70170/262326 [04:09<11:03, 289.39it/s]


 27%|███████████████████▊                                                      | 70201/262326 [04:09<10:53, 294.03it/s]


 27%|███████████████████▊                                                      | 70231/262326 [04:09<11:05, 288.48it/s]


 27%|███████████████████▊                                                      | 70263/262326 [04:09<10:57, 292.19it/s]


 27%|███████████████████▊                                                      | 70293/262326 [04:09<10:57, 291.93it/s]


 27%|███████████████████▊                                                      | 70326/262326 [04:09<11:00, 290.52it/s]


 27%|███████████████████▊                                                      | 70356/262326 [04:09<10:57, 291.88it/s]


 27%|███████████████████▊                                                      | 70386/262326 [04:09<10:53, 293.94it/s]


 27%|███████████████████▊                                                      | 70416/262326 [04:09<10:49, 295.49it/s]


 27%|███████████████████▊                                                      | 70449/262326 [04:10<10:55, 292.62it/s]


 27%|███████████████████▉                                                      | 70479/262326 [04:10<10:52, 294.04it/s]


 27%|███████████████████▉                                                      | 70509/262326 [04:10<11:04, 288.60it/s]


 27%|███████████████████▉                                                      | 70538/262326 [04:10<11:52, 269.27it/s]


 27%|███████████████████▉                                                      | 70572/262326 [04:10<11:33, 276.34it/s]


 27%|███████████████████▉                                                      | 70601/262326 [04:10<11:28, 278.48it/s]


 27%|███████████████████▉                                                      | 70638/262326 [04:10<11:00, 290.29it/s]


 27%|███████████████████▉                                                      | 70668/262326 [04:10<10:54, 292.79it/s]


 27%|███████████████████▉                                                      | 70698/262326 [04:10<10:50, 294.42it/s]


 27%|███████████████████▉                                                      | 70735/262326 [04:11<10:33, 302.26it/s]


 27%|███████████████████▉                                                      | 70766/262326 [04:11<10:33, 302.25it/s]


 27%|███████████████████▉                                                      | 70797/262326 [04:11<10:36, 300.69it/s]


 27%|███████████████████▉                                                      | 70828/262326 [04:11<10:49, 294.92it/s]


 27%|███████████████████▉                                                      | 70859/262326 [04:11<10:40, 299.11it/s]


 27%|███████████████████▉                                                      | 70889/262326 [04:11<10:43, 297.33it/s]


 27%|████████████████████                                                      | 70919/262326 [04:11<10:42, 298.11it/s]


 27%|████████████████████                                                      | 70952/262326 [04:11<10:48, 294.91it/s]


 27%|████████████████████                                                      | 70982/262326 [04:11<10:47, 295.42it/s]


 27%|████████████████████                                                      | 71012/262326 [04:11<10:49, 294.67it/s]


 27%|████████████████████                                                      | 71042/262326 [04:12<10:52, 293.30it/s]


 27%|████████████████████                                                      | 71077/262326 [04:12<10:41, 297.97it/s]


 27%|████████████████████                                                      | 71107/262326 [04:12<11:04, 287.97it/s]


 27%|████████████████████                                                      | 71137/262326 [04:12<11:03, 287.96it/s]


 27%|████████████████████                                                      | 71169/262326 [04:12<10:48, 294.79it/s]


 27%|████████████████████                                                      | 71199/262326 [04:12<11:07, 286.17it/s]


 27%|████████████████████                                                      | 71230/262326 [04:12<10:56, 290.91it/s]


 27%|████████████████████                                                      | 71261/262326 [04:12<10:56, 290.88it/s]


 27%|████████████████████                                                      | 71294/262326 [04:12<10:49, 294.20it/s]


 27%|████████████████████                                                      | 71324/262326 [04:13<10:45, 295.69it/s]


 27%|████████████████████▏                                                     | 71356/262326 [04:13<11:00, 289.02it/s]


 27%|████████████████████▏                                                     | 71387/262326 [04:13<10:53, 292.39it/s]


 27%|████████████████████▏                                                     | 71419/262326 [04:13<11:00, 288.90it/s]


 27%|████████████████████▏                                                     | 71455/262326 [04:13<10:45, 295.62it/s]


 27%|████████████████████▏                                                     | 71486/262326 [04:13<10:40, 297.82it/s]


 27%|████████████████████▏                                                     | 71523/262326 [04:13<10:26, 304.32it/s]


 27%|████████████████████▏                                                     | 71554/262326 [04:13<10:24, 305.27it/s]


 27%|████████████████████▏                                                     | 71585/262326 [04:13<10:23, 306.14it/s]


 27%|████████████████████▏                                                     | 71616/262326 [04:14<10:50, 292.99it/s]


 27%|████████████████████▏                                                     | 71648/262326 [04:14<10:38, 298.69it/s]


 27%|████████████████████▏                                                     | 71678/262326 [04:14<11:02, 287.75it/s]


 27%|████████████████████▏                                                     | 71707/262326 [04:14<11:07, 285.44it/s]


 27%|████████████████████▏                                                     | 71736/262326 [04:14<11:30, 276.11it/s]


 27%|████████████████████▏                                                     | 71764/262326 [04:14<11:35, 273.81it/s]


 27%|████████████████████▎                                                     | 71799/262326 [04:14<11:14, 282.45it/s]


 27%|████████████████████▎                                                     | 71835/262326 [04:14<10:54, 290.93it/s]


 27%|████████████████████▎                                                     | 71865/262326 [04:14<10:51, 292.16it/s]


 27%|████████████████████▎                                                     | 71895/262326 [04:14<10:49, 293.18it/s]


 27%|████████████████████▎                                                     | 71932/262326 [04:15<10:33, 300.75it/s]


 27%|████████████████████▎                                                     | 71963/262326 [04:15<10:37, 298.62it/s]


 27%|████████████████████▎                                                     | 71993/262326 [04:15<10:40, 296.97it/s]


 27%|████████████████████▎                                                     | 72024/262326 [04:15<10:49, 293.18it/s]


 27%|████████████████████▎                                                     | 72054/262326 [04:15<10:46, 294.45it/s]


 27%|████████████████████▎                                                     | 72084/262326 [04:15<10:43, 295.43it/s]


 27%|████████████████████▎                                                     | 72114/262326 [04:15<10:47, 293.98it/s]


 28%|████████████████████▎                                                     | 72147/262326 [04:15<10:46, 294.39it/s]


 28%|████████████████████▎                                                     | 72177/262326 [04:15<10:54, 290.73it/s]


 28%|████████████████████▎                                                     | 72212/262326 [04:16<10:42, 295.84it/s]


 28%|████████████████████▍                                                     | 72247/262326 [04:16<11:03, 286.67it/s]


 28%|████████████████████▍                                                     | 72276/262326 [04:16<12:19, 257.14it/s]


 28%|████████████████████▍                                                     | 72308/262326 [04:16<12:20, 256.58it/s]


 28%|████████████████████▍                                                     | 72338/262326 [04:16<11:50, 267.39it/s]


 28%|████████████████████▍                                                     | 72371/262326 [04:16<11:14, 281.48it/s]


 28%|████████████████████▍                                                     | 72405/262326 [04:16<11:04, 286.02it/s]


 28%|████████████████████▍                                                     | 72434/262326 [04:16<11:06, 285.08it/s]


 28%|████████████████████▍                                                     | 72463/262326 [04:16<11:31, 274.47it/s]


 28%|████████████████████▍                                                     | 72492/262326 [04:17<11:21, 278.68it/s]


 28%|████████████████████▍                                                     | 72523/262326 [04:17<11:00, 287.15it/s]


 28%|████████████████████▍                                                     | 72552/262326 [04:17<11:26, 276.53it/s]


 28%|████████████████████▍                                                     | 72580/262326 [04:17<11:30, 274.97it/s]


 28%|████████████████████▍                                                     | 72609/262326 [04:17<11:20, 278.96it/s]


 28%|████████████████████▍                                                     | 72638/262326 [04:17<11:12, 282.09it/s]


 28%|████████████████████▍                                                     | 72670/262326 [04:17<10:50, 291.52it/s]


 28%|████████████████████▌                                                     | 72700/262326 [04:17<10:45, 293.87it/s]


 28%|████████████████████▌                                                     | 72730/262326 [04:17<11:10, 282.76it/s]


 28%|████████████████████▌                                                     | 72761/262326 [04:18<10:53, 290.24it/s]


 28%|████████████████████▌                                                     | 72791/262326 [04:18<10:51, 290.78it/s]


 28%|████████████████████▌                                                     | 72822/262326 [04:18<10:41, 295.30it/s]


 28%|████████████████████▌                                                     | 72852/262326 [04:18<10:51, 291.00it/s]


 28%|████████████████████▌                                                     | 72884/262326 [04:18<10:42, 294.69it/s]


 28%|████████████████████▌                                                     | 72916/262326 [04:18<10:30, 300.54it/s]


 28%|████████████████████▌                                                     | 72952/262326 [04:18<10:21, 304.64it/s]


 28%|████████████████████▌                                                     | 72984/262326 [04:18<10:13, 308.54it/s]


 28%|████████████████████▌                                                     | 73015/262326 [04:18<10:43, 294.10it/s]


 28%|████████████████████▌                                                     | 73045/262326 [04:18<10:45, 293.11it/s]


 28%|████████████████████▌                                                     | 73081/262326 [04:19<10:30, 299.93it/s]


 28%|████████████████████▌                                                     | 73113/262326 [04:19<10:19, 305.19it/s]


 28%|████████████████████▋                                                     | 73144/262326 [04:19<10:25, 302.60it/s]


 28%|████████████████████▋                                                     | 73176/262326 [04:19<10:39, 296.00it/s]


 28%|████████████████████▋                                                     | 73206/262326 [04:19<10:37, 296.66it/s]


 28%|████████████████████▋                                                     | 73242/262326 [04:19<10:26, 301.85it/s]


 28%|████████████████████▋                                                     | 73273/262326 [04:19<10:29, 300.09it/s]


 28%|████████████████████▋                                                     | 73304/262326 [04:19<10:45, 292.86it/s]


 28%|████████████████████▋                                                     | 73334/262326 [04:19<10:45, 293.00it/s]


 28%|████████████████████▋                                                     | 73371/262326 [04:20<10:26, 301.60it/s]


 28%|████████████████████▋                                                     | 73402/262326 [04:20<10:23, 303.04it/s]


 28%|████████████████████▋                                                     | 73433/262326 [04:20<10:42, 293.80it/s]


 28%|████████████████████▋                                                     | 73463/262326 [04:20<11:45, 267.60it/s]


 28%|████████████████████▋                                                     | 73491/262326 [04:20<11:40, 269.75it/s]


 28%|████████████████████▋                                                     | 73522/262326 [04:20<11:13, 280.15it/s]


 28%|████████████████████▋                                                     | 73553/262326 [04:20<10:57, 286.99it/s]


 28%|████████████████████▊                                                     | 73587/262326 [04:20<10:51, 289.88it/s]


 28%|████████████████████▊                                                     | 73618/262326 [04:20<10:44, 292.90it/s]


 28%|████████████████████▊                                                     | 73654/262326 [04:21<10:31, 298.64it/s]


 28%|████████████████████▊                                                     | 73685/262326 [04:21<10:24, 301.91it/s]


 28%|████████████████████▊                                                     | 73716/262326 [04:21<10:28, 299.98it/s]


 28%|████████████████████▊                                                     | 73747/262326 [04:21<10:44, 292.81it/s]


 28%|████████████████████▊                                                     | 73777/262326 [04:21<10:42, 293.53it/s]


 28%|████████████████████▊                                                     | 73807/262326 [04:21<11:06, 282.79it/s]


 28%|████████████████████▊                                                     | 73836/262326 [04:21<11:32, 272.00it/s]


 28%|████████████████████▊                                                     | 73864/262326 [04:21<11:31, 272.42it/s]


 28%|████████████████████▊                                                     | 73900/262326 [04:21<11:04, 283.42it/s]


 28%|████████████████████▊                                                     | 73936/262326 [04:22<10:46, 291.29it/s]


 28%|████████████████████▊                                                     | 73966/262326 [04:22<10:41, 293.72it/s]


 28%|████████████████████▊                                                     | 73997/262326 [04:22<10:36, 296.10it/s]


 28%|████████████████████▉                                                     | 74027/262326 [04:22<10:41, 293.59it/s]


 28%|████████████████████▉                                                     | 74061/262326 [04:22<10:32, 297.61it/s]


 28%|████████████████████▉                                                     | 74093/262326 [04:22<10:23, 301.87it/s]


 28%|████████████████████▉                                                     | 74127/262326 [04:22<10:26, 300.48it/s]


 28%|████████████████████▉                                                     | 74159/262326 [04:22<10:18, 304.37it/s]


 28%|████████████████████▉                                                     | 74190/262326 [04:22<10:14, 305.96it/s]


 28%|████████████████████▉                                                     | 74225/262326 [04:22<10:16, 305.16it/s]


 28%|████████████████████▉                                                     | 74256/262326 [04:23<10:15, 305.80it/s]


 28%|████████████████████▉                                                     | 74287/262326 [04:23<10:13, 306.58it/s]


 28%|████████████████████▉                                                     | 74318/262326 [04:23<10:43, 292.11it/s]


 28%|████████████████████▉                                                     | 74351/262326 [04:23<10:45, 291.38it/s]


 28%|████████████████████▉                                                     | 74381/262326 [04:23<10:41, 292.94it/s]


 28%|████████████████████▉                                                     | 74411/262326 [04:23<10:40, 293.52it/s]


 28%|████████████████████▉                                                     | 74442/262326 [04:23<10:38, 294.11it/s]


 28%|█████████████████████                                                     | 74475/262326 [04:23<10:34, 296.01it/s]


 28%|█████████████████████                                                     | 74507/262326 [04:23<10:29, 298.59it/s]


 28%|█████████████████████                                                     | 74537/262326 [04:24<10:52, 287.72it/s]


 28%|█████████████████████                                                     | 74574/262326 [04:24<10:32, 296.86it/s]


 28%|█████████████████████                                                     | 74604/262326 [04:24<10:32, 296.77it/s]


 28%|█████████████████████                                                     | 74634/262326 [04:24<10:30, 297.51it/s]


 28%|█████████████████████                                                     | 74664/262326 [04:24<10:58, 284.78it/s]


 28%|█████████████████████                                                     | 74693/262326 [04:24<10:56, 285.80it/s]


 28%|█████████████████████                                                     | 74722/262326 [04:24<10:56, 285.73it/s]


 28%|█████████████████████                                                     | 74754/262326 [04:24<11:01, 283.56it/s]


 29%|█████████████████████                                                     | 74785/262326 [04:24<10:45, 290.65it/s]


 29%|█████████████████████                                                     | 74815/262326 [04:25<10:39, 293.03it/s]


 29%|█████████████████████                                                     | 74849/262326 [04:25<10:38, 293.73it/s]


 29%|█████████████████████                                                     | 74881/262326 [04:25<10:29, 297.80it/s]


 29%|█████████████████████▏                                                    | 74911/262326 [04:25<10:36, 294.54it/s]


 29%|█████████████████████▏                                                    | 74945/262326 [04:25<10:23, 300.46it/s]


 29%|█████████████████████▏                                                    | 74977/262326 [04:25<10:19, 302.52it/s]


 29%|█████████████████████▏                                                    | 75013/262326 [04:25<10:11, 306.49it/s]


 29%|█████████████████████▏                                                    | 75044/262326 [04:25<10:09, 307.42it/s]


 29%|█████████████████████▏                                                    | 75075/262326 [04:25<12:00, 259.86it/s]


 29%|█████████████████████▏                                                    | 75104/262326 [04:26<11:50, 263.66it/s]


 29%|█████████████████████▏                                                    | 75135/262326 [04:26<11:20, 274.96it/s]


 29%|█████████████████████▏                                                    | 75164/262326 [04:26<11:11, 278.91it/s]


 29%|█████████████████████▏                                                    | 75194/262326 [04:26<11:15, 276.82it/s]


 29%|█████████████████████▏                                                    | 75224/262326 [04:26<11:07, 280.41it/s]


 29%|█████████████████████▏                                                    | 75255/262326 [04:26<10:49, 287.84it/s]


 29%|█████████████████████▏                                                    | 75285/262326 [04:26<11:11, 278.68it/s]


 29%|█████████████████████▏                                                    | 75321/262326 [04:26<10:49, 287.86it/s]


 29%|█████████████████████▎                                                    | 75351/262326 [04:26<10:46, 289.16it/s]


 29%|█████████████████████▎                                                    | 75381/262326 [04:26<10:41, 291.40it/s]


 29%|█████████████████████▎                                                    | 75416/262326 [04:27<10:28, 297.21it/s]


 29%|█████████████████████▎                                                    | 75448/262326 [04:27<10:19, 301.47it/s]


 29%|█████████████████████▎                                                    | 75479/262326 [04:27<10:28, 297.35it/s]


 29%|█████████████████████▎                                                    | 75510/262326 [04:27<10:37, 293.20it/s]


 29%|█████████████████████▎                                                    | 75545/262326 [04:27<10:30, 296.02it/s]


 29%|█████████████████████▎                                                    | 75575/262326 [04:27<10:31, 295.82it/s]


 29%|█████████████████████▎                                                    | 75605/262326 [04:27<10:37, 292.97it/s]


 29%|█████████████████████▎                                                    | 75641/262326 [04:27<10:18, 301.60it/s]


 29%|█████████████████████▎                                                    | 75672/262326 [04:27<10:38, 292.47it/s]


 29%|█████████████████████▎                                                    | 75703/262326 [04:28<10:34, 294.06it/s]


 29%|█████████████████████▎                                                    | 75733/262326 [04:28<10:32, 295.20it/s]


 29%|█████████████████████▎                                                    | 75763/262326 [04:28<10:34, 293.97it/s]


 29%|█████████████████████▍                                                    | 75794/262326 [04:28<10:46, 288.74it/s]


 29%|█████████████████████▍                                                    | 75824/262326 [04:28<10:41, 290.65it/s]


 29%|█████████████████████▍                                                    | 75854/262326 [04:28<10:40, 291.01it/s]


 29%|█████████████████████▍                                                    | 75884/262326 [04:28<11:00, 282.48it/s]


 29%|█████████████████████▍                                                    | 75913/262326 [04:28<10:55, 284.19it/s]


 29%|█████████████████████▍                                                    | 75943/262326 [04:28<10:49, 286.93it/s]


 29%|█████████████████████▍                                                    | 75973/262326 [04:28<10:41, 290.42it/s]


 29%|█████████████████████▍                                                    | 76008/262326 [04:29<10:29, 296.09it/s]


 29%|█████████████████████▍                                                    | 76040/262326 [04:29<10:18, 301.01it/s]


 29%|█████████████████████▍                                                    | 76071/262326 [04:29<10:41, 290.22it/s]


 29%|█████████████████████▍                                                    | 76101/262326 [04:29<10:36, 292.61it/s]


 29%|█████████████████████▍                                                    | 76131/262326 [04:29<10:36, 292.70it/s]


 29%|█████████████████████▍                                                    | 76165/262326 [04:29<10:32, 294.24it/s]


 29%|█████████████████████▍                                                    | 76195/262326 [04:29<10:31, 294.86it/s]


 29%|█████████████████████▌                                                    | 76225/262326 [04:29<10:28, 296.04it/s]


 29%|█████████████████████▌                                                    | 76256/262326 [04:29<10:47, 287.34it/s]


 29%|█████████████████████▌                                                    | 76286/262326 [04:30<10:42, 289.71it/s]


 29%|█████████████████████▌                                                    | 76316/262326 [04:30<11:06, 278.93it/s]


 29%|█████████████████████▌                                                    | 76345/262326 [04:30<11:12, 276.53it/s]


 29%|█████████████████████▌                                                    | 76375/262326 [04:30<11:15, 275.28it/s]


 29%|█████████████████████▌                                                    | 76403/262326 [04:30<11:42, 264.52it/s]


 29%|█████████████████████▌                                                    | 76431/262326 [04:30<11:33, 267.91it/s]


 29%|█████████████████████▌                                                    | 76459/262326 [04:30<11:25, 271.00it/s]


 29%|█████████████████████▌                                                    | 76487/262326 [04:30<11:22, 272.26it/s]


 29%|█████████████████████▌                                                    | 76517/262326 [04:30<11:09, 277.45it/s]


 29%|█████████████████████▌                                                    | 76545/262326 [04:31<11:16, 274.49it/s]


 29%|█████████████████████▌                                                    | 76573/262326 [04:31<11:21, 272.38it/s]


 29%|█████████████████████▌                                                    | 76601/262326 [04:31<11:16, 274.44it/s]


 29%|█████████████████████▌                                                    | 76630/262326 [04:31<11:12, 276.15it/s]


 29%|█████████████████████▌                                                    | 76658/262326 [04:31<13:25, 230.49it/s]


 29%|█████████████████████▋                                                    | 76686/262326 [04:31<13:07, 235.64it/s]


 29%|█████████████████████▋                                                    | 76717/262326 [04:31<12:15, 252.29it/s]


 29%|█████████████████████▋                                                    | 76747/262326 [04:31<11:44, 263.33it/s]


 29%|█████████████████████▋                                                    | 76775/262326 [04:31<11:39, 265.34it/s]


 29%|█████████████████████▋                                                    | 76803/262326 [04:32<13:49, 223.78it/s]


 29%|█████████████████████▋                                                    | 76827/262326 [04:32<13:44, 224.98it/s]


 29%|█████████████████████▋                                                    | 76855/262326 [04:32<12:56, 238.74it/s]


 29%|█████████████████████▋                                                    | 76882/262326 [04:32<12:31, 246.76it/s]


 29%|█████████████████████▋                                                    | 76912/262326 [04:32<12:09, 254.11it/s]


 29%|█████████████████████▋                                                    | 76939/262326 [04:32<11:57, 258.35it/s]


 29%|█████████████████████▋                                                    | 76969/262326 [04:32<11:29, 268.72it/s]


 29%|█████████████████████▋                                                    | 76999/262326 [04:32<11:09, 276.84it/s]


 29%|█████████████████████▋                                                    | 77034/262326 [04:32<10:36, 291.31it/s]


 29%|█████████████████████▋                                                    | 77064/262326 [04:33<10:32, 292.94it/s]


 29%|█████████████████████▋                                                    | 77094/262326 [04:33<10:47, 286.19it/s]


 29%|█████████████████████▊                                                    | 77124/262326 [04:33<10:39, 289.59it/s]


 29%|█████████████████████▊                                                    | 77154/262326 [04:33<10:47, 286.17it/s]


 29%|█████████████████████▊                                                    | 77184/262326 [04:33<10:40, 288.96it/s]


 29%|█████████████████████▊                                                    | 77215/262326 [04:33<10:30, 293.52it/s]


 29%|█████████████████████▊                                                    | 77249/262326 [04:33<10:18, 299.46it/s]


 29%|█████████████████████▊                                                    | 77280/262326 [04:33<10:25, 296.00it/s]


 29%|█████████████████████▊                                                    | 77310/262326 [04:33<11:02, 279.08it/s]


 29%|█████████████████████▊                                                    | 77339/262326 [04:33<11:22, 271.16it/s]


 29%|█████████████████████▊                                                    | 77367/262326 [04:34<11:38, 264.69it/s]


 30%|█████████████████████▊                                                    | 77394/262326 [04:34<12:08, 253.73it/s]


 30%|█████████████████████▊                                                    | 77423/262326 [04:34<11:42, 263.08it/s]


 30%|█████████████████████▊                                                    | 77453/262326 [04:34<11:39, 264.42it/s]


 30%|█████████████████████▊                                                    | 77480/262326 [04:34<12:05, 254.83it/s]


 30%|█████████████████████▊                                                    | 77511/262326 [04:34<11:30, 267.71it/s]


 30%|█████████████████████▊                                                    | 77539/262326 [04:34<11:24, 269.83it/s]


 30%|█████████████████████▉                                                    | 77570/262326 [04:34<11:02, 278.68it/s]


 30%|█████████████████████▉                                                    | 77601/262326 [04:34<10:47, 285.22it/s]


 30%|█████████████████████▉                                                    | 77631/262326 [04:35<10:39, 288.89it/s]


 30%|█████████████████████▉                                                    | 77661/262326 [04:35<11:04, 277.78it/s]


 30%|█████████████████████▉                                                    | 77689/262326 [04:35<11:04, 277.86it/s]


 30%|█████████████████████▉                                                    | 77717/262326 [04:35<11:30, 267.16it/s]


 30%|█████████████████████▉                                                    | 77748/262326 [04:35<11:05, 277.41it/s]


 30%|█████████████████████▉                                                    | 77780/262326 [04:35<10:43, 286.83it/s]


 30%|█████████████████████▉                                                    | 77809/262326 [04:35<11:02, 278.53it/s]


 30%|█████████████████████▉                                                    | 77840/262326 [04:35<10:47, 285.12it/s]


 30%|█████████████████████▉                                                    | 77870/262326 [04:35<10:40, 287.99it/s]


 30%|█████████████████████▉                                                    | 77900/262326 [04:36<10:35, 290.02it/s]


 30%|█████████████████████▉                                                    | 77933/262326 [04:36<10:21, 296.78it/s]


 30%|█████████████████████▉                                                    | 77963/262326 [04:36<10:48, 284.49it/s]


 30%|██████████████████████                                                    | 77992/262326 [04:36<10:49, 283.96it/s]


 30%|██████████████████████                                                    | 78021/262326 [04:36<10:58, 279.72it/s]


 30%|██████████████████████                                                    | 78051/262326 [04:36<10:48, 284.13it/s]


 30%|██████████████████████                                                    | 78080/262326 [04:36<10:49, 283.56it/s]


 30%|██████████████████████                                                    | 78109/262326 [04:36<10:58, 279.91it/s]


 30%|██████████████████████                                                    | 78145/262326 [04:36<10:35, 289.70it/s]


 30%|██████████████████████                                                    | 78176/262326 [04:36<10:24, 294.71it/s]


 30%|██████████████████████                                                    | 78206/262326 [04:37<10:22, 295.63it/s]


 30%|██████████████████████                                                    | 78238/262326 [04:37<10:10, 301.46it/s]


 30%|██████████████████████                                                    | 78269/262326 [04:37<10:33, 290.44it/s]


 30%|██████████████████████                                                    | 78302/262326 [04:37<10:36, 289.25it/s]


 30%|██████████████████████                                                    | 78333/262326 [04:37<10:24, 294.40it/s]


 30%|██████████████████████                                                    | 78363/262326 [04:37<10:23, 295.27it/s]


 30%|██████████████████████                                                    | 78393/262326 [04:37<10:47, 284.01it/s]


 30%|██████████████████████                                                    | 78422/262326 [04:37<10:45, 284.85it/s]


 30%|██████████████████████▏                                                   | 78451/262326 [04:37<11:12, 273.48it/s]


 30%|██████████████████████▏                                                   | 78480/262326 [04:38<11:02, 277.32it/s]


 30%|██████████████████████▏                                                   | 78510/262326 [04:38<10:48, 283.66it/s]


 30%|██████████████████████▏                                                   | 78540/262326 [04:38<10:38, 288.04it/s]


 30%|██████████████████████▏                                                   | 78569/262326 [04:38<10:42, 286.17it/s]


 30%|██████████████████████▏                                                   | 78604/262326 [04:38<10:26, 293.30it/s]


 30%|██████████████████████▏                                                   | 78634/262326 [04:38<10:23, 294.55it/s]


 30%|██████████████████████▏                                                   | 78665/262326 [04:38<10:18, 297.15it/s]


 30%|██████████████████████▏                                                   | 78699/262326 [04:38<10:18, 297.05it/s]


 30%|██████████████████████▏                                                   | 78730/262326 [04:38<10:13, 299.12it/s]


 30%|██████████████████████▏                                                   | 78760/262326 [04:38<10:13, 299.27it/s]


 30%|██████████████████████▏                                                   | 78795/262326 [04:39<10:11, 300.35it/s]


 30%|██████████████████████▏                                                   | 78826/262326 [04:39<10:32, 290.26it/s]


 30%|██████████████████████▏                                                   | 78856/262326 [04:39<10:33, 289.63it/s]


 30%|██████████████████████▎                                                   | 78886/262326 [04:39<10:54, 280.42it/s]


 30%|██████████████████████▎                                                   | 78916/262326 [04:39<10:42, 285.51it/s]


 30%|██████████████████████▎                                                   | 78946/262326 [04:39<10:37, 287.62it/s]


 30%|██████████████████████▎                                                   | 78977/262326 [04:39<10:25, 293.35it/s]


 30%|██████████████████████▎                                                   | 79012/262326 [04:39<10:12, 299.20it/s]


 30%|██████████████████████▎                                                   | 79043/262326 [04:39<10:07, 301.54it/s]


 30%|██████████████████████▎                                                   | 79080/262326 [04:40<09:55, 307.47it/s]


 30%|██████████████████████▎                                                   | 79111/262326 [04:40<10:23, 293.71it/s]


 30%|██████████████████████▎                                                   | 79141/262326 [04:40<10:21, 294.61it/s]


 30%|██████████████████████▎                                                   | 79171/262326 [04:40<10:18, 296.08it/s]


 30%|██████████████████████▎                                                   | 79201/262326 [04:40<10:18, 295.92it/s]


 30%|██████████████████████▎                                                   | 79231/262326 [04:40<12:13, 249.65it/s]


 30%|██████████████████████▎                                                   | 79260/262326 [04:40<11:54, 256.18it/s]


 30%|██████████████████████▎                                                   | 79295/262326 [04:40<11:16, 270.41it/s]


 30%|██████████████████████▍                                                   | 79326/262326 [04:40<11:18, 269.88it/s]


 30%|██████████████████████▍                                                   | 79354/262326 [04:41<11:12, 271.97it/s]


 30%|██████████████████████▍                                                   | 79382/262326 [04:41<11:09, 273.10it/s]


 30%|██████████████████████▍                                                   | 79412/262326 [04:41<10:52, 280.19it/s]


 30%|██████████████████████▍                                                   | 79443/262326 [04:41<11:00, 276.87it/s]


 30%|██████████████████████▍                                                   | 79478/262326 [04:41<10:43, 284.27it/s]


 30%|██████████████████████▍                                                   | 79507/262326 [04:41<10:41, 284.96it/s]


 30%|██████████████████████▍                                                   | 79536/262326 [04:41<10:41, 284.77it/s]


 30%|██████████████████████▍                                                   | 79569/262326 [04:41<10:38, 286.20it/s]


 30%|██████████████████████▍                                                   | 79600/262326 [04:41<10:26, 291.78it/s]


 30%|██████████████████████▍                                                   | 79631/262326 [04:42<10:15, 296.77it/s]


 30%|██████████████████████▍                                                   | 79662/262326 [04:42<10:08, 300.07it/s]


 30%|██████████████████████▍                                                   | 79693/262326 [04:42<10:19, 294.85it/s]


 30%|██████████████████████▍                                                   | 79723/262326 [04:42<10:32, 288.90it/s]


 30%|██████████████████████▍                                                   | 79757/262326 [04:42<10:27, 291.09it/s]


 30%|██████████████████████▌                                                   | 79788/262326 [04:42<10:15, 296.38it/s]


 30%|██████████████████████▌                                                   | 79819/262326 [04:42<10:07, 300.33it/s]


 30%|██████████████████████▌                                                   | 79850/262326 [04:42<10:03, 302.60it/s]


 30%|██████████████████████▌                                                   | 79881/262326 [04:42<10:00, 304.05it/s]


 30%|██████████████████████▌                                                   | 79912/262326 [04:42<10:23, 292.57it/s]


 30%|██████████████████████▌                                                   | 79943/262326 [04:43<10:15, 296.20it/s]


 30%|██████████████████████▌                                                   | 79979/262326 [04:43<10:05, 301.16it/s]


 31%|██████████████████████▌                                                   | 80010/262326 [04:43<10:16, 295.67it/s]


 31%|██████████████████████▌                                                   | 80042/262326 [04:43<10:19, 294.41it/s]


 31%|██████████████████████▌                                                   | 80074/262326 [04:43<10:30, 288.94it/s]


 31%|██████████████████████▌                                                   | 80110/262326 [04:43<10:16, 295.37it/s]


 31%|██████████████████████▌                                                   | 80140/262326 [04:43<10:23, 292.20it/s]


 31%|██████████████████████▌                                                   | 80175/262326 [04:43<10:10, 298.31it/s]


 31%|██████████████████████▋                                                   | 80205/262326 [04:43<10:30, 289.06it/s]


 31%|██████████████████████▋                                                   | 80239/262326 [04:44<10:11, 297.66it/s]


 31%|██████████████████████▋                                                   | 80271/262326 [04:44<10:01, 302.50it/s]


 31%|██████████████████████▋                                                   | 80302/262326 [04:44<10:19, 294.00it/s]


 31%|██████████████████████▋                                                   | 80332/262326 [04:44<10:21, 292.91it/s]


 31%|██████████████████████▋                                                   | 80362/262326 [04:44<10:18, 294.34it/s]


 31%|██████████████████████▋                                                   | 80392/262326 [04:44<10:43, 282.51it/s]


 31%|██████████████████████▋                                                   | 80421/262326 [04:44<10:40, 283.92it/s]


 31%|██████████████████████▋                                                   | 80451/262326 [04:44<10:31, 287.85it/s]


 31%|██████████████████████▋                                                   | 80482/262326 [04:44<10:44, 282.34it/s]


 31%|██████████████████████▋                                                   | 80511/262326 [04:45<10:40, 283.81it/s]


 31%|██████████████████████▋                                                   | 80543/262326 [04:45<10:21, 292.26it/s]


 31%|██████████████████████▋                                                   | 80573/262326 [04:45<10:19, 293.34it/s]


 31%|██████████████████████▋                                                   | 80603/262326 [04:45<10:22, 291.91it/s]


 31%|██████████████████████▋                                                   | 80636/262326 [04:45<10:18, 293.99it/s]


 31%|██████████████████████▊                                                   | 80667/262326 [04:45<10:09, 298.00it/s]


 31%|██████████████████████▊                                                   | 80699/262326 [04:45<09:56, 304.26it/s]


 31%|██████████████████████▊                                                   | 80730/262326 [04:45<09:54, 305.57it/s]


 31%|██████████████████████▊                                                   | 80761/262326 [04:45<10:17, 294.23it/s]


 31%|██████████████████████▊                                                   | 80791/262326 [04:45<10:18, 293.41it/s]


 31%|██████████████████████▊                                                   | 80827/262326 [04:46<10:07, 298.92it/s]


 31%|██████████████████████▊                                                   | 80857/262326 [04:46<10:08, 298.40it/s]


 31%|██████████████████████▊                                                   | 80887/262326 [04:46<13:07, 230.32it/s]


 31%|██████████████████████▊                                                   | 80913/262326 [04:46<12:41, 238.15it/s]


 31%|██████████████████████▊                                                   | 80945/262326 [04:46<12:08, 249.11it/s]


 31%|██████████████████████▊                                                   | 80978/262326 [04:46<11:19, 266.95it/s]


 31%|██████████████████████▊                                                   | 81011/262326 [04:46<11:04, 272.99it/s]


 31%|██████████████████████▊                                                   | 81042/262326 [04:46<10:43, 281.57it/s]


 31%|██████████████████████▊                                                   | 81079/262326 [04:47<10:17, 293.37it/s]


 31%|██████████████████████▉                                                   | 81110/262326 [04:47<10:12, 296.01it/s]


 31%|██████████████████████▉                                                   | 81141/262326 [04:47<10:30, 287.27it/s]


 31%|██████████████████████▉                                                   | 81175/262326 [04:47<10:25, 289.39it/s]


 31%|██████████████████████▉                                                   | 81206/262326 [04:47<10:15, 294.41it/s]


 31%|██████████████████████▉                                                   | 81237/262326 [04:47<10:07, 297.96it/s]


 31%|██████████████████████▉                                                   | 81272/262326 [04:47<10:03, 299.80it/s]


 31%|██████████████████████▉                                                   | 81304/262326 [04:47<09:55, 303.87it/s]


 31%|██████████████████████▉                                                   | 81335/262326 [04:47<10:20, 291.67it/s]


 31%|██████████████████████▉                                                   | 81373/262326 [04:48<09:57, 302.71it/s]


 31%|██████████████████████▉                                                   | 81412/262326 [04:48<09:30, 317.07it/s]


 31%|██████████████████████▉                                                   | 81445/262326 [04:48<09:46, 308.40it/s]


 31%|██████████████████████▉                                                   | 81477/262326 [04:48<10:30, 286.82it/s]


 31%|██████████████████████▉                                                   | 81512/262326 [04:48<10:20, 291.56it/s]


 31%|███████████████████████                                                   | 81542/262326 [04:48<10:20, 291.15it/s]


 31%|███████████████████████                                                   | 81572/262326 [04:48<10:29, 287.10it/s]


 31%|███████████████████████                                                   | 81605/262326 [04:48<10:13, 294.63it/s]


 31%|███████████████████████                                                   | 81636/262326 [04:48<10:09, 296.70it/s]


 31%|███████████████████████                                                   | 81671/262326 [04:49<10:03, 299.15it/s]


 31%|███████████████████████                                                   | 81703/262326 [04:49<09:53, 304.30it/s]


 31%|███████████████████████                                                   | 81734/262326 [04:49<10:03, 299.05it/s]


 31%|███████████████████████                                                   | 81764/262326 [04:49<10:08, 296.68it/s]


 31%|███████████████████████                                                   | 81795/262326 [04:49<10:10, 295.95it/s]


 31%|███████████████████████                                                   | 81825/262326 [04:49<10:19, 291.57it/s]


 31%|███████████████████████                                                   | 81859/262326 [04:49<10:10, 295.82it/s]


 31%|███████████████████████                                                   | 81891/262326 [04:49<09:57, 302.19it/s]


 31%|███████████████████████                                                   | 81922/262326 [04:49<09:53, 303.92it/s]


 31%|███████████████████████                                                   | 81953/262326 [04:49<10:17, 292.06it/s]


 31%|███████████████████████▏                                                  | 81983/262326 [04:50<10:17, 291.90it/s]


 31%|███████████████████████▏                                                  | 82013/262326 [04:50<10:36, 283.30it/s]


 31%|███████████████████████▏                                                  | 82042/262326 [04:50<10:47, 278.41it/s]


 31%|███████████████████████▏                                                  | 82070/262326 [04:50<11:07, 270.13it/s]


 31%|███████████████████████▏                                                  | 82098/262326 [04:50<11:01, 272.26it/s]


 31%|███████████████████████▏                                                  | 82134/262326 [04:50<10:35, 283.46it/s]


 31%|███████████████████████▏                                                  | 82164/262326 [04:50<10:27, 287.22it/s]


 31%|███████████████████████▏                                                  | 82199/262326 [04:50<10:17, 291.83it/s]


 31%|███████████████████████▏                                                  | 82230/262326 [04:50<10:09, 295.38it/s]


 31%|███████████████████████▏                                                  | 82261/262326 [04:51<10:01, 299.18it/s]


 31%|███████████████████████▏                                                  | 82292/262326 [04:51<09:56, 301.74it/s]


 31%|███████████████████████▏                                                  | 82323/262326 [04:51<13:01, 230.26it/s]


 31%|███████████████████████▏                                                  | 82351/262326 [04:51<12:31, 239.49it/s]


 31%|███████████████████████▏                                                  | 82381/262326 [04:51<11:46, 254.87it/s]


 31%|███████████████████████▏                                                  | 82411/262326 [04:51<11:15, 266.51it/s]


 31%|███████████████████████▎                                                  | 82441/262326 [04:51<10:53, 275.24it/s]


 31%|███████████████████████▎                                                  | 82470/262326 [04:51<11:10, 268.31it/s]


 31%|███████████████████████▎                                                  | 82499/262326 [04:51<10:55, 274.34it/s]


 31%|███████████████████████▎                                                  | 82531/262326 [04:52<10:29, 285.61it/s]


 31%|███████████████████████▎                                                  | 82562/262326 [04:52<10:14, 292.44it/s]


 31%|███████████████████████▎                                                  | 82592/262326 [04:52<10:12, 293.42it/s]


 31%|███████████████████████▎                                                  | 82624/262326 [04:52<10:20, 289.46it/s]


 32%|███████████████████████▎                                                  | 82656/262326 [04:52<10:04, 297.00it/s]


 32%|███████████████████████▎                                                  | 82687/262326 [04:52<09:58, 300.39it/s]


 32%|███████████████████████▎                                                  | 82720/262326 [04:52<09:44, 307.08it/s]


 32%|███████████████████████▎                                                  | 82755/262326 [04:52<09:45, 306.91it/s]


 32%|███████████████████████▎                                                  | 82786/262326 [04:52<09:44, 307.19it/s]


 32%|███████████████████████▎                                                  | 82823/262326 [04:53<09:37, 311.05it/s]


 32%|███████████████████████▎                                                  | 82855/262326 [04:53<09:34, 312.35it/s]


 32%|███████████████████████▍                                                  | 82887/262326 [04:53<10:06, 295.67it/s]


 32%|███████████████████████▍                                                  | 82917/262326 [04:53<10:21, 288.54it/s]


 32%|███████████████████████▍                                                  | 82948/262326 [04:53<10:13, 292.59it/s]


 32%|███████████████████████▍                                                  | 82979/262326 [04:53<10:03, 297.26it/s]


 32%|███████████████████████▍                                                  | 83011/262326 [04:53<10:17, 290.27it/s]


 32%|███████████████████████▍                                                  | 83041/262326 [04:53<10:11, 293.00it/s]


 32%|███████████████████████▍                                                  | 83071/262326 [04:53<10:07, 294.87it/s]


 32%|███████████████████████▍                                                  | 83104/262326 [04:53<10:39, 280.35it/s]


 32%|███████████████████████▍                                                  | 83135/262326 [04:54<10:25, 286.58it/s]


 32%|███████████████████████▍                                                  | 83171/262326 [04:54<10:10, 293.27it/s]


 32%|███████████████████████▍                                                  | 83202/262326 [04:54<10:05, 295.94it/s]


 32%|███████████████████████▍                                                  | 83236/262326 [04:54<10:04, 296.49it/s]


 32%|███████████████████████▍                                                  | 83267/262326 [04:54<09:56, 300.35it/s]


 32%|███████████████████████▍                                                  | 83298/262326 [04:54<10:17, 289.97it/s]


 32%|███████████████████████▌                                                  | 83328/262326 [04:54<10:15, 291.01it/s]


 32%|███████████████████████▌                                                  | 83358/262326 [04:54<10:23, 286.88it/s]


 32%|███████████████████████▌                                                  | 83389/262326 [04:54<10:25, 286.23it/s]


 32%|███████████████████████▌                                                  | 83425/262326 [04:55<10:08, 294.10it/s]


 32%|███████████████████████▌                                                  | 83456/262326 [04:55<10:01, 297.14it/s]


 32%|███████████████████████▌                                                  | 83486/262326 [04:55<10:06, 294.68it/s]


 32%|███████████████████████▌                                                  | 83519/262326 [04:55<10:09, 293.16it/s]


 32%|███████████████████████▌                                                  | 83556/262326 [04:55<09:53, 301.39it/s]


 32%|███████████████████████▌                                                  | 83587/262326 [04:55<09:49, 303.20it/s]


 32%|███████████████████████▌                                                  | 83618/262326 [04:55<10:02, 296.48it/s]


 32%|███████████████████████▌                                                  | 83652/262326 [04:55<09:52, 301.65it/s]


 32%|███████████████████████▌                                                  | 83683/262326 [04:55<09:50, 302.54it/s]


 32%|███████████████████████▌                                                  | 83719/262326 [04:56<09:42, 306.88it/s]


 32%|███████████████████████▋                                                  | 83750/262326 [04:56<09:40, 307.72it/s]


 32%|███████████████████████▋                                                  | 83781/262326 [04:56<10:02, 296.48it/s]


 32%|███████████████████████▋                                                  | 83811/262326 [04:56<10:08, 293.44it/s]


 32%|███████████████████████▋                                                  | 83841/262326 [04:56<10:04, 295.23it/s]


 32%|███████████████████████▋                                                  | 83873/262326 [04:56<09:52, 301.32it/s]


 32%|███████████████████████▋                                                  | 83909/262326 [04:56<09:46, 304.34it/s]


 32%|███████████████████████▋                                                  | 83945/262326 [04:56<09:41, 306.56it/s]


 32%|███████████████████████▋                                                  | 83976/262326 [04:56<09:40, 307.01it/s]


 32%|███████████████████████▋                                                  | 84007/262326 [04:57<09:41, 306.85it/s]


 32%|███████████████████████▋                                                  | 84038/262326 [04:57<09:41, 306.70it/s]


 32%|███████████████████████▋                                                  | 84072/262326 [04:57<09:56, 298.89it/s]


 32%|███████████████████████▋                                                  | 84102/262326 [04:57<10:10, 291.71it/s]


 32%|███████████████████████▋                                                  | 84132/262326 [04:57<10:10, 292.10it/s]


 32%|███████████████████████▋                                                  | 84162/262326 [04:57<11:33, 256.93it/s]


 32%|███████████████████████▋                                                  | 84192/262326 [04:57<11:05, 267.68it/s]


 32%|███████████████████████▊                                                  | 84223/262326 [04:57<10:40, 277.87it/s]


 32%|███████████████████████▊                                                  | 84257/262326 [04:57<10:29, 283.02it/s]


 32%|███████████████████████▊                                                  | 84293/262326 [04:58<10:11, 291.03it/s]


 32%|███████████████████████▊                                                  | 84324/262326 [04:58<10:01, 295.92it/s]


 32%|███████████████████████▊                                                  | 84354/262326 [04:58<10:02, 295.55it/s]


 32%|███████████████████████▊                                                  | 84387/262326 [04:58<10:04, 294.35it/s]


 32%|███████████████████████▊                                                  | 84418/262326 [04:58<10:02, 295.31it/s]


 32%|███████████████████████▊                                                  | 84453/262326 [04:58<09:56, 297.96it/s]


 32%|███████████████████████▊                                                  | 84483/262326 [04:58<09:55, 298.53it/s]


 32%|███████████████████████▊                                                  | 84515/262326 [04:58<09:48, 302.29it/s]


 32%|███████████████████████▊                                                  | 84546/262326 [04:58<09:44, 304.25it/s]


 32%|███████████████████████▊                                                  | 84577/262326 [04:58<09:42, 305.37it/s]


 32%|███████████████████████▊                                                  | 84613/262326 [04:59<09:38, 307.31it/s]


 32%|███████████████████████▉                                                  | 84644/262326 [04:59<09:36, 307.95it/s]


 32%|███████████████████████▉                                                  | 84675/262326 [04:59<10:10, 290.79it/s]


 32%|███████████████████████▉                                                  | 84707/262326 [04:59<10:12, 289.91it/s]


 32%|███████████████████████▉                                                  | 84737/262326 [04:59<10:08, 291.91it/s]


 32%|███████████████████████▉                                                  | 84767/262326 [04:59<10:05, 293.02it/s]


 32%|███████████████████████▉                                                  | 84797/262326 [04:59<10:20, 286.01it/s]


 32%|███████████████████████▉                                                  | 84828/262326 [04:59<10:37, 278.26it/s]


 32%|███████████████████████▉                                                  | 84856/262326 [04:59<10:52, 272.18it/s]


 32%|███████████████████████▉                                                  | 84889/262326 [05:00<10:35, 279.16it/s]


 32%|███████████████████████▉                                                  | 84918/262326 [05:00<10:29, 281.74it/s]


 32%|███████████████████████▉                                                  | 84947/262326 [05:00<10:27, 282.81it/s]


 32%|███████████████████████▉                                                  | 84978/262326 [05:00<11:01, 268.03it/s]


 32%|███████████████████████▉                                                  | 85008/262326 [05:00<11:12, 263.80it/s]


 32%|███████████████████████▉                                                  | 85039/262326 [05:00<10:43, 275.47it/s]


 32%|███████████████████████▉                                                  | 85070/262326 [05:00<10:22, 284.57it/s]


 32%|████████████████████████                                                  | 85105/262326 [05:00<10:11, 289.94it/s]


 32%|████████████████████████                                                  | 85135/262326 [05:00<10:10, 290.37it/s]


 32%|████████████████████████                                                  | 85165/262326 [05:01<10:31, 280.63it/s]


 32%|████████████████████████                                                  | 85194/262326 [05:01<10:27, 282.07it/s]


 32%|████████████████████████                                                  | 85223/262326 [05:01<11:02, 267.50it/s]


 32%|████████████████████████                                                  | 85252/262326 [05:01<11:06, 265.81it/s]


 33%|████████████████████████                                                  | 85287/262326 [05:01<10:40, 276.27it/s]


 33%|████████████████████████                                                  | 85316/262326 [05:01<10:34, 278.99it/s]


 33%|████████████████████████                                                  | 85347/262326 [05:01<10:16, 286.99it/s]


 33%|████████████████████████                                                  | 85382/262326 [05:01<10:05, 292.39it/s]


 33%|████████████████████████                                                  | 85412/262326 [05:01<10:04, 292.49it/s]


 33%|████████████████████████                                                  | 85446/262326 [05:02<10:02, 293.53it/s]


 33%|████████████████████████                                                  | 85477/262326 [05:02<09:58, 295.43it/s]


 33%|████████████████████████                                                  | 85507/262326 [05:02<10:02, 293.48it/s]


 33%|████████████████████████▏                                                 | 85538/262326 [05:02<10:00, 294.41it/s]


 33%|████████████████████████▏                                                 | 85571/262326 [05:02<09:52, 298.36it/s]


 33%|████████████████████████▏                                                 | 85601/262326 [05:02<10:18, 285.58it/s]


 33%|████████████████████████▏                                                 | 85630/262326 [05:02<13:11, 223.34it/s]


 33%|████████████████████████▏                                                 | 85658/262326 [05:02<12:31, 235.04it/s]


 33%|████████████████████████▏                                                 | 85689/262326 [05:02<11:38, 252.87it/s]


 33%|████████████████████████▏                                                 | 85725/262326 [05:03<10:57, 268.57it/s]


 33%|████████████████████████▏                                                 | 85754/262326 [05:03<10:47, 272.64it/s]


 33%|████████████████████████▏                                                 | 85783/262326 [05:03<10:40, 275.67it/s]


 33%|████████████████████████▏                                                 | 85815/262326 [05:03<10:59, 267.73it/s]


 33%|████████████████████████▏                                                 | 85846/262326 [05:03<10:36, 277.43it/s]


 33%|████████████████████████▏                                                 | 85882/262326 [05:03<10:14, 286.92it/s]


 33%|████████████████████████▏                                                 | 85912/262326 [05:03<10:15, 286.73it/s]


 33%|████████████████████████▏                                                 | 85947/262326 [05:03<10:01, 293.16it/s]


 33%|████████████████████████▎                                                 | 85978/262326 [05:03<09:56, 295.58it/s]


 33%|████████████████████████▎                                                 | 86009/262326 [05:04<10:11, 288.22it/s]


 33%|████████████████████████▎                                                 | 86038/262326 [05:04<10:15, 286.19it/s]


 33%|████████████████████████▎                                                 | 86067/262326 [05:04<10:35, 277.21it/s]


 33%|████████████████████████▎                                                 | 86097/262326 [05:04<10:25, 281.75it/s]


 33%|████████████████████████▎                                                 | 86128/262326 [05:04<10:12, 287.66it/s]


 33%|████████████████████████▎                                                 | 86163/262326 [05:04<09:59, 293.93it/s]


 33%|████████████████████████▎                                                 | 86195/262326 [05:04<09:49, 299.01it/s]


 33%|████████████████████████▎                                                 | 86231/262326 [05:04<09:40, 303.09it/s]


 33%|████████████████████████▎                                                 | 86262/262326 [05:04<09:38, 304.51it/s]


 33%|████████████████████████▎                                                 | 86293/262326 [05:05<10:03, 291.60it/s]


 33%|████████████████████████▎                                                 | 86323/262326 [05:05<09:59, 293.74it/s]


 33%|████████████████████████▎                                                 | 86353/262326 [05:05<10:02, 291.93it/s]


 33%|████████████████████████▎                                                 | 86383/262326 [05:05<10:21, 282.92it/s]


 33%|████████████████████████▍                                                 | 86418/262326 [05:05<10:06, 289.86it/s]


 33%|████████████████████████▍                                                 | 86448/262326 [05:05<10:04, 290.98it/s]


 33%|████████████████████████▍                                                 | 86478/262326 [05:05<10:01, 292.15it/s]


 33%|████████████████████████▍                                                 | 86508/262326 [05:05<10:19, 283.67it/s]


 33%|████████████████████████▍                                                 | 86539/262326 [05:05<10:08, 288.91it/s]


 33%|████████████████████████▍                                                 | 86570/262326 [05:05<10:22, 282.22it/s]


 33%|████████████████████████▍                                                 | 86608/262326 [05:06<09:56, 294.49it/s]


 33%|████████████████████████▍                                                 | 86638/262326 [05:06<10:05, 290.06it/s]


 33%|████████████████████████▍                                                 | 86669/262326 [05:06<10:01, 291.83it/s]


 33%|████████████████████████▍                                                 | 86699/262326 [05:06<10:07, 289.19it/s]


 33%|████████████████████████▍                                                 | 86729/262326 [05:06<10:04, 290.34it/s]


 33%|████████████████████████▍                                                 | 86761/262326 [05:06<10:10, 287.41it/s]


 33%|████████████████████████▍                                                 | 86791/262326 [05:06<10:05, 289.97it/s]


 33%|████████████████████████▍                                                 | 86822/262326 [05:06<09:55, 294.74it/s]


 33%|████████████████████████▌                                                 | 86852/262326 [05:06<09:52, 296.03it/s]


 33%|████████████████████████▌                                                 | 86889/262326 [05:07<09:37, 303.56it/s]


 33%|████████████████████████▌                                                 | 86926/262326 [05:07<09:28, 308.60it/s]


 33%|████████████████████████▌                                                 | 86957/262326 [05:07<09:55, 294.71it/s]


 33%|████████████████████████▌                                                 | 86987/262326 [05:07<09:57, 293.22it/s]


 33%|████████████████████████▌                                                 | 87017/262326 [05:07<10:21, 282.01it/s]


 33%|████████████████████████▌                                                 | 87046/262326 [05:07<10:18, 283.55it/s]


 33%|████████████████████████▌                                                 | 87077/262326 [05:07<10:04, 290.06it/s]


 33%|████████████████████████▌                                                 | 87115/262326 [05:07<09:40, 301.74it/s]


 33%|████████████████████████▌                                                 | 87146/262326 [05:07<09:38, 302.79it/s]


 33%|████████████████████████▌                                                 | 87177/262326 [05:08<09:35, 304.44it/s]


 33%|████████████████████████▌                                                 | 87211/262326 [05:08<09:40, 301.80it/s]


 33%|████████████████████████▌                                                 | 87242/262326 [05:08<09:57, 293.19it/s]


 33%|████████████████████████▌                                                 | 87274/262326 [05:08<09:51, 296.12it/s]


 33%|████████████████████████▋                                                 | 87304/262326 [05:08<10:16, 283.72it/s]


 33%|████████████████████████▋                                                 | 87336/262326 [05:08<09:57, 292.84it/s]


 33%|████████████████████████▋                                                 | 87366/262326 [05:08<12:09, 239.98it/s]


 33%|████████████████████████▋                                                 | 87399/262326 [05:08<11:16, 258.48it/s]


 33%|████████████████████████▋                                                 | 87435/262326 [05:08<10:42, 272.41it/s]


 33%|████████████████████████▋                                                 | 87468/262326 [05:09<10:11, 286.03it/s]


 33%|████████████████████████▋                                                 | 87504/262326 [05:09<09:55, 293.54it/s]


 33%|████████████████████████▋                                                 | 87535/262326 [05:09<09:59, 291.42it/s]


 33%|████████████████████████▋                                                 | 87569/262326 [05:09<09:48, 297.19it/s]


 33%|████████████████████████▋                                                 | 87600/262326 [05:09<09:41, 300.55it/s]


 33%|████████████████████████▋                                                 | 87631/262326 [05:09<09:36, 302.97it/s]


 33%|████████████████████████▋                                                 | 87662/262326 [05:09<09:34, 304.15it/s]


 33%|████████████████████████▋                                                 | 87693/262326 [05:09<09:33, 304.50it/s]


 33%|████████████████████████▋                                                 | 87726/262326 [05:09<09:40, 300.69it/s]


 33%|████████████████████████▊                                                 | 87757/262326 [05:10<09:38, 301.97it/s]


 33%|████████████████████████▊                                                 | 87788/262326 [05:10<09:39, 301.27it/s]


 33%|████████████████████████▊                                                 | 87820/262326 [05:10<09:30, 305.87it/s]


 33%|████████████████████████▊                                                 | 87851/262326 [05:10<09:41, 299.87it/s]


 34%|████████████████████████▊                                                 | 87882/262326 [05:10<09:44, 298.32it/s]


 34%|████████████████████████▊                                                 | 87916/262326 [05:10<09:46, 297.56it/s]


 34%|████████████████████████▊                                                 | 87946/262326 [05:10<09:49, 295.69it/s]


 34%|████████████████████████▊                                                 | 87980/262326 [05:10<09:49, 295.54it/s]


 34%|████████████████████████▊                                                 | 88014/262326 [05:10<09:49, 295.80it/s]


 34%|████████████████████████▊                                                 | 88044/262326 [05:10<09:51, 294.79it/s]


 34%|████████████████████████▊                                                 | 88074/262326 [05:11<09:49, 295.65it/s]


 34%|████████████████████████▊                                                 | 88105/262326 [05:11<10:07, 286.65it/s]


 34%|████████████████████████▊                                                 | 88134/262326 [05:11<10:10, 285.51it/s]


 34%|████████████████████████▊                                                 | 88167/262326 [05:11<10:08, 286.25it/s]


 34%|████████████████████████▉                                                 | 88199/262326 [05:11<10:14, 283.48it/s]


 34%|████████████████████████▉                                                 | 88230/262326 [05:11<10:02, 288.95it/s]


 34%|████████████████████████▉                                                 | 88261/262326 [05:11<09:51, 294.14it/s]


 34%|████████████████████████▉                                                 | 88296/262326 [05:11<09:42, 298.95it/s]


 34%|████████████████████████▉                                                 | 88326/262326 [05:11<09:45, 297.10it/s]


 34%|████████████████████████▉                                                 | 88356/262326 [05:12<09:44, 297.79it/s]


 34%|████████████████████████▉                                                 | 88386/262326 [05:12<09:46, 296.37it/s]


 34%|████████████████████████▉                                                 | 88416/262326 [05:12<09:44, 297.42it/s]


 34%|████████████████████████▉                                                 | 88449/262326 [05:12<09:49, 294.92it/s]


 34%|████████████████████████▉                                                 | 88479/262326 [05:12<10:46, 268.98it/s]


 34%|████████████████████████▉                                                 | 88513/262326 [05:12<10:26, 277.43it/s]


 34%|████████████████████████▉                                                 | 88545/262326 [05:12<10:09, 285.19it/s]


 34%|████████████████████████▉                                                 | 88576/262326 [05:12<10:18, 280.85it/s]


 34%|████████████████████████▉                                                 | 88605/262326 [05:12<10:14, 282.80it/s]


 34%|█████████████████████████                                                 | 88638/262326 [05:13<10:12, 283.62it/s]


 34%|█████████████████████████                                                 | 88669/262326 [05:13<09:57, 290.41it/s]


 34%|█████████████████████████                                                 | 88699/262326 [05:13<10:02, 288.28it/s]


 34%|█████████████████████████                                                 | 88731/262326 [05:13<10:02, 288.17it/s]


 34%|█████████████████████████                                                 | 88762/262326 [05:13<09:49, 294.21it/s]


 34%|█████████████████████████                                                 | 88795/262326 [05:13<10:18, 280.65it/s]


 34%|█████████████████████████                                                 | 88826/262326 [05:13<10:04, 286.85it/s]


 34%|█████████████████████████                                                 | 88855/262326 [05:13<10:03, 287.35it/s]


 34%|█████████████████████████                                                 | 88884/262326 [05:13<10:07, 285.74it/s]


 34%|█████████████████████████                                                 | 88917/262326 [05:14<10:05, 286.43it/s]


 34%|█████████████████████████                                                 | 88946/262326 [05:14<10:08, 285.07it/s]


 34%|█████████████████████████                                                 | 88975/262326 [05:14<10:06, 286.04it/s]


 34%|█████████████████████████                                                 | 89004/262326 [05:14<11:28, 251.89it/s]


 34%|█████████████████████████                                                 | 89030/262326 [05:14<11:22, 253.83it/s]


 34%|█████████████████████████                                                 | 89056/262326 [05:14<13:53, 207.86it/s]


 34%|█████████████████████████▏                                                | 89085/262326 [05:14<12:53, 223.95it/s]


 34%|█████████████████████████▏                                                | 89120/262326 [05:14<11:52, 243.03it/s]


 34%|█████████████████████████▏                                                | 89149/262326 [05:14<11:20, 254.49it/s]


 34%|█████████████████████████▏                                                | 89181/262326 [05:15<10:38, 271.13it/s]


 34%|█████████████████████████▏                                                | 89217/262326 [05:15<10:12, 282.40it/s]


 34%|█████████████████████████▏                                                | 89247/262326 [05:15<10:03, 286.95it/s]


 34%|█████████████████████████▏                                                | 89277/262326 [05:15<09:56, 289.89it/s]


 34%|█████████████████████████▏                                                | 89307/262326 [05:15<10:17, 280.22it/s]


 34%|█████████████████████████▏                                                | 89336/262326 [05:15<10:13, 282.13it/s]


 34%|█████████████████████████▏                                                | 89365/262326 [05:15<10:21, 278.20it/s]


 34%|█████████████████████████▏                                                | 89399/262326 [05:15<10:00, 288.17it/s]


 34%|█████████████████████████▏                                                | 89430/262326 [05:15<09:53, 291.24it/s]


 34%|█████████████████████████▏                                                | 89466/262326 [05:16<09:41, 297.37it/s]


 34%|█████████████████████████▏                                                | 89501/262326 [05:16<09:35, 300.34it/s]


 34%|█████████████████████████▎                                                | 89532/262326 [05:16<10:23, 277.29it/s]


 34%|█████████████████████████▎                                                | 89561/262326 [05:16<10:22, 277.53it/s]


 34%|█████████████████████████▎                                                | 89590/262326 [05:16<10:36, 271.18it/s]


 34%|█████████████████████████▎                                                | 89622/262326 [05:16<10:12, 281.80it/s]


 34%|█████████████████████████▎                                                | 89652/262326 [05:16<10:01, 286.93it/s]


 34%|█████████████████████████▎                                                | 89681/262326 [05:16<10:00, 287.53it/s]


 34%|█████████████████████████▎                                                | 89710/262326 [05:16<10:31, 273.16it/s]


 34%|█████████████████████████▎                                                | 89742/262326 [05:17<10:08, 283.62it/s]


 34%|█████████████████████████▎                                                | 89771/262326 [05:17<10:19, 278.43it/s]


 34%|█████████████████████████▎                                                | 89800/262326 [05:17<10:33, 272.50it/s]


 34%|█████████████████████████▎                                                | 89828/262326 [05:17<11:13, 256.05it/s]


 34%|█████████████████████████▎                                                | 89854/262326 [05:17<11:30, 249.74it/s]


 34%|█████████████████████████▎                                                | 89882/262326 [05:17<11:13, 256.07it/s]


 34%|█████████████████████████▎                                                | 89909/262326 [05:17<11:04, 259.30it/s]


 34%|█████████████████████████▎                                                | 89936/262326 [05:17<11:05, 258.86it/s]


 34%|█████████████████████████▍                                                | 89963/262326 [05:17<11:10, 257.08it/s]


 34%|█████████████████████████▍                                                | 89991/262326 [05:18<10:55, 263.00it/s]


 34%|█████████████████████████▍                                                | 90018/262326 [05:18<11:37, 247.13it/s]


 34%|█████████████████████████▍                                                | 90043/262326 [05:18<12:51, 223.32it/s]


 34%|█████████████████████████▍                                                | 90066/262326 [05:18<13:17, 215.96it/s]


 34%|█████████████████████████▍                                                | 90089/262326 [05:18<13:31, 212.25it/s]


 34%|█████████████████████████▍                                                | 90111/262326 [05:18<14:01, 204.53it/s]


 34%|█████████████████████████▍                                                | 90133/262326 [05:18<13:50, 207.33it/s]


 34%|█████████████████████████▍                                                | 90154/262326 [05:18<13:51, 207.08it/s]


 34%|█████████████████████████▍                                                | 90181/262326 [05:18<12:56, 221.68it/s]


 34%|█████████████████████████▍                                                | 90204/262326 [05:19<16:34, 173.08it/s]


 34%|█████████████████████████▍                                                | 90232/262326 [05:19<14:41, 195.15it/s]


 34%|█████████████████████████▍                                                | 90258/262326 [05:19<13:39, 210.04it/s]


 34%|█████████████████████████▍                                                | 90284/262326 [05:19<13:05, 219.11it/s]


 34%|█████████████████████████▍                                                | 90310/262326 [05:19<12:33, 228.31it/s]


 34%|█████████████████████████▍                                                | 90340/262326 [05:19<11:40, 245.50it/s]


 34%|█████████████████████████▍                                                | 90366/262326 [05:19<11:55, 240.20it/s]


 34%|█████████████████████████▍                                                | 90395/262326 [05:19<14:04, 203.63it/s]


 34%|█████████████████████████▌                                                | 90419/262326 [05:20<13:31, 211.80it/s]


 34%|█████████████████████████▌                                                | 90445/262326 [05:20<12:51, 222.66it/s]


 34%|█████████████████████████▌                                                | 90471/262326 [05:20<12:18, 232.56it/s]


 34%|█████████████████████████▌                                                | 90498/262326 [05:20<11:49, 242.18it/s]


 35%|█████████████████████████▌                                                | 90527/262326 [05:20<11:14, 254.67it/s]


 35%|█████████████████████████▌                                                | 90556/262326 [05:20<10:52, 263.08it/s]


 35%|█████████████████████████▌                                                | 90588/262326 [05:20<10:23, 275.60it/s]


 35%|█████████████████████████▌                                                | 90617/262326 [05:20<10:16, 278.52it/s]


 35%|█████████████████████████▌                                                | 90646/262326 [05:20<10:09, 281.80it/s]


 35%|█████████████████████████▌                                                | 90675/262326 [05:20<10:32, 271.26it/s]


 35%|█████████████████████████▌                                                | 90703/262326 [05:21<10:26, 273.81it/s]


 35%|█████████████████████████▌                                                | 90731/262326 [05:21<10:23, 275.29it/s]


 35%|█████████████████████████▌                                                | 90759/262326 [05:21<10:47, 265.17it/s]


 35%|█████████████████████████▌                                                | 90786/262326 [05:21<11:20, 252.23it/s]


 35%|█████████████████████████▌                                                | 90815/262326 [05:21<10:55, 261.78it/s]


 35%|█████████████████████████▋                                                | 90849/262326 [05:21<10:32, 271.07it/s]


 35%|█████████████████████████▋                                                | 90877/262326 [05:21<10:26, 273.62it/s]


 35%|█████████████████████████▋                                                | 90905/262326 [05:21<10:28, 272.86it/s]


 35%|█████████████████████████▋                                                | 90933/262326 [05:22<12:45, 223.82it/s]


 35%|█████████████████████████▋                                                | 90957/262326 [05:22<14:37, 195.23it/s]


 35%|█████████████████████████▋                                                | 90981/262326 [05:22<13:52, 205.87it/s]


 35%|█████████████████████████▋                                                | 91006/262326 [05:22<13:11, 216.40it/s]


 35%|█████████████████████████▋                                                | 91033/262326 [05:22<12:25, 229.68it/s]


 35%|█████████████████████████▋                                                | 91062/262326 [05:22<11:50, 241.01it/s]


 35%|█████████████████████████▋                                                | 91092/262326 [05:22<11:11, 255.05it/s]


 35%|█████████████████████████▋                                                | 91122/262326 [05:22<10:45, 265.24it/s]


 35%|█████████████████████████▋                                                | 91150/262326 [05:22<10:58, 259.97it/s]


 35%|█████████████████████████▋                                                | 91177/262326 [05:22<10:58, 260.07it/s]


 35%|█████████████████████████▋                                                | 91204/262326 [05:23<11:11, 255.00it/s]


 35%|█████████████████████████▋                                                | 91232/262326 [05:23<10:56, 260.78it/s]


 35%|█████████████████████████▋                                                | 91262/262326 [05:23<10:41, 266.81it/s]


 35%|█████████████████████████▊                                                | 91295/262326 [05:23<10:22, 274.66it/s]


 35%|█████████████████████████▊                                                | 91331/262326 [05:23<10:00, 284.82it/s]


 35%|█████████████████████████▊                                                | 91360/262326 [05:23<10:29, 271.66it/s]


 35%|█████████████████████████▊                                                | 91388/262326 [05:23<10:30, 270.93it/s]


 35%|█████████████████████████▊                                                | 91416/262326 [05:23<10:50, 262.67it/s]


 35%|█████████████████████████▊                                                | 91443/262326 [05:24<11:37, 244.88it/s]


 35%|█████████████████████████▊                                                | 91470/262326 [05:24<11:22, 250.37it/s]


 35%|█████████████████████████▊                                                | 91496/262326 [05:24<11:49, 240.66it/s]


 35%|█████████████████████████▊                                                | 91521/262326 [05:24<12:32, 227.03it/s]


 35%|█████████████████████████▊                                                | 91545/262326 [05:24<14:01, 202.91it/s]


 35%|█████████████████████████▊                                                | 91567/262326 [05:24<14:28, 196.61it/s]


 35%|█████████████████████████▊                                                | 91594/262326 [05:24<13:20, 213.18it/s]


 35%|█████████████████████████▊                                                | 91621/262326 [05:24<12:33, 226.60it/s]


 35%|█████████████████████████▊                                                | 91647/262326 [05:24<12:07, 234.63it/s]


 35%|█████████████████████████▊                                                | 91674/262326 [05:25<11:41, 243.30it/s]


 35%|█████████████████████████▊                                                | 91703/262326 [05:25<11:26, 248.61it/s]


 35%|█████████████████████████▉                                                | 91729/262326 [05:25<11:38, 244.34it/s]


 35%|█████████████████████████▉                                                | 91761/262326 [05:25<11:11, 254.16it/s]


 35%|█████████████████████████▉                                                | 91787/262326 [05:25<11:23, 249.47it/s]


 35%|█████████████████████████▉                                                | 91817/262326 [05:25<10:51, 261.56it/s]


 35%|█████████████████████████▉                                                | 91849/262326 [05:25<10:27, 271.68it/s]


 35%|█████████████████████████▉                                                | 91877/262326 [05:25<10:31, 269.79it/s]


 35%|█████████████████████████▉                                                | 91911/262326 [05:25<10:09, 279.53it/s]


 35%|█████████████████████████▉                                                | 91940/262326 [05:26<11:02, 257.02it/s]


 35%|█████████████████████████▉                                                | 91967/262326 [05:26<11:55, 238.24it/s]


 35%|█████████████████████████▉                                                | 91992/262326 [05:26<13:22, 212.36it/s]


 35%|█████████████████████████▉                                                | 92015/262326 [05:26<13:11, 215.05it/s]


 35%|█████████████████████████▉                                                | 92044/262326 [05:26<12:11, 232.72it/s]


 35%|█████████████████████████▉                                                | 92075/262326 [05:26<11:41, 242.58it/s]


 35%|█████████████████████████▉                                                | 92103/262326 [05:26<11:15, 251.90it/s]


 35%|█████████████████████████▉                                                | 92129/262326 [05:26<11:10, 253.69it/s]


 35%|█████████████████████████▉                                                | 92155/262326 [05:26<11:25, 248.41it/s]


 35%|██████████████████████████                                                | 92184/262326 [05:27<11:00, 257.67it/s]


 35%|██████████████████████████                                                | 92212/262326 [05:27<11:10, 253.89it/s]


 35%|██████████████████████████                                                | 92238/262326 [05:27<11:09, 254.18it/s]


 35%|██████████████████████████                                                | 92264/262326 [05:27<12:32, 226.04it/s]


 35%|██████████████████████████                                                | 92288/262326 [05:27<12:48, 221.36it/s]


 35%|██████████████████████████                                                | 92312/262326 [05:27<12:33, 225.53it/s]


 35%|██████████████████████████                                                | 92340/262326 [05:27<11:51, 239.05it/s]


 35%|██████████████████████████                                                | 92366/262326 [05:27<11:37, 243.80it/s]


 35%|██████████████████████████                                                | 92398/262326 [05:27<11:00, 257.15it/s]


 35%|██████████████████████████                                                | 92426/262326 [05:28<10:50, 261.36it/s]


 35%|██████████████████████████                                                | 92453/262326 [05:28<11:54, 237.87it/s]


 35%|██████████████████████████                                                | 92481/262326 [05:28<11:26, 247.33it/s]


 35%|██████████████████████████                                                | 92507/262326 [05:28<11:33, 244.84it/s]


 35%|██████████████████████████                                                | 92532/262326 [05:28<11:29, 246.15it/s]


 35%|██████████████████████████                                                | 92558/262326 [05:28<11:33, 244.68it/s]


 35%|██████████████████████████                                                | 92587/262326 [05:28<11:04, 255.54it/s]


 35%|██████████████████████████▏                                               | 92614/262326 [05:28<10:56, 258.43it/s]


 35%|██████████████████████████▏                                               | 92642/262326 [05:28<10:45, 262.68it/s]


 35%|██████████████████████████▏                                               | 92669/262326 [05:29<10:45, 262.73it/s]


 35%|██████████████████████████▏                                               | 92696/262326 [05:29<10:42, 263.93it/s]


 35%|██████████████████████████▏                                               | 92723/262326 [05:29<11:08, 253.71it/s]


 35%|██████████████████████████▏                                               | 92752/262326 [05:29<10:44, 263.22it/s]


 35%|██████████████████████████▏                                               | 92785/262326 [05:29<10:27, 270.28it/s]


 35%|██████████████████████████▏                                               | 92814/262326 [05:29<10:21, 272.81it/s]


 35%|██████████████████████████▏                                               | 92842/262326 [05:29<10:40, 264.60it/s]


 35%|██████████████████████████▏                                               | 92869/262326 [05:29<10:49, 260.91it/s]


 35%|██████████████████████████▏                                               | 92897/262326 [05:29<10:39, 264.82it/s]


 35%|██████████████████████████▏                                               | 92925/262326 [05:29<10:32, 267.86it/s]


 35%|██████████████████████████▏                                               | 92956/262326 [05:30<10:21, 272.32it/s]


 35%|██████████████████████████▏                                               | 92986/262326 [05:30<10:28, 269.39it/s]


 35%|██████████████████████████▏                                               | 93013/262326 [05:30<11:10, 252.37it/s]


 35%|██████████████████████████▏                                               | 93040/262326 [05:30<11:02, 255.40it/s]


 35%|██████████████████████████▎                                               | 93066/262326 [05:30<12:50, 219.60it/s]


 35%|██████████████████████████▎                                               | 93089/262326 [05:30<12:47, 220.36it/s]


 35%|██████████████████████████▎                                               | 93117/262326 [05:30<12:00, 234.95it/s]


 36%|██████████████████████████▎                                               | 93145/262326 [05:30<11:28, 245.70it/s]


 36%|██████████████████████████▎                                               | 93180/262326 [05:30<10:43, 263.04it/s]


 36%|██████████████████████████▎                                               | 93209/262326 [05:31<10:52, 259.30it/s]


 36%|██████████████████████████▎                                               | 93236/262326 [05:31<10:47, 260.96it/s]


 36%|██████████████████████████▎                                               | 93263/262326 [05:31<10:43, 262.83it/s]


 36%|██████████████████████████▎                                               | 93290/262326 [05:31<10:39, 264.47it/s]


 36%|██████████████████████████▎                                               | 93318/262326 [05:31<10:28, 268.78it/s]


 36%|██████████████████████████▎                                               | 93351/262326 [05:31<10:14, 275.00it/s]


 36%|██████████████████████████▎                                               | 93379/262326 [05:31<10:15, 274.36it/s]


 36%|██████████████████████████▎                                               | 93415/262326 [05:31<09:52, 285.09it/s]


 36%|██████████████████████████▎                                               | 93446/262326 [05:31<09:46, 287.91it/s]


 36%|██████████████████████████▎                                               | 93481/262326 [05:32<09:31, 295.69it/s]


 36%|██████████████████████████▍                                               | 93512/262326 [05:32<09:26, 297.99it/s]


 36%|██████████████████████████▍                                               | 93542/262326 [05:32<09:36, 292.61it/s]


 36%|██████████████████████████▍                                               | 93575/262326 [05:32<09:34, 293.89it/s]


 36%|██████████████████████████▍                                               | 93605/262326 [05:32<09:41, 290.31it/s]


 36%|██████████████████████████▍                                               | 93639/262326 [05:32<09:29, 296.29it/s]


 36%|██████████████████████████▍                                               | 93669/262326 [05:32<09:56, 282.55it/s]


 36%|██████████████████████████▍                                               | 93700/262326 [05:32<09:41, 289.81it/s]


 36%|██████████████████████████▍                                               | 93736/262326 [05:32<09:28, 296.32it/s]


 36%|██████████████████████████▍                                               | 93767/262326 [05:33<09:24, 298.81it/s]


 36%|██████████████████████████▍                                               | 93803/262326 [05:33<09:15, 303.23it/s]


 36%|██████████████████████████▍                                               | 93834/262326 [05:33<09:25, 298.20it/s]


 36%|██████████████████████████▍                                               | 93867/262326 [05:33<09:25, 297.82it/s]


 36%|██████████████████████████▍                                               | 93897/262326 [05:33<09:25, 298.00it/s]


 36%|██████████████████████████▍                                               | 93927/262326 [05:33<09:52, 284.14it/s]


 36%|██████████████████████████▌                                               | 93961/262326 [05:33<09:43, 288.70it/s]


 36%|██████████████████████████▌                                               | 93991/262326 [05:33<09:41, 289.64it/s]


 36%|██████████████████████████▌                                               | 94023/262326 [05:33<09:49, 285.67it/s]


 36%|██████████████████████████▌                                               | 94054/262326 [05:34<09:37, 291.49it/s]


 36%|██████████████████████████▌                                               | 94084/262326 [05:34<09:36, 291.74it/s]


 36%|██████████████████████████▌                                               | 94116/262326 [05:34<09:40, 289.56it/s]


 36%|██████████████████████████▌                                               | 94147/262326 [05:34<09:37, 291.46it/s]


 36%|██████████████████████████▌                                               | 94181/262326 [05:34<09:31, 294.07it/s]


 36%|██████████████████████████▌                                               | 94218/262326 [05:34<09:16, 302.01it/s]


 36%|██████████████████████████▌                                               | 94249/262326 [05:34<09:18, 300.87it/s]


 36%|██████████████████████████▌                                               | 94282/262326 [05:34<09:25, 297.32it/s]


 36%|██████████████████████████▌                                               | 94312/262326 [05:34<09:23, 297.99it/s]


 36%|██████████████████████████▌                                               | 94342/262326 [05:34<09:23, 298.05it/s]


 36%|██████████████████████████▌                                               | 94372/262326 [05:35<09:52, 283.59it/s]


 36%|██████████████████████████▋                                               | 94402/262326 [05:35<09:43, 288.01it/s]


 36%|██████████████████████████▋                                               | 94431/262326 [05:35<10:09, 275.62it/s]


 36%|██████████████████████████▋                                               | 94461/262326 [05:35<09:57, 280.86it/s]


 36%|██████████████████████████▋                                               | 94494/262326 [05:35<09:52, 283.37it/s]


 36%|██████████████████████████▋                                               | 94525/262326 [05:35<09:38, 290.12it/s]


 36%|██████████████████████████▋                                               | 94556/262326 [05:35<09:29, 294.67it/s]


 36%|██████████████████████████▋                                               | 94587/262326 [05:35<09:22, 298.27it/s]


 36%|██████████████████████████▋                                               | 94618/262326 [05:35<09:19, 299.76it/s]


 36%|██████████████████████████▋                                               | 94653/262326 [05:36<09:12, 303.37it/s]


 36%|██████████████████████████▋                                               | 94684/262326 [05:36<09:11, 303.91it/s]


 36%|██████████████████████████▋                                               | 94715/262326 [05:36<09:43, 287.07it/s]


 36%|██████████████████████████▋                                               | 94744/262326 [05:36<09:59, 279.55it/s]


 36%|██████████████████████████▋                                               | 94773/262326 [05:36<10:31, 265.19it/s]


 36%|██████████████████████████▋                                               | 94807/262326 [05:36<10:06, 276.12it/s]


 36%|██████████████████████████▊                                               | 94835/262326 [05:36<10:08, 275.28it/s]


 36%|██████████████████████████▊                                               | 94865/262326 [05:36<10:18, 270.84it/s]


 36%|██████████████████████████▊                                               | 94895/262326 [05:36<10:00, 278.83it/s]


 36%|██████████████████████████▊                                               | 94930/262326 [05:37<09:45, 285.78it/s]


 36%|██████████████████████████▊                                               | 94961/262326 [05:37<09:37, 289.64it/s]


 36%|██████████████████████████▊                                               | 94991/262326 [05:37<09:36, 290.34it/s]


 36%|██████████████████████████▊                                               | 95023/262326 [05:37<09:37, 289.61it/s]


 36%|██████████████████████████▊                                               | 95053/262326 [05:37<09:35, 290.48it/s]


 36%|██████████████████████████▊                                               | 95086/262326 [05:37<09:38, 289.20it/s]


 36%|██████████████████████████▊                                               | 95116/262326 [05:37<09:57, 279.76it/s]


 36%|██████████████████████████▊                                               | 95146/262326 [05:37<09:48, 283.91it/s]


 36%|██████████████████████████▊                                               | 95177/262326 [05:37<09:33, 291.23it/s]


 36%|██████████████████████████▊                                               | 95212/262326 [05:38<09:26, 294.80it/s]


 36%|██████████████████████████▊                                               | 95242/262326 [05:38<09:28, 294.16it/s]


 36%|██████████████████████████▉                                               | 95272/262326 [05:38<10:02, 277.13it/s]


 36%|██████████████████████████▉                                               | 95302/262326 [05:38<09:51, 282.58it/s]


 36%|██████████████████████████▉                                               | 95331/262326 [05:38<09:49, 283.32it/s]


 36%|██████████████████████████▉                                               | 95360/262326 [05:38<10:05, 275.77it/s]


 36%|██████████████████████████▉                                               | 95389/262326 [05:38<09:59, 278.62it/s]


 36%|██████████████████████████▉                                               | 95420/262326 [05:38<09:44, 285.74it/s]


 36%|██████████████████████████▉                                               | 95449/262326 [05:38<09:51, 282.18it/s]


 36%|██████████████████████████▉                                               | 95478/262326 [05:38<09:49, 283.17it/s]


 36%|██████████████████████████▉                                               | 95507/262326 [05:39<09:47, 284.03it/s]


 36%|██████████████████████████▉                                               | 95538/262326 [05:39<09:33, 290.87it/s]


 36%|██████████████████████████▉                                               | 95568/262326 [05:39<09:29, 292.94it/s]


 36%|██████████████████████████▉                                               | 95598/262326 [05:39<09:37, 288.87it/s]


 36%|██████████████████████████▉                                               | 95627/262326 [05:39<10:04, 275.56it/s]


 36%|██████████████████████████▉                                               | 95655/262326 [05:39<10:18, 269.55it/s]


 36%|██████████████████████████▉                                               | 95685/262326 [05:39<10:01, 277.15it/s]


 36%|██████████████████████████▉                                               | 95713/262326 [05:39<10:25, 266.25it/s]


 36%|███████████████████████████                                               | 95740/262326 [05:39<10:31, 263.68it/s]


 37%|███████████████████████████                                               | 95767/262326 [05:40<10:30, 264.18it/s]


 37%|███████████████████████████                                               | 95798/262326 [05:40<10:07, 274.10it/s]


 37%|███████████████████████████                                               | 95828/262326 [05:40<09:54, 279.87it/s]


 37%|███████████████████████████                                               | 95858/262326 [05:40<09:52, 280.78it/s]


 37%|███████████████████████████                                               | 95891/262326 [05:40<09:48, 283.00it/s]


 37%|███████████████████████████                                               | 95921/262326 [05:40<09:41, 286.01it/s]


 37%|███████████████████████████                                               | 95952/262326 [05:40<09:29, 292.23it/s]


 37%|███████████████████████████                                               | 95983/262326 [05:40<09:22, 295.80it/s]


 37%|███████████████████████████                                               | 96013/262326 [05:40<09:45, 284.27it/s]


 37%|███████████████████████████                                               | 96048/262326 [05:40<09:32, 290.39it/s]


 37%|███████████████████████████                                               | 96078/262326 [05:41<09:31, 291.13it/s]


 37%|███████████████████████████                                               | 96113/262326 [05:41<09:23, 295.03it/s]


 37%|███████████████████████████                                               | 96143/262326 [05:41<09:20, 296.44it/s]


 37%|███████████████████████████▏                                              | 96173/262326 [05:41<09:47, 283.05it/s]


 37%|███████████████████████████▏                                              | 96203/262326 [05:41<09:38, 287.35it/s]


 37%|███████████████████████████▏                                              | 96233/262326 [05:41<09:31, 290.69it/s]


 37%|███████████████████████████▏                                              | 96268/262326 [05:41<09:22, 295.00it/s]


 37%|███████████████████████████▏                                              | 96298/262326 [05:41<09:22, 294.98it/s]


 37%|███████████████████████████▏                                              | 96328/262326 [05:41<09:20, 295.96it/s]


 37%|███████████████████████████▏                                              | 96358/262326 [05:42<09:19, 296.65it/s]


 37%|███████████████████████████▏                                              | 96388/262326 [05:42<09:19, 296.34it/s]


 37%|███████████████████████████▏                                              | 96418/262326 [05:42<10:39, 259.49it/s]


 37%|███████████████████████████▏                                              | 96450/262326 [05:42<10:26, 264.80it/s]


 37%|███████████████████████████▏                                              | 96478/262326 [05:42<10:18, 268.08it/s]


 37%|███████████████████████████▏                                              | 96513/262326 [05:42<09:57, 277.62it/s]


 37%|███████████████████████████▏                                              | 96542/262326 [05:42<09:51, 280.38it/s]


 37%|███████████████████████████▏                                              | 96571/262326 [05:42<09:45, 282.96it/s]


 37%|███████████████████████████▎                                              | 96600/262326 [05:42<10:46, 256.52it/s]


 37%|███████████████████████████▎                                              | 96635/262326 [05:43<10:09, 271.66it/s]


 37%|███████████████████████████▎                                              | 96665/262326 [05:43<09:53, 279.06it/s]


 37%|███████████████████████████▎                                              | 96694/262326 [05:43<09:55, 277.95it/s]


 37%|███████████████████████████▎                                              | 96724/262326 [05:43<10:01, 275.50it/s]


 37%|███████████████████████████▎                                              | 96752/262326 [05:43<10:20, 266.77it/s]


 37%|███████████████████████████▎                                              | 96784/262326 [05:43<09:56, 277.74it/s]


 37%|███████████████████████████▎                                              | 96813/262326 [05:43<09:50, 280.07it/s]


 37%|███████████████████████████▎                                              | 96849/262326 [05:43<09:32, 288.83it/s]


 37%|███████████████████████████▎                                              | 96879/262326 [05:43<09:28, 291.06it/s]


 37%|███████████████████████████▎                                              | 96909/262326 [05:44<09:27, 291.70it/s]


 37%|███████████████████████████▎                                              | 96942/262326 [05:44<09:27, 291.21it/s]


 37%|███████████████████████████▎                                              | 96972/262326 [05:44<09:29, 290.14it/s]


 37%|███████████████████████████▎                                              | 97005/262326 [05:44<09:26, 291.80it/s]


 37%|███████████████████████████▎                                              | 97040/262326 [05:44<09:13, 298.37it/s]


 37%|███████████████████████████▍                                              | 97073/262326 [05:44<09:07, 301.77it/s]


 37%|███████████████████████████▍                                              | 97104/262326 [05:44<09:29, 289.88it/s]


 37%|███████████████████████████▍                                              | 97136/262326 [05:44<09:16, 296.59it/s]


 37%|███████████████████████████▍                                              | 97166/262326 [05:44<11:48, 233.13it/s]


 37%|███████████████████████████▍                                              | 97192/262326 [05:45<11:34, 237.88it/s]


 37%|███████████████████████████▍                                              | 97223/262326 [05:45<10:49, 254.16it/s]


 37%|███████████████████████████▍                                              | 97252/262326 [05:45<10:26, 263.65it/s]


 37%|███████████████████████████▍                                              | 97285/262326 [05:45<10:10, 270.19it/s]


 37%|███████████████████████████▍                                              | 97316/262326 [05:45<09:50, 279.40it/s]


 37%|███████████████████████████▍                                              | 97345/262326 [05:45<09:52, 278.32it/s]


 37%|███████████████████████████▍                                              | 97374/262326 [05:45<10:00, 274.68it/s]


 37%|███████████████████████████▍                                              | 97406/262326 [05:45<09:39, 284.50it/s]


 37%|███████████████████████████▍                                              | 97442/262326 [05:45<09:22, 292.99it/s]


 37%|███████████████████████████▍                                              | 97472/262326 [05:46<09:19, 294.47it/s]


 37%|███████████████████████████▌                                              | 97502/262326 [05:46<09:36, 285.98it/s]


 37%|███████████████████████████▌                                              | 97531/262326 [05:46<09:49, 279.43it/s]


 37%|███████████████████████████▌                                              | 97561/262326 [05:46<09:42, 283.03it/s]


 37%|███████████████████████████▌                                              | 97596/262326 [05:46<09:22, 293.00it/s]


 37%|███████████████████████████▌                                              | 97626/262326 [05:46<09:19, 294.42it/s]


 37%|███████████████████████████▌                                              | 97656/262326 [05:46<09:18, 294.85it/s]


 37%|███████████████████████████▌                                              | 97691/262326 [05:46<09:13, 297.58it/s]


 37%|███████████████████████████▌                                              | 97721/262326 [05:46<09:20, 293.68it/s]


 37%|███████████████████████████▌                                              | 97754/262326 [05:46<09:17, 294.93it/s]


 37%|███████████████████████████▌                                              | 97785/262326 [05:47<09:12, 297.86it/s]


 37%|███████████████████████████▌                                              | 97815/262326 [05:47<10:09, 269.74it/s]


 37%|███████████████████████████▌                                              | 97849/262326 [05:47<09:51, 277.85it/s]


 37%|███████████████████████████▌                                              | 97879/262326 [05:47<09:43, 281.99it/s]


 37%|███████████████████████████▌                                              | 97914/262326 [05:47<09:29, 288.73it/s]


 37%|███████████████████████████▋                                              | 97944/262326 [05:47<10:47, 253.71it/s]


 37%|███████████████████████████▋                                              | 97980/262326 [05:47<10:11, 268.95it/s]


 37%|███████████████████████████▋                                              | 98010/262326 [05:47<09:58, 274.56it/s]


 37%|███████████████████████████▋                                              | 98039/262326 [05:48<10:09, 269.61it/s]


 37%|███████████████████████████▋                                              | 98067/262326 [05:48<10:05, 271.28it/s]


 37%|███████████████████████████▋                                              | 98095/262326 [05:48<10:28, 261.10it/s]


 37%|███████████████████████████▋                                              | 98128/262326 [05:48<10:11, 268.36it/s]


 37%|███████████████████████████▋                                              | 98159/262326 [05:48<09:51, 277.66it/s]


 37%|███████████████████████████▋                                              | 98195/262326 [05:48<09:30, 287.54it/s]


 37%|███████████████████████████▋                                              | 98225/262326 [05:48<09:25, 290.43it/s]


 37%|███████████████████████████▋                                              | 98256/262326 [05:48<09:14, 295.69it/s]


 37%|███████████████████████████▋                                              | 98286/262326 [05:48<09:13, 296.42it/s]


 37%|███████████████████████████▋                                              | 98316/262326 [05:49<09:12, 297.11it/s]


 37%|███████████████████████████▋                                              | 98348/262326 [05:49<09:22, 291.59it/s]


 38%|███████████████████████████▊                                              | 98380/262326 [05:49<09:11, 297.34it/s]


 38%|███████████████████████████▊                                              | 98410/262326 [05:49<09:34, 285.12it/s]


 38%|███████████████████████████▊                                              | 98439/262326 [05:49<09:33, 285.91it/s]


 38%|███████████████████████████▊                                              | 98468/262326 [05:49<09:39, 282.61it/s]


 38%|███████████████████████████▊                                              | 98503/262326 [05:49<09:43, 280.63it/s]


 38%|███████████████████████████▊                                              | 98534/262326 [05:49<09:28, 288.32it/s]


 38%|███████████████████████████▊                                              | 98563/262326 [05:49<09:28, 287.91it/s]


 38%|███████████████████████████▊                                              | 98599/262326 [05:49<09:14, 295.51it/s]


 38%|███████████████████████████▊                                              | 98630/262326 [05:50<09:07, 299.14it/s]


 38%|███████████████████████████▊                                              | 98661/262326 [05:50<09:03, 301.28it/s]


 38%|███████████████████████████▊                                              | 98692/262326 [05:50<09:18, 293.11it/s]


 38%|███████████████████████████▊                                              | 98722/262326 [05:50<09:24, 289.61it/s]


 38%|███████████████████████████▊                                              | 98754/262326 [05:50<09:31, 286.45it/s]


 38%|███████████████████████████▊                                              | 98784/262326 [05:50<09:25, 289.37it/s]


 38%|███████████████████████████▉                                              | 98820/262326 [05:50<09:11, 296.48it/s]


 38%|███████████████████████████▉                                              | 98852/262326 [05:50<09:01, 301.65it/s]


 38%|███████████████████████████▉                                              | 98883/262326 [05:50<09:26, 288.73it/s]


 38%|███████████████████████████▉                                              | 98919/262326 [05:51<09:12, 295.93it/s]


 38%|███████████████████████████▉                                              | 98949/262326 [05:51<09:13, 295.05it/s]


 38%|███████████████████████████▉                                              | 98979/262326 [05:51<09:47, 278.09it/s]


 38%|███████████████████████████▉                                              | 99010/262326 [05:51<09:44, 279.61it/s]


 38%|███████████████████████████▉                                              | 99042/262326 [05:51<09:24, 289.44it/s]


 38%|███████████████████████████▉                                              | 99072/262326 [05:51<09:43, 279.92it/s]


 38%|███████████████████████████▉                                              | 99102/262326 [05:51<09:34, 284.20it/s]


 38%|███████████████████████████▉                                              | 99134/262326 [05:51<09:16, 293.44it/s]


 38%|███████████████████████████▉                                              | 99164/262326 [05:51<09:19, 291.58it/s]


 38%|███████████████████████████▉                                              | 99198/262326 [05:52<09:10, 296.51it/s]


 38%|███████████████████████████▉                                              | 99230/262326 [05:52<09:24, 288.81it/s]


 38%|████████████████████████████                                              | 99261/262326 [05:52<09:16, 293.03it/s]


 38%|████████████████████████████                                              | 99291/262326 [05:52<09:35, 283.24it/s]


 38%|████████████████████████████                                              | 99321/262326 [05:52<09:28, 286.71it/s]


 38%|████████████████████████████                                              | 99359/262326 [05:52<09:06, 298.47it/s]


 38%|████████████████████████████                                              | 99390/262326 [05:52<09:01, 300.92it/s]


 38%|████████████████████████████                                              | 99426/262326 [05:52<08:54, 304.68it/s]


 38%|████████████████████████████                                              | 99457/262326 [05:52<08:54, 304.67it/s]


 38%|████████████████████████████                                              | 99488/262326 [05:53<09:47, 277.38it/s]


 38%|████████████████████████████                                              | 99521/262326 [05:53<09:40, 280.55it/s]


 38%|████████████████████████████                                              | 99551/262326 [05:53<09:32, 284.48it/s]


 38%|████████████████████████████                                              | 99584/262326 [05:53<09:28, 286.11it/s]


 38%|████████████████████████████                                              | 99613/262326 [05:53<11:48, 229.67it/s]


 38%|████████████████████████████                                              | 99638/262326 [05:53<11:31, 235.33it/s]


 38%|████████████████████████████                                              | 99666/262326 [05:53<10:58, 246.86it/s]


 38%|████████████████████████████                                              | 99696/262326 [05:53<10:24, 260.38it/s]


 38%|████████████████████████████▏                                             | 99731/262326 [05:53<10:19, 262.66it/s]


 38%|████████████████████████████▏                                             | 99762/262326 [05:54<09:53, 273.96it/s]


 38%|████████████████████████████▏                                             | 99794/262326 [05:54<09:30, 284.67it/s]


 38%|████████████████████████████▏                                             | 99825/262326 [05:54<09:20, 289.68it/s]


 38%|████████████████████████████▏                                             | 99857/262326 [05:54<09:22, 288.64it/s]


 38%|████████████████████████████▏                                             | 99888/262326 [05:54<09:38, 280.89it/s]


 38%|████████████████████████████▏                                             | 99917/262326 [05:54<09:32, 283.44it/s]


 38%|████████████████████████████▏                                             | 99949/262326 [05:54<09:14, 292.89it/s]


 38%|████████████████████████████▏                                             | 99986/262326 [05:54<08:59, 300.83it/s]


 38%|███████████████████████████▊                                             | 100017/262326 [05:54<09:23, 288.06it/s]


 38%|███████████████████████████▊                                             | 100047/262326 [05:55<09:17, 291.19it/s]


 38%|███████████████████████████▊                                             | 100077/262326 [05:55<09:13, 293.13it/s]


 38%|███████████████████████████▊                                             | 100107/262326 [05:55<09:21, 288.70it/s]


 38%|███████████████████████████▊                                             | 100138/262326 [05:55<09:22, 288.11it/s]


 38%|███████████████████████████▊                                             | 100168/262326 [05:55<09:16, 291.41it/s]


 38%|███████████████████████████▉                                             | 100199/262326 [05:55<09:06, 296.53it/s]


 38%|███████████████████████████▉                                             | 100229/262326 [05:55<09:23, 287.64it/s]


 38%|███████████████████████████▉                                             | 100258/262326 [05:55<10:23, 259.86it/s]


 38%|███████████████████████████▉                                             | 100286/262326 [05:55<10:17, 262.37it/s]


 38%|███████████████████████████▉                                             | 100319/262326 [05:56<09:48, 275.27it/s]


 38%|███████████████████████████▉                                             | 100352/262326 [05:56<09:31, 283.58it/s]


 38%|███████████████████████████▉                                             | 100381/262326 [05:56<09:34, 281.73it/s]


 38%|███████████████████████████▉                                             | 100414/262326 [05:56<09:28, 284.65it/s]


 38%|███████████████████████████▉                                             | 100443/262326 [05:56<09:26, 285.70it/s]


 38%|███████████████████████████▉                                             | 100473/262326 [05:56<09:41, 278.28it/s]


 38%|███████████████████████████▉                                             | 100505/262326 [05:56<09:21, 288.24it/s]


 38%|███████████████████████████▉                                             | 100537/262326 [05:56<09:06, 295.87it/s]


 38%|███████████████████████████▉                                             | 100572/262326 [05:56<09:01, 298.47it/s]


 38%|███████████████████████████▉                                             | 100604/262326 [05:56<08:51, 304.21it/s]


 38%|████████████████████████████                                             | 100635/262326 [05:57<08:52, 303.85it/s]


 38%|████████████████████████████                                             | 100671/262326 [05:57<08:51, 304.36it/s]


 38%|████████████████████████████                                             | 100704/262326 [05:57<08:59, 299.36it/s]


 38%|████████████████████████████                                             | 100734/262326 [05:57<09:21, 287.82it/s]


 38%|████████████████████████████                                             | 100763/262326 [05:57<09:49, 274.20it/s]


 38%|████████████████████████████                                             | 100792/262326 [05:57<10:09, 264.91it/s]


 38%|████████████████████████████                                             | 100822/262326 [05:57<09:49, 274.18it/s]


 38%|████████████████████████████                                             | 100852/262326 [05:57<09:36, 280.29it/s]


 38%|████████████████████████████                                             | 100885/262326 [05:57<09:31, 282.40it/s]


 38%|████████████████████████████                                             | 100915/262326 [05:58<09:22, 286.79it/s]


 38%|████████████████████████████                                             | 100944/262326 [05:58<09:25, 285.54it/s]


 38%|████████████████████████████                                             | 100973/262326 [05:58<09:37, 279.61it/s]


 39%|████████████████████████████                                             | 101002/262326 [05:58<09:50, 273.30it/s]


 39%|████████████████████████████                                             | 101030/262326 [05:58<09:57, 269.93it/s]


 39%|████████████████████████████                                             | 101058/262326 [05:58<10:02, 267.62it/s]


 39%|████████████████████████████▏                                            | 101091/262326 [05:58<09:49, 273.68it/s]


 39%|████████████████████████████▏                                            | 101119/262326 [05:58<10:14, 262.49it/s]


 39%|████████████████████████████▏                                            | 101146/262326 [05:58<10:09, 264.26it/s]


 39%|████████████████████████████▏                                            | 101173/262326 [05:59<13:05, 205.15it/s]


 39%|████████████████████████████▏                                            | 101198/262326 [05:59<12:24, 216.35it/s]


 39%|████████████████████████████▏                                            | 101222/262326 [05:59<12:04, 222.44it/s]


 39%|████████████████████████████▏                                            | 101254/262326 [05:59<11:19, 237.13it/s]


 39%|████████████████████████████▏                                            | 101281/262326 [05:59<10:57, 244.95it/s]


 39%|████████████████████████████▏                                            | 101307/262326 [05:59<11:40, 230.02it/s]


 39%|████████████████████████████▏                                            | 101336/262326 [05:59<11:04, 242.44it/s]


 39%|████████████████████████████▏                                            | 101361/262326 [05:59<10:58, 244.53it/s]


 39%|████████████████████████████▏                                            | 101394/262326 [06:00<10:29, 255.72it/s]


 39%|████████████████████████████▏                                            | 101421/262326 [06:00<11:13, 239.05it/s]


 39%|████████████████████████████▏                                            | 101446/262326 [06:00<12:41, 211.16it/s]


 39%|████████████████████████████▏                                            | 101469/262326 [06:00<12:29, 214.49it/s]


 39%|████████████████████████████▏                                            | 101492/262326 [06:00<12:17, 218.15it/s]


 39%|████████████████████████████▎                                            | 101526/262326 [06:00<11:19, 236.57it/s]


 39%|████████████████████████████▎                                            | 101554/262326 [06:00<10:53, 245.90it/s]


 39%|████████████████████████████▎                                            | 101580/262326 [06:00<11:05, 241.68it/s]


 39%|████████████████████████████▎                                            | 101607/262326 [06:00<10:47, 248.24it/s]


 39%|████████████████████████████▎                                            | 101639/262326 [06:01<10:26, 256.53it/s]


 39%|████████████████████████████▎                                            | 101665/262326 [06:01<10:29, 255.39it/s]


 39%|████████████████████████████▎                                            | 101691/262326 [06:01<11:09, 239.95it/s]


 39%|████████████████████████████▎                                            | 101717/262326 [06:01<11:08, 240.30it/s]


 39%|████████████████████████████▎                                            | 101742/262326 [06:01<11:01, 242.76it/s]


 39%|████████████████████████████▎                                            | 101767/262326 [06:01<11:28, 233.31it/s]


 39%|████████████████████████████▎                                            | 101798/262326 [06:01<11:01, 242.76it/s]


 39%|████████████████████████████▎                                            | 101823/262326 [06:01<12:47, 209.23it/s]


 39%|████████████████████████████▎                                            | 101850/262326 [06:01<12:13, 218.70it/s]


 39%|████████████████████████████▎                                            | 101880/262326 [06:02<11:18, 236.52it/s]


 39%|████████████████████████████▎                                            | 101909/262326 [06:02<10:43, 249.23it/s]


 39%|████████████████████████████▎                                            | 101938/262326 [06:02<10:16, 259.98it/s]


 39%|████████████████████████████▎                                            | 101965/262326 [06:02<10:27, 255.66it/s]


 39%|████████████████████████████▍                                            | 101992/262326 [06:02<11:02, 241.88it/s]


 39%|████████████████████████████▍                                            | 102020/262326 [06:02<10:52, 245.54it/s]


 39%|████████████████████████████▍                                            | 102049/262326 [06:02<10:28, 255.19it/s]


 39%|████████████████████████████▍                                            | 102075/262326 [06:02<11:19, 235.71it/s]


 39%|████████████████████████████▍                                            | 102103/262326 [06:02<10:48, 246.98it/s]


 39%|████████████████████████████▍                                            | 102135/262326 [06:03<10:04, 264.86it/s]


 39%|████████████████████████████▍                                            | 102168/262326 [06:03<09:32, 279.73it/s]


 39%|████████████████████████████▍                                            | 102197/262326 [06:03<10:17, 259.46it/s]


 39%|████████████████████████████▍                                            | 102224/262326 [06:03<10:51, 245.56it/s]


 39%|████████████████████████████▍                                            | 102256/262326 [06:03<10:21, 257.52it/s]


 39%|████████████████████████████▍                                            | 102283/262326 [06:03<10:25, 255.96it/s]


 39%|████████████████████████████▍                                            | 102310/262326 [06:03<10:45, 248.06it/s]


 39%|████████████████████████████▍                                            | 102342/262326 [06:03<10:16, 259.46it/s]


 39%|████████████████████████████▍                                            | 102372/262326 [06:03<09:53, 269.57it/s]


 39%|████████████████████████████▍                                            | 102400/262326 [06:04<10:13, 260.65it/s]


 39%|████████████████████████████▌                                            | 102427/262326 [06:04<10:59, 242.35it/s]


 39%|████████████████████████████▌                                            | 102458/262326 [06:04<10:21, 257.30it/s]


 39%|████████████████████████████▌                                            | 102488/262326 [06:04<09:56, 268.16it/s]


 39%|████████████████████████████▌                                            | 102520/262326 [06:04<09:50, 270.62it/s]


 39%|████████████████████████████▌                                            | 102551/262326 [06:04<09:30, 279.82it/s]


 39%|████████████████████████████▌                                            | 102580/262326 [06:04<11:11, 237.85it/s]


 39%|████████████████████████████▌                                            | 102608/262326 [06:04<10:44, 247.79it/s]


 39%|████████████████████████████▌                                            | 102640/262326 [06:05<10:01, 265.47it/s]


 39%|████████████████████████████▌                                            | 102672/262326 [06:05<09:31, 279.27it/s]


 39%|████████████████████████████▌                                            | 102703/262326 [06:05<09:33, 278.54it/s]


 39%|████████████████████████████▌                                            | 102734/262326 [06:05<09:20, 284.55it/s]


 39%|████████████████████████████▌                                            | 102763/262326 [06:05<09:19, 285.25it/s]


 39%|████████████████████████████▌                                            | 102795/262326 [06:05<09:01, 294.57it/s]


 39%|████████████████████████████▌                                            | 102832/262326 [06:05<08:47, 302.10it/s]


 39%|████████████████████████████▌                                            | 102863/262326 [06:05<09:52, 269.07it/s]


 39%|████████████████████████████▋                                            | 102891/262326 [06:05<10:16, 258.70it/s]


 39%|████████████████████████████▋                                            | 102924/262326 [06:06<09:42, 273.78it/s]


 39%|████████████████████████████▋                                            | 102955/262326 [06:06<09:24, 282.24it/s]


 39%|████████████████████████████▋                                            | 102986/262326 [06:06<09:11, 288.92it/s]


 39%|████████████████████████████▋                                            | 103016/262326 [06:06<09:21, 283.84it/s]


 39%|████████████████████████████▋                                            | 103047/262326 [06:06<09:17, 285.95it/s]


 39%|████████████████████████████▋                                            | 103083/262326 [06:06<09:01, 294.10it/s]


 39%|████████████████████████████▋                                            | 103113/262326 [06:06<09:27, 280.73it/s]


 39%|████████████████████████████▋                                            | 103145/262326 [06:06<09:06, 291.45it/s]


 39%|████████████████████████████▋                                            | 103175/262326 [06:06<09:09, 289.87it/s]


 39%|████████████████████████████▋                                            | 103210/262326 [06:06<08:56, 296.62it/s]


 39%|████████████████████████████▋                                            | 103243/262326 [06:07<08:42, 304.38it/s]


 39%|████████████████████████████▋                                            | 103274/262326 [06:07<08:52, 298.87it/s]


 39%|████████████████████████████▋                                            | 103305/262326 [06:07<08:59, 294.60it/s]


 39%|████████████████████████████▊                                            | 103336/262326 [06:07<08:57, 295.87it/s]


 39%|████████████████████████████▊                                            | 103366/262326 [06:07<09:15, 286.29it/s]


 39%|████████████████████████████▊                                            | 103397/262326 [06:07<09:03, 292.41it/s]


 39%|████████████████████████████▊                                            | 103427/262326 [06:07<09:05, 291.54it/s]


 39%|████████████████████████████▊                                            | 103461/262326 [06:07<09:17, 285.08it/s]


 39%|████████████████████████████▊                                            | 103490/262326 [06:07<09:22, 282.62it/s]


 39%|████████████████████████████▊                                            | 103523/262326 [06:08<09:20, 283.56it/s]


 39%|████████████████████████████▊                                            | 103557/262326 [06:08<09:12, 287.33it/s]


 39%|████████████████████████████▊                                            | 103587/262326 [06:08<09:09, 288.62it/s]


 39%|████████████████████████████▊                                            | 103618/262326 [06:08<09:21, 282.83it/s]


 40%|████████████████████████████▊                                            | 103647/262326 [06:08<09:23, 281.43it/s]


 40%|████████████████████████████▊                                            | 103680/262326 [06:08<09:14, 286.27it/s]


 40%|████████████████████████████▊                                            | 103712/262326 [06:08<09:01, 293.07it/s]


 40%|████████████████████████████▊                                            | 103742/262326 [06:08<10:13, 258.67it/s]


 40%|████████████████████████████▉                                            | 103769/262326 [06:08<10:20, 255.49it/s]


 40%|████████████████████████████▉                                            | 103796/262326 [06:09<10:17, 256.67it/s]


 40%|████████████████████████████▉                                            | 103824/262326 [06:09<10:06, 261.34it/s]


 40%|████████████████████████████▉                                            | 103853/262326 [06:09<09:51, 268.00it/s]


 40%|████████████████████████████▉                                            | 103881/262326 [06:09<10:04, 262.05it/s]


 40%|████████████████████████████▉                                            | 103908/262326 [06:09<10:00, 263.77it/s]


 40%|████████████████████████████▉                                            | 103938/262326 [06:09<09:46, 269.89it/s]


 40%|████████████████████████████▉                                            | 103968/262326 [06:09<09:29, 277.89it/s]


 40%|████████████████████████████▉                                            | 103999/262326 [06:09<09:18, 283.63it/s]


 40%|████████████████████████████▉                                            | 104032/262326 [06:09<09:12, 286.44it/s]


 40%|████████████████████████████▉                                            | 104063/262326 [06:10<08:59, 293.11it/s]


 40%|████████████████████████████▉                                            | 104095/262326 [06:10<08:47, 299.93it/s]


 40%|████████████████████████████▉                                            | 104126/262326 [06:10<08:48, 299.51it/s]


 40%|████████████████████████████▉                                            | 104157/262326 [06:10<08:46, 300.23it/s]


 40%|████████████████████████████▉                                            | 104188/262326 [06:10<08:58, 293.77it/s]


 40%|█████████████████████████████                                            | 104218/262326 [06:10<08:55, 295.49it/s]


 40%|█████████████████████████████                                            | 104248/262326 [06:10<08:53, 296.33it/s]


 40%|█████████████████████████████                                            | 104282/262326 [06:10<08:53, 296.15it/s]


 40%|█████████████████████████████                                            | 104312/262326 [06:10<08:51, 297.04it/s]


 40%|█████████████████████████████                                            | 104342/262326 [06:10<08:51, 297.14it/s]


 40%|█████████████████████████████                                            | 104372/262326 [06:11<08:53, 296.21it/s]


 40%|█████████████████████████████                                            | 104402/262326 [06:11<08:51, 297.31it/s]


 40%|█████████████████████████████                                            | 104433/262326 [06:11<08:45, 300.59it/s]


 40%|█████████████████████████████                                            | 104466/262326 [06:11<08:51, 297.08it/s]


 40%|█████████████████████████████                                            | 104496/262326 [06:11<08:52, 296.46it/s]


 40%|█████████████████████████████                                            | 104531/262326 [06:11<08:48, 298.84it/s]


 40%|█████████████████████████████                                            | 104561/262326 [06:11<08:58, 292.73it/s]


 40%|█████████████████████████████                                            | 104596/262326 [06:11<08:45, 299.87it/s]


 40%|█████████████████████████████                                            | 104627/262326 [06:11<08:41, 302.56it/s]


 40%|█████████████████████████████                                            | 104658/262326 [06:12<09:21, 280.92it/s]


 40%|█████████████████████████████▏                                           | 104687/262326 [06:12<09:23, 279.71it/s]


 40%|█████████████████████████████▏                                           | 104716/262326 [06:12<09:33, 274.92it/s]


 40%|█████████████████████████████▏                                           | 104744/262326 [06:12<09:44, 269.40it/s]


 40%|█████████████████████████████▏                                           | 104777/262326 [06:12<09:34, 274.01it/s]


 40%|█████████████████████████████▏                                           | 104813/262326 [06:12<09:12, 284.85it/s]


 40%|█████████████████████████████▏                                           | 104842/262326 [06:12<09:28, 276.90it/s]


 40%|█████████████████████████████▏                                           | 104872/262326 [06:12<09:26, 277.77it/s]


 40%|█████████████████████████████▏                                           | 104902/262326 [06:12<09:18, 281.93it/s]


 40%|█████████████████████████████▏                                           | 104933/262326 [06:13<09:06, 287.74it/s]


 40%|█████████████████████████████▏                                           | 104966/262326 [06:13<09:07, 287.41it/s]


 40%|█████████████████████████████▏                                           | 104996/262326 [06:13<09:00, 290.87it/s]


 40%|█████████████████████████████▏                                           | 105028/262326 [06:13<09:05, 288.13it/s]


 40%|█████████████████████████████▏                                           | 105057/262326 [06:13<09:21, 280.07it/s]


 40%|█████████████████████████████▏                                           | 105088/262326 [06:13<09:09, 286.10it/s]


 40%|█████████████████████████████▎                                           | 105120/262326 [06:13<08:58, 292.13it/s]


 40%|█████████████████████████████▎                                           | 105151/262326 [06:13<08:48, 297.26it/s]


 40%|█████████████████████████████▎                                           | 105187/262326 [06:13<08:40, 301.93it/s]


 40%|█████████████████████████████▎                                           | 105218/262326 [06:13<09:04, 288.28it/s]


 40%|█████████████████████████████▎                                           | 105248/262326 [06:14<09:11, 284.65it/s]


 40%|█████████████████████████████▎                                           | 105280/262326 [06:14<09:05, 287.98it/s]


 40%|█████████████████████████████▎                                           | 105309/262326 [06:14<09:11, 284.64it/s]


 40%|█████████████████████████████▎                                           | 105340/262326 [06:14<09:16, 281.85it/s]


 40%|█████████████████████████████▎                                           | 105371/262326 [06:14<09:02, 289.12it/s]


 40%|█████████████████████████████▎                                           | 105407/262326 [06:14<08:49, 296.13it/s]


 40%|█████████████████████████████▎                                           | 105437/262326 [06:14<08:51, 295.00it/s]


 40%|█████████████████████████████▎                                           | 105467/262326 [06:14<09:52, 264.83it/s]


 40%|█████████████████████████████▎                                           | 105496/262326 [06:14<09:39, 270.74it/s]


 40%|█████████████████████████████▎                                           | 105531/262326 [06:15<09:08, 286.08it/s]


 40%|█████████████████████████████▍                                           | 105566/262326 [06:15<09:01, 289.36it/s]


 40%|█████████████████████████████▍                                           | 105596/262326 [06:15<09:04, 288.09it/s]


 40%|█████████████████████████████▍                                           | 105627/262326 [06:15<09:07, 286.08it/s]


 40%|█████████████████████████████▍                                           | 105657/262326 [06:15<09:00, 289.97it/s]


 40%|█████████████████████████████▍                                           | 105689/262326 [06:15<09:08, 285.43it/s]


 40%|█████████████████████████████▍                                           | 105721/262326 [06:15<08:53, 293.40it/s]


 40%|█████████████████████████████▍                                           | 105757/262326 [06:15<08:43, 299.26it/s]


 40%|█████████████████████████████▍                                           | 105788/262326 [06:15<08:49, 295.50it/s]


 40%|█████████████████████████████▍                                           | 105818/262326 [06:16<09:02, 288.32it/s]


 40%|█████████████████████████████▍                                           | 105848/262326 [06:16<08:59, 290.26it/s]


 40%|█████████████████████████████▍                                           | 105878/262326 [06:16<09:07, 285.67it/s]


 40%|█████████████████████████████▍                                           | 105907/262326 [06:16<09:14, 282.08it/s]


 40%|█████████████████████████████▍                                           | 105936/262326 [06:16<10:01, 260.19it/s]


 40%|█████████████████████████████▍                                           | 105963/262326 [06:16<10:37, 245.34it/s]


 40%|█████████████████████████████▍                                           | 105995/262326 [06:16<09:55, 262.69it/s]


 40%|█████████████████████████████▌                                           | 106029/262326 [06:16<09:27, 275.65it/s]


 40%|█████████████████████████████▌                                           | 106066/262326 [06:16<09:02, 287.94it/s]


 40%|█████████████████████████████▌                                           | 106098/262326 [06:17<08:51, 294.05it/s]


 40%|█████████████████████████████▌                                           | 106135/262326 [06:17<08:37, 301.98it/s]


 40%|█████████████████████████████▌                                           | 106166/262326 [06:17<09:03, 287.33it/s]


 40%|█████████████████████████████▌                                           | 106197/262326 [06:17<09:11, 283.18it/s]


 40%|█████████████████████████████▌                                           | 106228/262326 [06:17<08:56, 290.71it/s]


 41%|█████████████████████████████▌                                           | 106258/262326 [06:17<08:53, 292.40it/s]


 41%|█████████████████████████████▌                                           | 106294/262326 [06:17<08:40, 299.92it/s]


 41%|█████████████████████████████▌                                           | 106327/262326 [06:17<08:30, 305.48it/s]


 41%|█████████████████████████████▌                                           | 106358/262326 [06:17<08:28, 306.52it/s]


 41%|█████████████████████████████▌                                           | 106389/262326 [06:18<08:27, 307.21it/s]


 41%|█████████████████████████████▌                                           | 106420/262326 [06:18<08:33, 303.76it/s]


 41%|█████████████████████████████▌                                           | 106451/262326 [06:18<09:44, 266.72it/s]


 41%|█████████████████████████████▋                                           | 106479/262326 [06:18<11:00, 235.88it/s]


 41%|█████████████████████████████▋                                           | 106513/262326 [06:18<10:17, 252.16it/s]


 41%|█████████████████████████████▋                                           | 106541/262326 [06:18<10:00, 259.32it/s]


 41%|█████████████████████████████▋                                           | 106570/262326 [06:18<10:06, 256.79it/s]


 41%|█████████████████████████████▋                                           | 106600/262326 [06:18<09:46, 265.62it/s]


 41%|█████████████████████████████▋                                           | 106628/262326 [06:18<09:42, 267.52it/s]


 41%|█████████████████████████████▋                                           | 106656/262326 [06:19<10:29, 247.24it/s]


 41%|█████████████████████████████▋                                           | 106682/262326 [06:19<10:55, 237.39it/s]


 41%|█████████████████████████████▋                                           | 106715/262326 [06:19<10:09, 255.11it/s]


 41%|█████████████████████████████▋                                           | 106744/262326 [06:19<09:50, 263.68it/s]


 41%|█████████████████████████████▋                                           | 106780/262326 [06:19<09:22, 276.69it/s]


 41%|█████████████████████████████▋                                           | 106809/262326 [06:19<09:28, 273.45it/s]


 41%|█████████████████████████████▋                                           | 106843/262326 [06:19<09:07, 283.86it/s]


 41%|█████████████████████████████▋                                           | 106874/262326 [06:19<08:54, 290.71it/s]


 41%|█████████████████████████████▊                                           | 106910/262326 [06:19<08:43, 296.89it/s]


 41%|█████████████████████████████▊                                           | 106947/262326 [06:20<08:31, 303.55it/s]


 41%|█████████████████████████████▊                                           | 106979/262326 [06:20<08:32, 302.99it/s]


 41%|█████████████████████████████▊                                           | 107010/262326 [06:20<10:00, 258.60it/s]


 41%|█████████████████████████████▊                                           | 107038/262326 [06:20<09:55, 260.64it/s]


 41%|█████████████████████████████▊                                           | 107073/262326 [06:20<09:27, 273.61it/s]


 41%|█████████████████████████████▊                                           | 107106/262326 [06:20<09:21, 276.21it/s]


 41%|█████████████████████████████▊                                           | 107137/262326 [06:20<09:06, 284.19it/s]


 41%|█████████████████████████████▊                                           | 107172/262326 [06:20<08:54, 290.24it/s]


 41%|█████████████████████████████▊                                           | 107203/262326 [06:21<08:45, 295.10it/s]


 41%|█████████████████████████████▊                                           | 107234/262326 [06:21<08:40, 297.78it/s]


 41%|█████████████████████████████▊                                           | 107264/262326 [06:21<08:48, 293.47it/s]


 41%|█████████████████████████████▊                                           | 107294/262326 [06:21<08:58, 288.01it/s]


 41%|█████████████████████████████▊                                           | 107323/262326 [06:21<10:14, 252.14it/s]


 41%|█████████████████████████████▊                                           | 107351/262326 [06:21<10:01, 257.82it/s]


 41%|█████████████████████████████▉                                           | 107381/262326 [06:21<09:36, 268.99it/s]


 41%|█████████████████████████████▉                                           | 107413/262326 [06:21<09:10, 281.37it/s]


 41%|█████████████████████████████▉                                           | 107442/262326 [06:21<09:27, 272.89it/s]


 41%|█████████████████████████████▉                                           | 107470/262326 [06:22<09:27, 272.66it/s]


 41%|█████████████████████████████▉                                           | 107504/262326 [06:22<09:15, 278.82it/s]


 41%|█████████████████████████████▉                                           | 107535/262326 [06:22<09:02, 285.54it/s]


 41%|█████████████████████████████▉                                           | 107564/262326 [06:22<09:06, 283.15it/s]


 41%|█████████████████████████████▉                                           | 107597/262326 [06:22<08:56, 288.65it/s]


 41%|█████████████████████████████▉                                           | 107629/262326 [06:22<08:40, 297.25it/s]


 41%|█████████████████████████████▉                                           | 107659/262326 [06:22<08:55, 288.93it/s]


 41%|█████████████████████████████▉                                           | 107692/262326 [06:22<08:43, 295.49it/s]


 41%|█████████████████████████████▉                                           | 107722/262326 [06:22<08:43, 295.28it/s]


 41%|█████████████████████████████▉                                           | 107759/262326 [06:22<08:29, 303.32it/s]


 41%|█████████████████████████████▉                                           | 107790/262326 [06:23<08:28, 303.87it/s]


 41%|██████████████████████████████                                           | 107821/262326 [06:23<08:27, 304.64it/s]


 41%|██████████████████████████████                                           | 107852/262326 [06:23<08:46, 293.56it/s]


 41%|██████████████████████████████                                           | 107882/262326 [06:23<08:45, 294.16it/s]


 41%|██████████████████████████████                                           | 107912/262326 [06:23<09:03, 284.36it/s]


 41%|██████████████████████████████                                           | 107943/262326 [06:23<08:55, 288.21it/s]


 41%|██████████████████████████████                                           | 107974/262326 [06:23<08:45, 293.58it/s]


 41%|██████████████████████████████                                           | 108005/262326 [06:23<08:42, 295.28it/s]


 41%|██████████████████████████████                                           | 108036/262326 [06:23<08:38, 297.54it/s]


 41%|██████████████████████████████                                           | 108066/262326 [06:24<08:53, 289.07it/s]


 41%|██████████████████████████████                                           | 108095/262326 [06:24<09:03, 283.65it/s]


 41%|██████████████████████████████                                           | 108124/262326 [06:24<09:15, 277.64it/s]


 41%|██████████████████████████████                                           | 108154/262326 [06:24<09:03, 283.86it/s]


 41%|██████████████████████████████                                           | 108183/262326 [06:24<09:07, 281.53it/s]


 41%|██████████████████████████████                                           | 108212/262326 [06:24<09:11, 279.33it/s]


 41%|██████████████████████████████                                           | 108240/262326 [06:24<09:15, 277.25it/s]


 41%|██████████████████████████████▏                                          | 108270/262326 [06:24<09:09, 280.20it/s]


 41%|██████████████████████████████▏                                          | 108300/262326 [06:24<09:19, 275.06it/s]


 41%|██████████████████████████████▏                                          | 108331/262326 [06:24<09:02, 284.02it/s]


 41%|██████████████████████████████▏                                          | 108360/262326 [06:25<09:02, 283.66it/s]


 41%|██████████████████████████████▏                                          | 108389/262326 [06:25<09:19, 275.21it/s]


 41%|██████████████████████████████▏                                          | 108417/262326 [06:25<09:40, 265.11it/s]


 41%|██████████████████████████████▏                                          | 108444/262326 [06:25<09:45, 262.86it/s]


 41%|██████████████████████████████▏                                          | 108472/262326 [06:25<09:35, 267.21it/s]


 41%|██████████████████████████████▏                                          | 108499/262326 [06:25<09:35, 267.39it/s]


 41%|██████████████████████████████▏                                          | 108530/262326 [06:25<09:32, 268.47it/s]


 41%|██████████████████████████████▏                                          | 108557/262326 [06:25<10:54, 234.97it/s]


 41%|██████████████████████████████▏                                          | 108586/262326 [06:25<10:20, 247.68it/s]


 41%|██████████████████████████████▏                                          | 108614/262326 [06:26<10:00, 255.89it/s]


 41%|██████████████████████████████▏                                          | 108649/262326 [06:26<09:31, 268.83it/s]


 41%|██████████████████████████████▏                                          | 108680/262326 [06:26<09:23, 272.89it/s]


 41%|██████████████████████████████▎                                          | 108709/262326 [06:26<09:27, 270.53it/s]


 41%|██████████████████████████████▎                                          | 108737/262326 [06:26<09:47, 261.26it/s]


 41%|██████████████████████████████▎                                          | 108764/262326 [06:26<09:54, 258.25it/s]


 41%|██████████████████████████████▎                                          | 108795/262326 [06:26<09:38, 265.50it/s]


 41%|██████████████████████████████▎                                          | 108822/262326 [06:26<09:37, 266.02it/s]


 41%|██████████████████████████████▎                                          | 108849/262326 [06:26<10:01, 255.13it/s]


 42%|██████████████████████████████▎                                          | 108877/262326 [06:27<09:47, 261.26it/s]


 42%|██████████████████████████████▎                                          | 108904/262326 [06:27<10:04, 253.72it/s]


 42%|██████████████████████████████▎                                          | 108930/262326 [06:27<10:11, 250.89it/s]


 42%|██████████████████████████████▎                                          | 108956/262326 [06:27<10:31, 242.78it/s]


 42%|██████████████████████████████▎                                          | 108981/262326 [06:27<10:32, 242.25it/s]


 42%|██████████████████████████████▎                                          | 109006/262326 [06:27<10:47, 236.76it/s]


 42%|██████████████████████████████▎                                          | 109032/262326 [06:27<10:30, 243.17it/s]


 42%|██████████████████████████████▎                                          | 109057/262326 [06:27<10:44, 237.69it/s]


 42%|██████████████████████████████▎                                          | 109081/262326 [06:27<10:45, 237.50it/s]


 42%|██████████████████████████████▎                                          | 109105/262326 [06:28<10:51, 235.14it/s]


 42%|██████████████████████████████▎                                          | 109129/262326 [06:28<10:54, 233.98it/s]


 42%|██████████████████████████████▍                                          | 109153/262326 [06:28<10:53, 234.56it/s]


 42%|██████████████████████████████▍                                          | 109178/262326 [06:28<10:46, 236.96it/s]


 42%|██████████████████████████████▍                                          | 109204/262326 [06:28<10:35, 240.90it/s]


 42%|██████████████████████████████▍                                          | 109233/262326 [06:28<10:11, 250.36it/s]


 42%|██████████████████████████████▍                                          | 109260/262326 [06:28<10:01, 254.56it/s]


 42%|██████████████████████████████▍                                          | 109286/262326 [06:28<10:00, 255.00it/s]


 42%|██████████████████████████████▍                                          | 109316/262326 [06:28<09:55, 257.01it/s]


 42%|██████████████████████████████▍                                          | 109348/262326 [06:28<09:42, 262.71it/s]


 42%|██████████████████████████████▍                                          | 109378/262326 [06:29<09:23, 271.65it/s]


 42%|██████████████████████████████▍                                          | 109413/262326 [06:29<09:05, 280.56it/s]


 42%|██████████████████████████████▍                                          | 109442/262326 [06:29<11:56, 213.52it/s]


 42%|██████████████████████████████▍                                          | 109470/262326 [06:29<11:17, 225.78it/s]


 42%|██████████████████████████████▍                                          | 109495/262326 [06:29<12:50, 198.24it/s]


 42%|██████████████████████████████▍                                          | 109520/262326 [06:29<12:09, 209.48it/s]


 42%|██████████████████████████████▍                                          | 109555/262326 [06:29<11:00, 231.19it/s]


 42%|██████████████████████████████▍                                          | 109584/262326 [06:30<10:23, 244.95it/s]


 42%|██████████████████████████████▌                                          | 109610/262326 [06:30<10:17, 247.14it/s]


 42%|██████████████████████████████▌                                          | 109636/262326 [06:30<12:55, 196.95it/s]


 42%|██████████████████████████████▌                                          | 109663/262326 [06:30<11:56, 213.11it/s]


 42%|██████████████████████████████▌                                          | 109687/262326 [06:30<12:33, 202.53it/s]


 42%|██████████████████████████████▌                                          | 109709/262326 [06:30<12:22, 205.48it/s]


 42%|██████████████████████████████▌                                          | 109742/262326 [06:30<11:19, 224.63it/s]


 42%|██████████████████████████████▌                                          | 109773/262326 [06:30<10:29, 242.33it/s]


 42%|██████████████████████████████▌                                          | 109799/262326 [06:30<10:34, 240.47it/s]


 42%|██████████████████████████████▌                                          | 109824/262326 [06:31<14:45, 172.22it/s]


 42%|██████████████████████████████▌                                          | 109845/262326 [06:31<15:07, 167.94it/s]


 42%|██████████████████████████████▌                                          | 109865/262326 [06:31<14:54, 170.50it/s]


 42%|██████████████████████████████▌                                          | 109886/262326 [06:31<14:04, 180.50it/s]


 42%|██████████████████████████████▌                                          | 109906/262326 [06:31<14:14, 178.37it/s]


 42%|██████████████████████████████▌                                          | 109932/262326 [06:31<12:56, 196.16it/s]


 42%|██████████████████████████████▌                                          | 109960/262326 [06:31<11:47, 215.38it/s]


 42%|██████████████████████████████▌                                          | 109983/262326 [06:32<14:08, 179.51it/s]


 42%|██████████████████████████████▌                                          | 110010/262326 [06:32<12:53, 196.91it/s]


 42%|██████████████████████████████▌                                          | 110035/262326 [06:32<12:09, 208.76it/s]


 42%|██████████████████████████████▋                                          | 110066/262326 [06:32<11:12, 226.52it/s]


 42%|██████████████████████████████▋                                          | 110094/262326 [06:32<10:37, 238.98it/s]


 42%|██████████████████████████████▋                                          | 110121/262326 [06:32<10:16, 246.84it/s]


 42%|██████████████████████████████▋                                          | 110149/262326 [06:32<10:19, 245.58it/s]


 42%|██████████████████████████████▋                                          | 110178/262326 [06:32<09:54, 255.80it/s]


 42%|██████████████████████████████▋                                          | 110213/262326 [06:32<09:24, 269.37it/s]


 42%|██████████████████████████████▋                                          | 110244/262326 [06:33<09:04, 279.14it/s]


 42%|██████████████████████████████▋                                          | 110274/262326 [06:33<08:56, 283.31it/s]


 42%|██████████████████████████████▋                                          | 110303/262326 [06:33<08:57, 283.08it/s]


 42%|██████████████████████████████▋                                          | 110337/262326 [06:33<08:47, 287.95it/s]


 42%|██████████████████████████████▋                                          | 110366/262326 [06:33<09:10, 275.91it/s]


 42%|██████████████████████████████▋                                          | 110394/262326 [06:33<09:09, 276.47it/s]


 42%|██████████████████████████████▋                                          | 110422/262326 [06:33<09:08, 276.92it/s]


 42%|██████████████████████████████▋                                          | 110450/262326 [06:33<09:06, 277.78it/s]


 42%|██████████████████████████████▋                                          | 110479/262326 [06:33<09:26, 267.89it/s]


 42%|██████████████████████████████▊                                          | 110508/262326 [06:33<09:15, 273.35it/s]


 42%|██████████████████████████████▊                                          | 110536/262326 [06:34<09:12, 274.90it/s]


 42%|██████████████████████████████▊                                          | 110565/262326 [06:34<09:04, 278.68it/s]


 42%|██████████████████████████████▊                                          | 110593/262326 [06:34<09:13, 274.38it/s]


 42%|██████████████████████████████▊                                          | 110621/262326 [06:34<09:26, 267.87it/s]


 42%|██████████████████████████████▊                                          | 110648/262326 [06:34<09:42, 260.20it/s]


 42%|██████████████████████████████▊                                          | 110676/262326 [06:34<09:33, 264.52it/s]


 42%|██████████████████████████████▊                                          | 110703/262326 [06:34<09:39, 261.71it/s]


 42%|██████████████████████████████▊                                          | 110730/262326 [06:34<09:51, 256.12it/s]


 42%|██████████████████████████████▊                                          | 110756/262326 [06:34<09:55, 254.48it/s]


 42%|██████████████████████████████▊                                          | 110782/262326 [06:35<10:13, 246.85it/s]


 42%|██████████████████████████████▊                                          | 110807/262326 [06:35<10:15, 246.37it/s]


 42%|██████████████████████████████▊                                          | 110835/262326 [06:35<09:58, 252.96it/s]


 42%|██████████████████████████████▊                                          | 110861/262326 [06:35<09:55, 254.36it/s]


 42%|██████████████████████████████▊                                          | 110888/262326 [06:35<09:46, 258.38it/s]


 42%|██████████████████████████████▊                                          | 110923/262326 [06:35<09:17, 271.72it/s]


 42%|██████████████████████████████▉                                          | 110951/262326 [06:35<09:12, 273.86it/s]


 42%|██████████████████████████████▉                                          | 110979/262326 [06:35<09:36, 262.36it/s]


 42%|██████████████████████████████▉                                          | 111006/262326 [06:35<09:51, 255.82it/s]


 42%|██████████████████████████████▉                                          | 111033/262326 [06:35<09:44, 258.85it/s]


 42%|██████████████████████████████▉                                          | 111060/262326 [06:36<10:02, 251.17it/s]


 42%|██████████████████████████████▉                                          | 111086/262326 [06:36<10:35, 237.96it/s]


 42%|██████████████████████████████▉                                          | 111111/262326 [06:36<11:18, 222.94it/s]


 42%|██████████████████████████████▉                                          | 111138/262326 [06:36<10:43, 235.02it/s]


 42%|██████████████████████████████▉                                          | 111168/262326 [06:36<10:07, 248.64it/s]


 42%|██████████████████████████████▉                                          | 111196/262326 [06:36<09:49, 256.27it/s]


 42%|██████████████████████████████▉                                          | 111223/262326 [06:36<09:42, 259.42it/s]


 42%|██████████████████████████████▉                                          | 111257/262326 [06:36<09:18, 270.61it/s]


 42%|██████████████████████████████▉                                          | 111285/262326 [06:36<09:27, 266.19it/s]


 42%|██████████████████████████████▉                                          | 111312/262326 [06:37<09:35, 262.31it/s]


 42%|██████████████████████████████▉                                          | 111339/262326 [06:37<09:33, 263.23it/s]


 42%|██████████████████████████████▉                                          | 111366/262326 [06:37<09:33, 263.13it/s]


 42%|██████████████████████████████▉                                          | 111393/262326 [06:37<11:42, 214.72it/s]


 42%|███████████████████████████████                                          | 111422/262326 [06:37<10:55, 230.33it/s]


 42%|███████████████████████████████                                          | 111449/262326 [06:37<10:29, 239.80it/s]


 42%|███████████████████████████████                                          | 111478/262326 [06:37<10:07, 248.50it/s]


 43%|███████████████████████████████                                          | 111504/262326 [06:37<10:03, 250.07it/s]


 43%|███████████████████████████████                                          | 111531/262326 [06:37<09:51, 254.74it/s]


 43%|███████████████████████████████                                          | 111559/262326 [06:38<09:37, 260.97it/s]


 43%|███████████████████████████████                                          | 111586/262326 [06:38<09:36, 261.52it/s]


 43%|███████████████████████████████                                          | 111615/262326 [06:38<09:24, 266.93it/s]


 43%|███████████████████████████████                                          | 111642/262326 [06:38<09:41, 258.99it/s]


 43%|███████████████████████████████                                          | 111671/262326 [06:38<09:23, 267.51it/s]


 43%|███████████████████████████████                                          | 111708/262326 [06:38<09:11, 273.27it/s]


 43%|███████████████████████████████                                          | 111736/262326 [06:38<10:01, 250.38it/s]


 43%|███████████████████████████████                                          | 111762/262326 [06:38<10:20, 242.77it/s]


 43%|███████████████████████████████                                          | 111787/262326 [06:38<10:29, 238.99it/s]


 43%|███████████████████████████████                                          | 111812/262326 [06:39<10:37, 236.21it/s]


 43%|███████████████████████████████                                          | 111841/262326 [06:39<10:05, 248.52it/s]


 43%|███████████████████████████████▏                                         | 111867/262326 [06:39<10:02, 249.90it/s]


 43%|███████████████████████████████▏                                         | 111896/262326 [06:39<09:37, 260.29it/s]


 43%|███████████████████████████████▏                                         | 111927/262326 [06:39<09:12, 271.98it/s]


 43%|███████████████████████████████▏                                         | 111962/262326 [06:39<08:54, 281.50it/s]


 43%|███████████████████████████████▏                                         | 111991/262326 [06:39<08:53, 281.68it/s]


 43%|███████████████████████████████▏                                         | 112020/262326 [06:39<09:12, 271.86it/s]


 43%|███████████████████████████████▏                                         | 112051/262326 [06:39<08:54, 281.00it/s]


 43%|███████████████████████████████▏                                         | 112081/262326 [06:40<08:45, 286.03it/s]


 43%|███████████████████████████████▏                                         | 112110/262326 [06:40<09:03, 276.27it/s]


 43%|███████████████████████████████▏                                         | 112140/262326 [06:40<08:54, 280.77it/s]


 43%|███████████████████████████████▏                                         | 112170/262326 [06:40<08:44, 286.15it/s]


 43%|███████████████████████████████▏                                         | 112200/262326 [06:40<08:38, 289.75it/s]


 43%|███████████████████████████████▏                                         | 112231/262326 [06:40<08:34, 291.77it/s]


 43%|███████████████████████████████▏                                         | 112265/262326 [06:40<08:28, 295.13it/s]


 43%|███████████████████████████████▏                                         | 112295/262326 [06:40<08:28, 294.81it/s]


 43%|███████████████████████████████▎                                         | 112325/262326 [06:40<09:08, 273.46it/s]


 43%|███████████████████████████████▎                                         | 112353/262326 [06:41<09:22, 266.60it/s]


 43%|███████████████████████████████▎                                         | 112380/262326 [06:41<09:55, 251.93it/s]


 43%|███████████████████████████████▎                                         | 112406/262326 [06:41<09:51, 253.42it/s]


 43%|███████████████████████████████▎                                         | 112432/262326 [06:41<09:53, 252.75it/s]


 43%|███████████████████████████████▎                                         | 112458/262326 [06:41<10:19, 241.77it/s]


 43%|███████████████████████████████▎                                         | 112485/262326 [06:41<10:06, 247.05it/s]


 43%|███████████████████████████████▎                                         | 112510/262326 [06:41<10:22, 240.52it/s]


 43%|███████████████████████████████▎                                         | 112537/262326 [06:41<10:03, 248.17it/s]


 43%|███████████████████████████████▎                                         | 112565/262326 [06:41<09:46, 255.41it/s]


 43%|███████████████████████████████▎                                         | 112596/262326 [06:41<09:29, 263.01it/s]


 43%|███████████████████████████████▎                                         | 112627/262326 [06:42<09:04, 274.72it/s]


 43%|███████████████████████████████▎                                         | 112655/262326 [06:42<09:07, 273.30it/s]


 43%|███████████████████████████████▎                                         | 112685/262326 [06:42<08:56, 278.69it/s]


 43%|███████████████████████████████▎                                         | 112714/262326 [06:42<09:00, 276.90it/s]


 43%|███████████████████████████████▎                                         | 112745/262326 [06:42<08:53, 280.42it/s]


 43%|███████████████████████████████▍                                         | 112776/262326 [06:42<08:42, 286.49it/s]


 43%|███████████████████████████████▍                                         | 112805/262326 [06:42<08:53, 280.48it/s]


 43%|███████████████████████████████▍                                         | 112835/262326 [06:42<08:43, 285.52it/s]


 43%|███████████████████████████████▍                                         | 112864/262326 [06:42<08:51, 281.22it/s]


 43%|███████████████████████████████▍                                         | 112893/262326 [06:43<08:50, 281.79it/s]


 43%|███████████████████████████████▍                                         | 112922/262326 [06:43<08:53, 280.30it/s]


 43%|███████████████████████████████▍                                         | 112951/262326 [06:43<09:05, 274.01it/s]


 43%|███████████████████████████████▍                                         | 112979/262326 [06:43<09:17, 268.02it/s]


 43%|███████████████████████████████▍                                         | 113006/262326 [06:43<09:22, 265.66it/s]


 43%|███████████████████████████████▍                                         | 113036/262326 [06:43<09:03, 274.56it/s]


 43%|███████████████████████████████▍                                         | 113065/262326 [06:43<09:00, 276.21it/s]


 43%|███████████████████████████████▍                                         | 113093/262326 [06:43<09:00, 275.92it/s]


 43%|███████████████████████████████▍                                         | 113121/262326 [06:43<09:26, 263.32it/s]


 43%|███████████████████████████████▍                                         | 113148/262326 [06:44<10:12, 243.55it/s]


 43%|███████████████████████████████▍                                         | 113173/262326 [06:44<10:10, 244.32it/s]


 43%|███████████████████████████████▌                                         | 113198/262326 [06:44<10:46, 230.55it/s]


 43%|███████████████████████████████▌                                         | 113222/262326 [06:44<10:44, 231.47it/s]


 43%|███████████████████████████████▌                                         | 113246/262326 [06:44<10:53, 228.17it/s]


 43%|███████████████████████████████▌                                         | 113271/262326 [06:44<10:42, 232.16it/s]


 43%|███████████████████████████████▌                                         | 113295/262326 [06:44<11:01, 225.41it/s]


 43%|███████████████████████████████▌                                         | 113318/262326 [06:44<11:08, 222.98it/s]


 43%|███████████████████████████████▌                                         | 113341/262326 [06:44<11:21, 218.55it/s]


 43%|███████████████████████████████▌                                         | 113366/262326 [06:44<11:06, 223.62it/s]


 43%|███████████████████████████████▌                                         | 113391/262326 [06:45<10:55, 227.33it/s]


 43%|███████████████████████████████▌                                         | 113421/262326 [06:45<10:11, 243.52it/s]


 43%|███████████████████████████████▌                                         | 113447/262326 [06:45<10:06, 245.64it/s]


 43%|███████████████████████████████▌                                         | 113481/262326 [06:45<09:31, 260.66it/s]


 43%|███████████████████████████████▌                                         | 113512/262326 [06:45<09:04, 273.47it/s]


 43%|███████████████████████████████▌                                         | 113543/262326 [06:45<08:45, 283.08it/s]


 43%|███████████████████████████████▌                                         | 113572/262326 [06:45<08:42, 284.76it/s]


 43%|███████████████████████████████▌                                         | 113601/262326 [06:45<09:13, 268.69it/s]


 43%|███████████████████████████████▌                                         | 113633/262326 [06:45<09:02, 274.09it/s]


 43%|███████████████████████████████▋                                         | 113664/262326 [06:46<08:43, 283.76it/s]


 43%|███████████████████████████████▋                                         | 113700/262326 [06:46<08:29, 291.76it/s]


 43%|███████████████████████████████▋                                         | 113731/262326 [06:46<08:22, 295.74it/s]


 43%|███████████████████████████████▋                                         | 113761/262326 [06:46<08:21, 296.08it/s]


 43%|███████████████████████████████▋                                         | 113796/262326 [06:46<08:16, 299.07it/s]


 43%|███████████████████████████████▋                                         | 113827/262326 [06:46<08:11, 302.13it/s]


 43%|███████████████████████████████▋                                         | 113858/262326 [06:46<09:03, 272.95it/s]


 43%|███████████████████████████████▋                                         | 113887/262326 [06:46<08:58, 275.88it/s]


 43%|███████████████████████████████▋                                         | 113916/262326 [06:46<09:02, 273.66it/s]


 43%|███████████████████████████████▋                                         | 113944/262326 [06:47<09:06, 271.53it/s]


 43%|███████████████████████████████▋                                         | 113973/262326 [06:47<09:06, 271.47it/s]


 43%|███████████████████████████████▋                                         | 114001/262326 [06:47<09:02, 273.56it/s]


 43%|███████████████████████████████▋                                         | 114033/262326 [06:47<08:50, 279.46it/s]


 43%|███████████████████████████████▋                                         | 114062/262326 [06:47<09:29, 260.24it/s]


 43%|███████████████████████████████▋                                         | 114089/262326 [06:47<09:30, 259.63it/s]


 44%|███████████████████████████████▊                                         | 114118/262326 [06:47<09:17, 266.07it/s]


 44%|███████████████████████████████▊                                         | 114148/262326 [06:47<09:02, 273.01it/s]


 44%|███████████████████████████████▊                                         | 114177/262326 [06:47<09:09, 269.77it/s]


 44%|███████████████████████████████▊                                         | 114217/262326 [06:48<08:49, 279.83it/s]


 44%|███████████████████████████████▊                                         | 114251/262326 [06:48<08:33, 288.49it/s]


 44%|███████████████████████████████▊                                         | 114281/262326 [06:48<08:28, 290.92it/s]


 44%|███████████████████████████████▊                                         | 114311/262326 [06:48<09:02, 272.73it/s]


 44%|███████████████████████████████▊                                         | 114347/262326 [06:48<08:41, 283.69it/s]


 44%|███████████████████████████████▊                                         | 114376/262326 [06:48<08:38, 285.42it/s]


 44%|███████████████████████████████▊                                         | 114405/262326 [06:48<08:39, 284.97it/s]


 44%|███████████████████████████████▊                                         | 114434/262326 [06:48<08:36, 286.09it/s]


 44%|███████████████████████████████▊                                         | 114463/262326 [06:48<08:57, 275.10it/s]


 44%|███████████████████████████████▊                                         | 114492/262326 [06:48<08:49, 279.19it/s]


 44%|███████████████████████████████▊                                         | 114522/262326 [06:49<08:40, 283.79it/s]


 44%|███████████████████████████████▉                                         | 114555/262326 [06:49<08:39, 284.29it/s]


 44%|███████████████████████████████▉                                         | 114584/262326 [06:49<08:44, 281.84it/s]


 44%|███████████████████████████████▉                                         | 114616/262326 [06:49<08:41, 283.09it/s]


 44%|███████████████████████████████▉                                         | 114645/262326 [06:49<09:13, 267.00it/s]


 44%|███████████████████████████████▉                                         | 114681/262326 [06:49<08:42, 282.72it/s]


 44%|███████████████████████████████▉                                         | 114711/262326 [06:49<08:34, 287.06it/s]


 44%|███████████████████████████████▉                                         | 114741/262326 [06:49<08:50, 278.20it/s]


 44%|███████████████████████████████▉                                         | 114770/262326 [06:49<08:47, 279.91it/s]


 44%|███████████████████████████████▉                                         | 114799/262326 [06:50<08:43, 281.93it/s]


 44%|███████████████████████████████▉                                         | 114834/262326 [06:50<08:30, 289.07it/s]


 44%|███████████████████████████████▉                                         | 114864/262326 [06:50<09:07, 269.27it/s]


 44%|███████████████████████████████▉                                         | 114895/262326 [06:50<08:54, 275.77it/s]


 44%|███████████████████████████████▉                                         | 114931/262326 [06:50<08:35, 285.88it/s]


 44%|███████████████████████████████▉                                         | 114961/262326 [06:50<08:31, 288.10it/s]


 44%|███████████████████████████████▉                                         | 114991/262326 [06:50<08:25, 291.34it/s]


 44%|████████████████████████████████                                         | 115021/262326 [06:50<08:50, 277.70it/s]


 44%|████████████████████████████████                                         | 115053/262326 [06:50<08:46, 279.75it/s]


 44%|████████████████████████████████                                         | 115084/262326 [06:51<08:32, 287.09it/s]


 44%|████████████████████████████████                                         | 115114/262326 [06:51<08:49, 277.84it/s]


 44%|████████████████████████████████                                         | 115143/262326 [06:51<08:46, 279.79it/s]


 44%|████████████████████████████████                                         | 115178/262326 [06:51<08:31, 287.75it/s]


 44%|████████████████████████████████                                         | 115207/262326 [06:51<08:56, 274.41it/s]


 44%|████████████████████████████████                                         | 115235/262326 [06:51<08:54, 274.97it/s]


 44%|████████████████████████████████                                         | 115263/262326 [06:51<08:55, 274.78it/s]


 44%|████████████████████████████████                                         | 115293/262326 [06:51<08:50, 277.00it/s]


 44%|████████████████████████████████                                         | 115323/262326 [06:51<08:42, 281.35it/s]


 44%|████████████████████████████████                                         | 115352/262326 [06:52<08:48, 278.10it/s]


 44%|████████████████████████████████                                         | 115387/262326 [06:52<08:31, 287.04it/s]


 44%|████████████████████████████████                                         | 115418/262326 [06:52<08:23, 291.50it/s]


 44%|████████████████████████████████▏                                        | 115448/262326 [06:52<09:12, 265.81it/s]


 44%|████████████████████████████████▏                                        | 115480/262326 [06:52<09:03, 270.10it/s]


 44%|████████████████████████████████▏                                        | 115511/262326 [06:52<09:04, 269.56it/s]


 44%|████████████████████████████████▏                                        | 115540/262326 [06:52<08:55, 273.92it/s]


 44%|████████████████████████████████▏                                        | 115576/262326 [06:52<08:34, 284.98it/s]


 44%|████████████████████████████████▏                                        | 115607/262326 [06:52<08:24, 290.85it/s]


 44%|████████████████████████████████▏                                        | 115638/262326 [06:53<08:15, 295.83it/s]


 44%|████████████████████████████████▏                                        | 115673/262326 [06:53<08:11, 298.12it/s]


 44%|████████████████████████████████▏                                        | 115703/262326 [06:53<08:17, 294.66it/s]


 44%|████████████████████████████████▏                                        | 115735/262326 [06:53<08:21, 292.23it/s]


 44%|████████████████████████████████▏                                        | 115765/262326 [06:53<08:19, 293.63it/s]


 44%|████████████████████████████████▏                                        | 115796/262326 [06:53<08:36, 283.76it/s]


 44%|████████████████████████████████▏                                        | 115830/262326 [06:53<08:30, 286.97it/s]


 44%|████████████████████████████████▏                                        | 115861/262326 [06:53<08:21, 291.80it/s]


 44%|████████████████████████████████▎                                        | 115895/262326 [06:53<08:19, 293.42it/s]


 44%|████████████████████████████████▎                                        | 115926/262326 [06:54<08:15, 295.68it/s]


 44%|████████████████████████████████▎                                        | 115961/262326 [06:54<08:09, 298.78it/s]


 44%|████████████████████████████████▎                                        | 115991/262326 [06:54<09:02, 269.61it/s]


 44%|████████████████████████████████▎                                        | 116019/262326 [06:54<10:13, 238.61it/s]


 44%|████████████████████████████████▎                                        | 116049/262326 [06:54<09:50, 247.67it/s]


 44%|████████████████████████████████▎                                        | 116077/262326 [06:54<09:31, 256.06it/s]


 44%|████████████████████████████████▎                                        | 116105/262326 [06:54<09:17, 262.26it/s]


 44%|████████████████████████████████▎                                        | 116132/262326 [06:54<09:15, 263.14it/s]


 44%|████████████████████████████████▎                                        | 116159/262326 [06:54<09:33, 255.09it/s]


 44%|████████████████████████████████▎                                        | 116186/262326 [06:55<09:23, 259.24it/s]


 44%|████████████████████████████████▎                                        | 116214/262326 [06:55<09:14, 263.59it/s]


 44%|████████████████████████████████▎                                        | 116242/262326 [06:55<09:08, 266.46it/s]


 44%|████████████████████████████████▎                                        | 116271/262326 [06:55<08:56, 272.43it/s]


 44%|████████████████████████████████▎                                        | 116299/262326 [06:55<09:25, 258.19it/s]


 44%|████████████████████████████████▎                                        | 116326/262326 [06:55<09:37, 253.02it/s]


 44%|████████████████████████████████▍                                        | 116352/262326 [06:55<09:58, 243.78it/s]


 44%|████████████████████████████████▍                                        | 116380/262326 [06:55<09:37, 252.68it/s]


 44%|████████████████████████████████▍                                        | 116408/262326 [06:55<09:23, 259.05it/s]


 44%|████████████████████████████████▍                                        | 116436/262326 [06:56<09:15, 262.44it/s]


 44%|████████████████████████████████▍                                        | 116463/262326 [06:56<09:11, 264.55it/s]


 44%|████████████████████████████████▍                                        | 116490/262326 [06:56<09:14, 263.10it/s]


 44%|████████████████████████████████▍                                        | 116517/262326 [06:56<09:21, 259.54it/s]


 44%|████████████████████████████████▍                                        | 116545/262326 [06:56<09:13, 263.49it/s]


 44%|████████████████████████████████▍                                        | 116572/262326 [06:56<09:35, 253.26it/s]


 44%|████████████████████████████████▍                                        | 116598/262326 [06:56<09:34, 253.55it/s]


 44%|████████████████████████████████▍                                        | 116627/262326 [06:56<09:14, 262.61it/s]


 44%|████████████████████████████████▍                                        | 116662/262326 [06:56<08:50, 274.44it/s]


 44%|████████████████████████████████▍                                        | 116691/262326 [06:56<08:42, 278.51it/s]


 44%|████████████████████████████████▍                                        | 116720/262326 [06:57<08:39, 280.48it/s]


 45%|████████████████████████████████▍                                        | 116754/262326 [06:57<08:29, 285.82it/s]


 45%|████████████████████████████████▍                                        | 116783/262326 [06:57<08:48, 275.38it/s]


 45%|████████████████████████████████▌                                        | 116812/262326 [06:57<08:46, 276.44it/s]


 45%|████████████████████████████████▌                                        | 116845/262326 [06:57<08:40, 279.51it/s]


 45%|████████████████████████████████▌                                        | 116874/262326 [06:57<08:37, 281.21it/s]


 45%|████████████████████████████████▌                                        | 116903/262326 [06:57<09:01, 268.58it/s]


 45%|████████████████████████████████▌                                        | 116931/262326 [06:57<09:17, 260.93it/s]


 45%|████████████████████████████████▌                                        | 116960/262326 [06:57<09:04, 267.16it/s]


 45%|████████████████████████████████▌                                        | 116990/262326 [06:58<08:49, 274.52it/s]


 45%|████████████████████████████████▌                                        | 117024/262326 [06:58<08:31, 283.96it/s]


 45%|████████████████████████████████▌                                        | 117053/262326 [06:58<08:39, 279.56it/s]


 45%|████████████████████████████████▌                                        | 117084/262326 [06:58<08:35, 281.93it/s]


 45%|████████████████████████████████▌                                        | 117114/262326 [06:58<08:30, 284.28it/s]


 45%|████████████████████████████████▌                                        | 117151/262326 [06:58<08:13, 294.22it/s]


 45%|████████████████████████████████▌                                        | 117181/262326 [06:58<08:28, 285.20it/s]


 45%|████████████████████████████████▌                                        | 117213/262326 [06:58<08:20, 289.96it/s]


 45%|████████████████████████████████▋                                        | 117244/262326 [06:58<08:31, 283.80it/s]


 45%|████████████████████████████████▋                                        | 117275/262326 [06:59<08:42, 277.50it/s]


 45%|████████████████████████████████▋                                        | 117303/262326 [06:59<08:44, 276.74it/s]


 45%|████████████████████████████████▋                                        | 117331/262326 [06:59<10:00, 241.58it/s]


 45%|████████████████████████████████▋                                        | 117365/262326 [06:59<09:26, 256.09it/s]


 45%|████████████████████████████████▋                                        | 117396/262326 [06:59<08:58, 269.08it/s]


 45%|████████████████████████████████▋                                        | 117424/262326 [06:59<08:56, 270.24it/s]


 45%|████████████████████████████████▋                                        | 117457/262326 [06:59<08:44, 275.94it/s]


 45%|████████████████████████████████▋                                        | 117493/262326 [06:59<08:26, 285.73it/s]


 45%|████████████████████████████████▋                                        | 117523/262326 [06:59<08:19, 289.83it/s]


 45%|████████████████████████████████▋                                        | 117553/262326 [07:00<09:02, 266.65it/s]


 45%|████████████████████████████████▋                                        | 117581/262326 [07:00<09:52, 244.45it/s]


 45%|████████████████████████████████▋                                        | 117611/262326 [07:00<09:41, 248.84it/s]


 45%|████████████████████████████████▋                                        | 117646/262326 [07:00<09:09, 263.25it/s]


 45%|████████████████████████████████▋                                        | 117673/262326 [07:00<09:06, 264.61it/s]


 45%|████████████████████████████████▊                                        | 117700/262326 [07:00<09:09, 263.25it/s]


 45%|████████████████████████████████▊                                        | 117729/262326 [07:00<09:16, 260.00it/s]


 45%|████████████████████████████████▊                                        | 117761/262326 [07:00<09:05, 264.86it/s]


 45%|████████████████████████████████▊                                        | 117788/262326 [07:00<09:15, 260.29it/s]


 45%|████████████████████████████████▊                                        | 117815/262326 [07:01<09:12, 261.56it/s]


 45%|████████████████████████████████▊                                        | 117846/262326 [07:01<08:58, 268.26it/s]


 45%|████████████████████████████████▊                                        | 117873/262326 [07:01<09:11, 261.94it/s]


 45%|████████████████████████████████▊                                        | 117903/262326 [07:01<08:55, 269.63it/s]


 45%|████████████████████████████████▊                                        | 117933/262326 [07:01<08:42, 276.55it/s]


 45%|████████████████████████████████▊                                        | 117964/262326 [07:01<08:27, 284.63it/s]


 45%|████████████████████████████████▊                                        | 117999/262326 [07:01<08:16, 290.40it/s]


 45%|████████████████████████████████▊                                        | 118031/262326 [07:01<08:25, 285.33it/s]


 45%|████████████████████████████████▊                                        | 118060/262326 [07:02<15:30, 154.98it/s]


 45%|████████████████████████████████▊                                        | 118087/262326 [07:02<13:33, 177.32it/s]


 45%|████████████████████████████████▊                                        | 118111/262326 [07:02<19:42, 121.97it/s]


 45%|████████████████████████████████▉                                        | 118142/262326 [07:02<16:18, 147.30it/s]


 45%|████████████████████████████████▉                                        | 118172/262326 [07:02<13:51, 173.37it/s]


 45%|████████████████████████████████▉                                        | 118206/262326 [07:03<12:06, 198.37it/s]


 45%|████████████████████████████████▉                                        | 118236/262326 [07:03<10:55, 219.68it/s]


 45%|████████████████████████████████▉                                        | 118266/262326 [07:03<10:08, 236.80it/s]


 45%|████████████████████████████████▉                                        | 118294/262326 [07:03<09:43, 246.66it/s]


 45%|████████████████████████████████▉                                        | 118326/262326 [07:03<09:17, 258.46it/s]


 45%|████████████████████████████████▉                                        | 118356/262326 [07:03<08:56, 268.34it/s]


 45%|████████████████████████████████▉                                        | 118392/262326 [07:03<08:33, 280.04it/s]


 45%|████████████████████████████████▉                                        | 118422/262326 [07:03<08:45, 273.81it/s]


 45%|████████████████████████████████▉                                        | 118451/262326 [07:03<08:38, 277.25it/s]


 45%|████████████████████████████████▉                                        | 118481/262326 [07:03<08:28, 282.97it/s]


 45%|████████████████████████████████▉                                        | 118510/262326 [07:04<08:32, 280.69it/s]


 45%|████████████████████████████████▉                                        | 118543/262326 [07:04<08:22, 286.16it/s]


 45%|████████████████████████████████▉                                        | 118572/262326 [07:04<08:32, 280.73it/s]


 45%|█████████████████████████████████                                        | 118601/262326 [07:04<08:45, 273.34it/s]


 45%|█████████████████████████████████                                        | 118630/262326 [07:04<08:37, 277.80it/s]


 45%|█████████████████████████████████                                        | 118662/262326 [07:04<08:16, 289.23it/s]


 45%|█████████████████████████████████                                        | 118697/262326 [07:04<08:06, 294.97it/s]


 45%|█████████████████████████████████                                        | 118728/262326 [07:04<08:02, 297.92it/s]


 45%|█████████████████████████████████                                        | 118759/262326 [07:04<07:56, 301.05it/s]


 45%|█████████████████████████████████                                        | 118793/262326 [07:05<07:54, 302.18it/s]


 45%|█████████████████████████████████                                        | 118824/262326 [07:05<07:57, 300.55it/s]


 45%|█████████████████████████████████                                        | 118855/262326 [07:05<08:34, 279.05it/s]


 45%|█████████████████████████████████                                        | 118884/262326 [07:05<08:33, 279.41it/s]


 45%|█████████████████████████████████                                        | 118913/262326 [07:05<08:51, 269.96it/s]


 45%|█████████████████████████████████                                        | 118941/262326 [07:05<08:45, 272.63it/s]


 45%|█████████████████████████████████                                        | 118969/262326 [07:05<09:59, 239.26it/s]


 45%|█████████████████████████████████                                        | 118999/262326 [07:05<09:23, 254.41it/s]


 45%|█████████████████████████████████                                        | 119028/262326 [07:05<09:02, 264.06it/s]


 45%|█████████████████████████████████▏                                       | 119065/262326 [07:06<08:34, 278.68it/s]


 45%|█████████████████████████████████▏                                       | 119096/262326 [07:06<08:20, 286.23it/s]


 45%|█████████████████████████████████▏                                       | 119126/262326 [07:06<08:28, 281.63it/s]


 45%|█████████████████████████████████▏                                       | 119155/262326 [07:06<08:34, 278.47it/s]


 45%|█████████████████████████████████▏                                       | 119189/262326 [07:06<08:25, 283.40it/s]


 45%|█████████████████████████████████▏                                       | 119220/262326 [07:06<08:13, 289.99it/s]


 45%|█████████████████████████████████▏                                       | 119250/262326 [07:06<08:09, 292.06it/s]


 45%|█████████████████████████████████▏                                       | 119280/262326 [07:06<08:16, 288.33it/s]


 45%|█████████████████████████████████▏                                       | 119311/262326 [07:06<08:09, 292.38it/s]


 45%|█████████████████████████████████▏                                       | 119343/262326 [07:06<08:05, 294.26it/s]


 46%|█████████████████████████████████▏                                       | 119378/262326 [07:07<08:01, 297.18it/s]


 46%|█████████████████████████████████▏                                       | 119408/262326 [07:07<08:03, 295.76it/s]


 46%|█████████████████████████████████▏                                       | 119438/262326 [07:07<08:13, 289.51it/s]


 46%|█████████████████████████████████▏                                       | 119469/262326 [07:07<08:11, 290.92it/s]


 46%|█████████████████████████████████▎                                       | 119499/262326 [07:07<08:27, 281.36it/s]


 46%|█████████████████████████████████▎                                       | 119529/262326 [07:07<08:22, 284.39it/s]


 46%|█████████████████████████████████▎                                       | 119564/262326 [07:07<08:12, 290.03it/s]


 46%|█████████████████████████████████▎                                       | 119594/262326 [07:07<08:20, 285.46it/s]


 46%|█████████████████████████████████▎                                       | 119623/262326 [07:07<08:30, 279.54it/s]


 46%|█████████████████████████████████▎                                       | 119652/262326 [07:08<08:42, 273.25it/s]


 46%|█████████████████████████████████▎                                       | 119680/262326 [07:08<09:00, 263.84it/s]


 46%|█████████████████████████████████▎                                       | 119707/262326 [07:08<09:07, 260.49it/s]


 46%|█████████████████████████████████▎                                       | 119734/262326 [07:08<09:05, 261.32it/s]


 46%|█████████████████████████████████▎                                       | 119762/262326 [07:08<08:56, 265.85it/s]


 46%|█████████████████████████████████▎                                       | 119792/262326 [07:08<08:40, 273.71it/s]


 46%|█████████████████████████████████▎                                       | 119820/262326 [07:08<08:55, 266.26it/s]


 46%|█████████████████████████████████▎                                       | 119847/262326 [07:08<09:06, 260.64it/s]


 46%|█████████████████████████████████▎                                       | 119875/262326 [07:08<09:08, 259.69it/s]


 46%|█████████████████████████████████▎                                       | 119904/262326 [07:09<08:53, 266.82it/s]


 46%|█████████████████████████████████▎                                       | 119932/262326 [07:09<08:47, 270.07it/s]


 46%|█████████████████████████████████▍                                       | 119960/262326 [07:09<09:00, 263.41it/s]


 46%|█████████████████████████████████▍                                       | 119988/262326 [07:09<08:56, 265.32it/s]


 46%|█████████████████████████████████▍                                       | 120015/262326 [07:09<09:02, 262.28it/s]


 46%|█████████████████████████████████▍                                       | 120042/262326 [07:09<09:02, 262.45it/s]


 46%|█████████████████████████████████▍                                       | 120069/262326 [07:09<09:00, 263.31it/s]


 46%|█████████████████████████████████▍                                       | 120103/262326 [07:09<08:50, 267.88it/s]


 46%|█████████████████████████████████▍                                       | 120135/262326 [07:09<08:25, 281.25it/s]


 46%|█████████████████████████████████▍                                       | 120165/262326 [07:10<08:17, 285.68it/s]


 46%|█████████████████████████████████▍                                       | 120195/262326 [07:10<08:11, 289.42it/s]


 46%|█████████████████████████████████▍                                       | 120230/262326 [07:10<08:05, 292.97it/s]


 46%|█████████████████████████████████▍                                       | 120265/262326 [07:10<08:01, 294.80it/s]


 46%|█████████████████████████████████▍                                       | 120299/262326 [07:10<08:01, 295.27it/s]


 46%|█████████████████████████████████▍                                       | 120329/262326 [07:10<08:00, 295.37it/s]


 46%|█████████████████████████████████▍                                       | 120360/262326 [07:10<07:57, 297.09it/s]


 46%|█████████████████████████████████▌                                       | 120396/262326 [07:10<07:49, 302.58it/s]


 46%|█████████████████████████████████▌                                       | 120427/262326 [07:10<07:58, 296.54it/s]


 46%|█████████████████████████████████▌                                       | 120461/262326 [07:11<08:11, 288.64it/s]


 46%|█████████████████████████████████▌                                       | 120496/262326 [07:11<08:03, 293.33it/s]


 46%|█████████████████████████████████▌                                       | 120526/262326 [07:11<08:01, 294.71it/s]


 46%|█████████████████████████████████▌                                       | 120556/262326 [07:11<08:48, 268.11it/s]


 46%|█████████████████████████████████▌                                       | 120584/262326 [07:11<08:43, 270.79it/s]


 46%|█████████████████████████████████▌                                       | 120612/262326 [07:11<08:48, 268.32it/s]


 46%|█████████████████████████████████▌                                       | 120644/262326 [07:11<08:36, 274.33it/s]


 46%|█████████████████████████████████▌                                       | 120675/262326 [07:11<08:37, 273.51it/s]


 46%|█████████████████████████████████▌                                       | 120706/262326 [07:11<08:22, 282.09it/s]


 46%|█████████████████████████████████▌                                       | 120737/262326 [07:11<08:08, 289.65it/s]


 46%|█████████████████████████████████▌                                       | 120767/262326 [07:12<08:05, 291.64it/s]


 46%|█████████████████████████████████▌                                       | 120802/262326 [07:12<07:57, 296.67it/s]


 46%|█████████████████████████████████▋                                       | 120832/262326 [07:12<07:55, 297.34it/s]


 46%|█████████████████████████████████▋                                       | 120862/262326 [07:12<07:55, 297.34it/s]


 46%|█████████████████████████████████▋                                       | 120892/262326 [07:12<07:56, 296.80it/s]


 46%|█████████████████████████████████▋                                       | 120922/262326 [07:12<08:02, 292.99it/s]


 46%|█████████████████████████████████▋                                       | 120955/262326 [07:12<07:58, 295.73it/s]


 46%|█████████████████████████████████▋                                       | 120985/262326 [07:12<07:57, 295.81it/s]


 46%|█████████████████████████████████▋                                       | 121016/262326 [07:12<07:51, 299.70it/s]


 46%|█████████████████████████████████▋                                       | 121051/262326 [07:13<07:49, 300.64it/s]


 46%|█████████████████████████████████▋                                       | 121082/262326 [07:13<08:04, 291.39it/s]


 46%|█████████████████████████████████▋                                       | 121112/262326 [07:13<08:09, 288.23it/s]


 46%|█████████████████████████████████▋                                       | 121147/262326 [07:13<07:59, 294.28it/s]


 46%|█████████████████████████████████▋                                       | 121177/262326 [07:13<07:57, 295.36it/s]


 46%|█████████████████████████████████▋                                       | 121207/262326 [07:13<08:14, 285.28it/s]


 46%|█████████████████████████████████▋                                       | 121236/262326 [07:13<08:18, 282.83it/s]


 46%|█████████████████████████████████▋                                       | 121271/262326 [07:13<08:07, 289.17it/s]


 46%|█████████████████████████████████▊                                       | 121301/262326 [07:13<08:03, 291.60it/s]


 46%|█████████████████████████████████▊                                       | 121334/262326 [07:14<08:06, 289.85it/s]


 46%|█████████████████████████████████▊                                       | 121364/262326 [07:14<08:26, 278.14it/s]


 46%|█████████████████████████████████▊                                       | 121393/262326 [07:14<08:22, 280.51it/s]


 46%|█████████████████████████████████▊                                       | 121423/262326 [07:14<08:15, 284.24it/s]


 46%|█████████████████████████████████▊                                       | 121457/262326 [07:14<08:05, 289.89it/s]


 46%|█████████████████████████████████▊                                       | 121488/262326 [07:14<07:57, 295.19it/s]


 46%|█████████████████████████████████▊                                       | 121518/262326 [07:14<07:55, 296.25it/s]


 46%|█████████████████████████████████▊                                       | 121548/262326 [07:14<07:54, 296.75it/s]


 46%|█████████████████████████████████▊                                       | 121578/262326 [07:14<07:53, 297.38it/s]


 46%|█████████████████████████████████▊                                       | 121608/262326 [07:14<07:53, 297.45it/s]


 46%|█████████████████████████████████▊                                       | 121638/262326 [07:15<08:14, 284.70it/s]


 46%|█████████████████████████████████▊                                       | 121667/262326 [07:15<08:11, 285.95it/s]


 46%|█████████████████████████████████▊                                       | 121696/262326 [07:15<08:23, 279.08it/s]


 46%|█████████████████████████████████▊                                       | 121727/262326 [07:15<08:19, 281.27it/s]


 46%|█████████████████████████████████▉                                       | 121761/262326 [07:15<08:12, 285.45it/s]


 46%|█████████████████████████████████▉                                       | 121790/262326 [07:15<08:33, 273.58it/s]


 46%|█████████████████████████████████▉                                       | 121818/262326 [07:15<08:33, 273.44it/s]


 46%|█████████████████████████████████▉                                       | 121850/262326 [07:15<08:30, 275.08it/s]


 46%|█████████████████████████████████▉                                       | 121882/262326 [07:15<08:12, 285.15it/s]


 46%|█████████████████████████████████▉                                       | 121918/262326 [07:16<07:56, 294.48it/s]


 46%|█████████████████████████████████▉                                       | 121950/262326 [07:16<07:47, 300.19it/s]


 46%|█████████████████████████████████▉                                       | 121981/262326 [07:16<07:49, 298.95it/s]


 47%|█████████████████████████████████▉                                       | 122014/262326 [07:16<07:49, 298.61it/s]


 47%|█████████████████████████████████▉                                       | 122044/262326 [07:16<07:56, 294.13it/s]


 47%|█████████████████████████████████▉                                       | 122080/262326 [07:16<07:43, 302.73it/s]


 47%|█████████████████████████████████▉                                       | 122111/262326 [07:16<07:42, 303.04it/s]


 47%|█████████████████████████████████▉                                       | 122142/262326 [07:16<07:40, 304.28it/s]


 47%|█████████████████████████████████▉                                       | 122173/262326 [07:16<07:59, 292.52it/s]


 47%|██████████████████████████████████                                       | 122204/262326 [07:17<07:51, 297.49it/s]


 47%|██████████████████████████████████                                       | 122235/262326 [07:17<07:45, 301.11it/s]


 47%|██████████████████████████████████                                       | 122271/262326 [07:17<07:40, 304.22it/s]


 47%|██████████████████████████████████                                       | 122302/262326 [07:17<08:02, 290.20it/s]


 47%|██████████████████████████████████                                       | 122332/262326 [07:17<07:59, 291.75it/s]


 47%|██████████████████████████████████                                       | 122362/262326 [07:17<08:19, 280.32it/s]


 47%|██████████████████████████████████                                       | 122394/262326 [07:17<08:02, 290.01it/s]


 47%|██████████████████████████████████                                       | 122427/262326 [07:17<08:02, 289.73it/s]


 47%|██████████████████████████████████                                       | 122463/262326 [07:17<07:51, 296.42it/s]


 47%|██████████████████████████████████                                       | 122494/262326 [07:17<07:48, 298.31it/s]


 47%|██████████████████████████████████                                       | 122525/262326 [07:18<07:45, 300.07it/s]


 47%|██████████████████████████████████                                       | 122556/262326 [07:18<07:48, 298.20it/s]


 47%|██████████████████████████████████                                       | 122586/262326 [07:18<09:05, 256.08it/s]


 47%|██████████████████████████████████                                       | 122615/262326 [07:18<08:51, 263.00it/s]


 47%|██████████████████████████████████▏                                      | 122643/262326 [07:18<08:42, 267.16it/s]


 47%|██████████████████████████████████▏                                      | 122673/262326 [07:18<08:26, 275.90it/s]


 47%|██████████████████████████████████▏                                      | 122703/262326 [07:18<08:14, 282.48it/s]


 47%|██████████████████████████████████▏                                      | 122738/262326 [07:18<08:03, 288.50it/s]


 47%|██████████████████████████████████▏                                      | 122768/262326 [07:18<08:00, 290.71it/s]


 47%|██████████████████████████████████▏                                      | 122798/262326 [07:19<07:56, 292.54it/s]


 47%|██████████████████████████████████▏                                      | 122829/262326 [07:19<08:08, 285.50it/s]


 47%|██████████████████████████████████▏                                      | 122858/262326 [07:19<08:06, 286.69it/s]


 47%|██████████████████████████████████▏                                      | 122888/262326 [07:19<08:01, 289.59it/s]


 47%|██████████████████████████████████▏                                      | 122918/262326 [07:19<08:00, 290.37it/s]


 47%|██████████████████████████████████▏                                      | 122948/262326 [07:19<08:16, 280.90it/s]


 47%|██████████████████████████████████▏                                      | 122977/262326 [07:19<08:34, 270.75it/s]


 47%|██████████████████████████████████▏                                      | 123010/262326 [07:19<08:26, 275.16it/s]


 47%|██████████████████████████████████▏                                      | 123040/262326 [07:19<08:16, 280.65it/s]


 47%|██████████████████████████████████▏                                      | 123075/262326 [07:20<08:04, 287.27it/s]


 47%|██████████████████████████████████▎                                      | 123104/262326 [07:20<08:16, 280.50it/s]


 47%|██████████████████████████████████▎                                      | 123133/262326 [07:20<09:01, 257.02it/s]


 47%|██████████████████████████████████▎                                      | 123167/262326 [07:20<08:36, 269.68it/s]


 47%|██████████████████████████████████▎                                      | 123199/262326 [07:20<08:28, 273.84it/s]


 47%|██████████████████████████████████▎                                      | 123230/262326 [07:20<08:14, 281.12it/s]


 47%|██████████████████████████████████▎                                      | 123260/262326 [07:20<08:22, 276.60it/s]


 47%|██████████████████████████████████▎                                      | 123291/262326 [07:20<08:09, 283.97it/s]


 47%|██████████████████████████████████▎                                      | 123321/262326 [07:21<09:26, 245.29it/s]


 47%|██████████████████████████████████▎                                      | 123352/262326 [07:21<08:58, 257.93it/s]


 47%|██████████████████████████████████▎                                      | 123381/262326 [07:21<08:47, 263.43it/s]


 47%|██████████████████████████████████▎                                      | 123414/262326 [07:21<08:47, 263.33it/s]


 47%|██████████████████████████████████▎                                      | 123443/262326 [07:21<08:36, 268.83it/s]


 47%|██████████████████████████████████▎                                      | 123472/262326 [07:21<08:30, 272.16it/s]


 47%|██████████████████████████████████▎                                      | 123507/262326 [07:21<08:27, 273.63it/s]


 47%|██████████████████████████████████▍                                      | 123535/262326 [07:21<08:26, 274.12it/s]


 47%|██████████████████████████████████▍                                      | 123567/262326 [07:21<08:27, 273.37it/s]


 47%|██████████████████████████████████▍                                      | 123602/262326 [07:22<08:12, 281.69it/s]


 47%|██████████████████████████████████▍                                      | 123634/262326 [07:22<07:57, 290.47it/s]


 47%|██████████████████████████████████▍                                      | 123664/262326 [07:22<07:57, 290.57it/s]


 47%|██████████████████████████████████▍                                      | 123694/262326 [07:22<07:55, 291.84it/s]


 47%|██████████████████████████████████▍                                      | 123724/262326 [07:22<08:50, 261.50it/s]


 47%|██████████████████████████████████▍                                      | 123753/262326 [07:22<08:37, 267.67it/s]


 47%|██████████████████████████████████▍                                      | 123788/262326 [07:22<08:18, 277.67it/s]


 47%|██████████████████████████████████▍                                      | 123818/262326 [07:22<08:10, 282.45it/s]


 47%|██████████████████████████████████▍                                      | 123847/262326 [07:22<08:31, 270.99it/s]


 47%|██████████████████████████████████▍                                      | 123885/262326 [07:23<08:20, 276.81it/s]


 47%|██████████████████████████████████▍                                      | 123917/262326 [07:23<08:02, 286.94it/s]


 47%|██████████████████████████████████▍                                      | 123947/262326 [07:23<07:58, 289.02it/s]


 47%|██████████████████████████████████▌                                      | 123977/262326 [07:23<08:02, 286.78it/s]


 47%|██████████████████████████████████▌                                      | 124008/262326 [07:23<08:05, 284.96it/s]


 47%|██████████████████████████████████▌                                      | 124045/262326 [07:23<07:47, 295.91it/s]


 47%|██████████████████████████████████▌                                      | 124075/262326 [07:23<08:10, 281.65it/s]


 47%|██████████████████████████████████▌                                      | 124106/262326 [07:23<07:57, 289.47it/s]


 47%|██████████████████████████████████▌                                      | 124136/262326 [07:23<07:55, 290.82it/s]


 47%|██████████████████████████████████▌                                      | 124170/262326 [07:23<07:51, 292.83it/s]


 47%|██████████████████████████████████▌                                      | 124200/262326 [07:24<07:48, 294.67it/s]


 47%|██████████████████████████████████▌                                      | 124230/262326 [07:24<07:46, 296.02it/s]


 47%|██████████████████████████████████▌                                      | 124260/262326 [07:24<07:47, 295.35it/s]


 47%|██████████████████████████████████▌                                      | 124290/262326 [07:24<07:55, 290.10it/s]


 47%|██████████████████████████████████▌                                      | 124320/262326 [07:24<08:02, 285.89it/s]


 47%|██████████████████████████████████▌                                      | 124352/262326 [07:24<08:07, 283.22it/s]


 47%|██████████████████████████████████▌                                      | 124382/262326 [07:24<07:59, 287.43it/s]


 47%|██████████████████████████████████▌                                      | 124418/262326 [07:24<07:47, 294.79it/s]


 47%|██████████████████████████████████▋                                      | 124448/262326 [07:24<07:45, 295.91it/s]


 47%|██████████████████████████████████▋                                      | 124478/262326 [07:25<08:07, 282.92it/s]


 47%|██████████████████████████████████▋                                      | 124509/262326 [07:25<07:54, 290.31it/s]


 47%|██████████████████████████████████▋                                      | 124539/262326 [07:25<07:54, 290.23it/s]


 47%|██████████████████████████████████▋                                      | 124571/262326 [07:25<08:05, 283.99it/s]


 48%|██████████████████████████████████▋                                      | 124605/262326 [07:25<07:57, 288.51it/s]


 48%|██████████████████████████████████▋                                      | 124641/262326 [07:25<07:46, 295.29it/s]


 48%|██████████████████████████████████▋                                      | 124672/262326 [07:25<07:40, 298.96it/s]


 48%|██████████████████████████████████▋                                      | 124707/262326 [07:25<07:56, 288.87it/s]


 48%|██████████████████████████████████▋                                      | 124738/262326 [07:25<07:50, 292.72it/s]


 48%|██████████████████████████████████▋                                      | 124768/262326 [07:26<07:48, 293.50it/s]


 48%|██████████████████████████████████▋                                      | 124802/262326 [07:26<08:05, 283.28it/s]


 48%|██████████████████████████████████▋                                      | 124832/262326 [07:26<07:59, 286.83it/s]


 48%|██████████████████████████████████▋                                      | 124863/262326 [07:26<07:50, 292.17it/s]


 48%|██████████████████████████████████▊                                      | 124893/262326 [07:26<09:42, 235.75it/s]


 48%|██████████████████████████████████▊                                      | 124927/262326 [07:26<09:07, 250.98it/s]


 48%|██████████████████████████████████▊                                      | 124956/262326 [07:26<08:46, 260.73it/s]


 48%|██████████████████████████████████▊                                      | 124984/262326 [07:26<08:37, 265.52it/s]


 48%|██████████████████████████████████▊                                      | 125019/262326 [07:27<08:35, 266.16it/s]


 48%|██████████████████████████████████▊                                      | 125049/262326 [07:27<08:21, 273.95it/s]


 48%|██████████████████████████████████▊                                      | 125079/262326 [07:27<08:11, 279.34it/s]


 48%|██████████████████████████████████▊                                      | 125108/262326 [07:27<10:15, 223.00it/s]


 48%|██████████████████████████████████▊                                      | 125133/262326 [07:27<10:06, 226.19it/s]


 48%|██████████████████████████████████▊                                      | 125158/262326 [07:27<10:06, 226.11it/s]


 48%|██████████████████████████████████▊                                      | 125189/262326 [07:27<09:25, 242.35it/s]


 48%|██████████████████████████████████▊                                      | 125216/262326 [07:27<09:10, 249.07it/s]


 48%|██████████████████████████████████▊                                      | 125246/262326 [07:27<08:45, 260.89it/s]


 48%|██████████████████████████████████▊                                      | 125275/262326 [07:28<08:46, 260.26it/s]


 48%|██████████████████████████████████▊                                      | 125307/262326 [07:28<08:19, 274.06it/s]


 48%|██████████████████████████████████▉                                      | 125335/262326 [07:28<08:30, 268.35it/s]


 48%|██████████████████████████████████▉                                      | 125365/262326 [07:28<08:22, 272.79it/s]


 48%|██████████████████████████████████▉                                      | 125397/262326 [07:28<08:02, 283.60it/s]


 48%|██████████████████████████████████▉                                      | 125429/262326 [07:28<08:04, 282.61it/s]


 48%|██████████████████████████████████▉                                      | 125458/262326 [07:28<08:01, 284.29it/s]


 48%|██████████████████████████████████▉                                      | 125487/262326 [07:28<08:01, 284.41it/s]


 48%|██████████████████████████████████▉                                      | 125518/262326 [07:28<07:50, 291.06it/s]


 48%|██████████████████████████████████▉                                      | 125555/262326 [07:29<07:35, 300.32it/s]


 48%|██████████████████████████████████▉                                      | 125586/262326 [07:29<07:32, 302.40it/s]


 48%|██████████████████████████████████▉                                      | 125618/262326 [07:29<07:47, 292.37it/s]


 48%|██████████████████████████████████▉                                      | 125653/262326 [07:29<07:42, 295.78it/s]


 48%|██████████████████████████████████▉                                      | 125684/262326 [07:29<07:35, 299.84it/s]


 48%|██████████████████████████████████▉                                      | 125715/262326 [07:29<07:31, 302.72it/s]


 48%|██████████████████████████████████▉                                      | 125746/262326 [07:29<07:29, 303.77it/s]


 48%|███████████████████████████████████                                      | 125777/262326 [07:29<07:49, 290.97it/s]


 48%|███████████████████████████████████                                      | 125813/262326 [07:29<07:37, 298.20it/s]


 48%|███████████████████████████████████                                      | 125844/262326 [07:29<07:34, 300.54it/s]


 48%|███████████████████████████████████                                      | 125875/262326 [07:30<07:33, 300.80it/s]


 48%|███████████████████████████████████                                      | 125910/262326 [07:30<07:30, 302.75it/s]


 48%|███████████████████████████████████                                      | 125941/262326 [07:30<07:49, 290.34it/s]


 48%|███████████████████████████████████                                      | 125971/262326 [07:30<07:59, 284.41it/s]


 48%|███████████████████████████████████                                      | 126002/262326 [07:30<07:56, 286.14it/s]


 48%|███████████████████████████████████                                      | 126031/262326 [07:30<07:55, 286.66it/s]


 48%|███████████████████████████████████                                      | 126060/262326 [07:30<07:55, 286.43it/s]


 48%|███████████████████████████████████                                      | 126092/262326 [07:30<07:59, 284.35it/s]


 48%|███████████████████████████████████                                      | 126121/262326 [07:30<07:57, 284.99it/s]


 48%|███████████████████████████████████                                      | 126153/262326 [07:31<08:01, 282.99it/s]


 48%|███████████████████████████████████                                      | 126182/262326 [07:31<08:04, 280.88it/s]


 48%|███████████████████████████████████                                      | 126211/262326 [07:31<08:22, 271.06it/s]


 48%|███████████████████████████████████▏                                     | 126241/262326 [07:31<08:25, 269.29it/s]


 48%|███████████████████████████████████▏                                     | 126268/262326 [07:31<08:25, 269.02it/s]


 48%|███████████████████████████████████▏                                     | 126295/262326 [07:31<08:47, 257.99it/s]


 48%|███████████████████████████████████▏                                     | 126321/262326 [07:31<09:19, 243.25it/s]


 48%|███████████████████████████████████▏                                     | 126346/262326 [07:31<09:23, 241.21it/s]


 48%|███████████████████████████████████▏                                     | 126371/262326 [07:31<09:43, 233.02it/s]


 48%|███████████████████████████████████▏                                     | 126401/262326 [07:32<09:17, 243.61it/s]


 48%|███████████████████████████████████▏                                     | 126426/262326 [07:32<09:13, 245.49it/s]


 48%|███████████████████████████████████▏                                     | 126451/262326 [07:32<09:23, 241.26it/s]


 48%|███████████████████████████████████▏                                     | 126479/262326 [07:32<09:16, 244.19it/s]


 48%|███████████████████████████████████▏                                     | 126504/262326 [07:32<09:31, 237.61it/s]


 48%|███████████████████████████████████▏                                     | 126530/262326 [07:32<09:20, 242.43it/s]


 48%|███████████████████████████████████▏                                     | 126555/262326 [07:32<09:16, 244.09it/s]


 48%|███████████████████████████████████▏                                     | 126580/262326 [07:32<09:14, 244.71it/s]


 48%|███████████████████████████████████▏                                     | 126605/262326 [07:32<09:13, 245.35it/s]


 48%|███████████████████████████████████▏                                     | 126633/262326 [07:33<09:13, 245.05it/s]


 48%|███████████████████████████████████▏                                     | 126660/262326 [07:33<09:00, 251.12it/s]


 48%|███████████████████████████████████▎                                     | 126686/262326 [07:33<09:09, 246.84it/s]


 48%|███████████████████████████████████▎                                     | 126713/262326 [07:33<09:04, 248.84it/s]


 48%|███████████████████████████████████▎                                     | 126738/262326 [07:33<09:08, 247.09it/s]


 48%|███████████████████████████████████▎                                     | 126763/262326 [07:33<09:06, 247.83it/s]


 48%|███████████████████████████████████▎                                     | 126794/262326 [07:33<10:13, 220.86it/s]


 48%|███████████████████████████████████▎                                     | 126817/262326 [07:33<10:17, 219.33it/s]


 48%|███████████████████████████████████▎                                     | 126851/262326 [07:33<09:30, 237.52it/s]


 48%|███████████████████████████████████▎                                     | 126880/262326 [07:34<09:21, 241.06it/s]


 48%|███████████████████████████████████▎                                     | 126914/262326 [07:34<08:51, 254.95it/s]


 48%|███████████████████████████████████▎                                     | 126941/262326 [07:34<09:03, 249.27it/s]


 48%|███████████████████████████████████▎                                     | 126971/262326 [07:34<08:41, 259.77it/s]


 48%|███████████████████████████████████▎                                     | 126998/262326 [07:34<08:37, 261.28it/s]


 48%|███████████████████████████████████▎                                     | 127033/262326 [07:34<08:14, 273.43it/s]


 48%|███████████████████████████████████▎                                     | 127062/262326 [07:34<08:08, 276.82it/s]


 48%|███████████████████████████████████▎                                     | 127097/262326 [07:34<07:55, 284.17it/s]


 48%|███████████████████████████████████▍                                     | 127126/262326 [07:34<07:55, 284.34it/s]


 48%|███████████████████████████████████▍                                     | 127155/262326 [07:35<07:53, 285.17it/s]


 48%|███████████████████████████████████▍                                     | 127186/262326 [07:35<08:02, 279.84it/s]


 48%|███████████████████████████████████▍                                     | 127215/262326 [07:35<08:16, 271.90it/s]


 49%|███████████████████████████████████▍                                     | 127243/262326 [07:35<08:38, 260.41it/s]


 49%|███████████████████████████████████▍                                     | 127270/262326 [07:35<08:35, 262.09it/s]


 49%|███████████████████████████████████▍                                     | 127297/262326 [07:35<08:38, 260.18it/s]


 49%|███████████████████████████████████▍                                     | 127328/262326 [07:35<08:27, 265.83it/s]


 49%|███████████████████████████████████▍                                     | 127358/262326 [07:35<08:11, 274.84it/s]


 49%|███████████████████████████████████▍                                     | 127389/262326 [07:35<07:54, 284.18it/s]


 49%|███████████████████████████████████▍                                     | 127425/262326 [07:35<07:41, 292.30it/s]


 49%|███████████████████████████████████▍                                     | 127455/262326 [07:36<07:41, 292.07it/s]


 49%|███████████████████████████████████▍                                     | 127489/262326 [07:36<07:41, 292.48it/s]


 49%|███████████████████████████████████▍                                     | 127519/262326 [07:36<07:48, 287.77it/s]


 49%|███████████████████████████████████▍                                     | 127549/262326 [07:36<07:52, 285.11it/s]


 49%|███████████████████████████████████▌                                     | 127581/262326 [07:36<07:38, 293.62it/s]


 49%|███████████████████████████████████▌                                     | 127613/262326 [07:36<07:47, 288.39it/s]


 49%|███████████████████████████████████▌                                     | 127642/262326 [07:36<07:53, 284.41it/s]


 49%|███████████████████████████████████▌                                     | 127677/262326 [07:36<07:40, 292.45it/s]


 49%|███████████████████████████████████▌                                     | 127709/262326 [07:36<07:47, 287.76it/s]


 49%|███████████████████████████████████▌                                     | 127738/262326 [07:37<07:50, 286.23it/s]


 49%|███████████████████████████████████▌                                     | 127772/262326 [07:37<07:45, 289.06it/s]


 49%|███████████████████████████████████▌                                     | 127801/262326 [07:37<09:39, 232.00it/s]


 49%|███████████████████████████████████▌                                     | 127827/262326 [07:37<09:49, 228.03it/s]


 49%|███████████████████████████████████▌                                     | 127861/262326 [07:37<09:09, 244.72it/s]


 49%|███████████████████████████████████▌                                     | 127887/262326 [07:37<09:01, 248.33it/s]


 49%|███████████████████████████████████▌                                     | 127914/262326 [07:37<08:51, 253.12it/s]


 49%|███████████████████████████████████▌                                     | 127949/262326 [07:37<08:23, 266.91it/s]


 49%|███████████████████████████████████▌                                     | 127980/262326 [07:38<08:03, 277.98it/s]


 49%|███████████████████████████████████▌                                     | 128011/262326 [07:38<07:52, 284.50it/s]


 49%|███████████████████████████████████▋                                     | 128040/262326 [07:38<08:04, 276.93it/s]


 49%|███████████████████████████████████▋                                     | 128069/262326 [07:38<08:03, 277.61it/s]


 49%|███████████████████████████████████▋                                     | 128101/262326 [07:38<08:02, 277.97it/s]


 49%|███████████████████████████████████▋                                     | 128129/262326 [07:38<08:03, 277.46it/s]


 49%|███████████████████████████████████▋                                     | 128159/262326 [07:38<07:54, 282.78it/s]


 49%|███████████████████████████████████▋                                     | 128188/262326 [07:38<07:51, 284.37it/s]


 49%|███████████████████████████████████▋                                     | 128217/262326 [07:38<07:50, 284.83it/s]


 49%|███████████████████████████████████▋                                     | 128254/262326 [07:38<07:33, 295.78it/s]


 49%|███████████████████████████████████▋                                     | 128284/262326 [07:39<07:35, 294.45it/s]


 49%|███████████████████████████████████▋                                     | 128316/262326 [07:39<07:41, 290.60it/s]


 49%|███████████████████████████████████▋                                     | 128346/262326 [07:39<08:03, 277.37it/s]


 49%|███████████████████████████████████▋                                     | 128374/262326 [07:39<08:21, 266.85it/s]


 49%|███████████████████████████████████▋                                     | 128401/262326 [07:39<08:22, 266.76it/s]


 49%|███████████████████████████████████▋                                     | 128428/262326 [07:39<08:45, 254.94it/s]


 49%|███████████████████████████████████▋                                     | 128457/262326 [07:39<08:29, 262.93it/s]


 49%|███████████████████████████████████▊                                     | 128489/262326 [07:39<08:08, 273.76it/s]


 49%|███████████████████████████████████▊                                     | 128517/262326 [07:39<08:14, 270.60it/s]


 49%|███████████████████████████████████▊                                     | 128548/262326 [07:40<07:57, 279.96it/s]


 49%|███████████████████████████████████▊                                     | 128577/262326 [07:40<08:14, 270.21it/s]


 49%|███████████████████████████████████▊                                     | 128605/262326 [07:40<08:09, 273.07it/s]


 49%|███████████████████████████████████▊                                     | 128635/262326 [07:40<07:58, 279.23it/s]


 49%|███████████████████████████████████▊                                     | 128664/262326 [07:40<07:56, 280.26it/s]


 49%|███████████████████████████████████▊                                     | 128695/262326 [07:40<07:54, 281.56it/s]


 49%|███████████████████████████████████▊                                     | 128726/262326 [07:40<07:46, 286.55it/s]


 49%|███████████████████████████████████▊                                     | 128756/262326 [07:40<07:41, 289.65it/s]


 49%|███████████████████████████████████▊                                     | 128786/262326 [07:40<07:49, 284.20it/s]


 49%|███████████████████████████████████▊                                     | 128815/262326 [07:41<08:21, 266.48it/s]


 49%|███████████████████████████████████▊                                     | 128842/262326 [07:41<08:25, 263.82it/s]


 49%|███████████████████████████████████▊                                     | 128871/262326 [07:41<08:15, 269.09it/s]


 49%|███████████████████████████████████▊                                     | 128904/262326 [07:41<08:01, 277.36it/s]


 49%|███████████████████████████████████▉                                     | 128937/262326 [07:41<07:56, 279.83it/s]


 49%|███████████████████████████████████▉                                     | 128966/262326 [07:41<07:52, 281.97it/s]


 49%|███████████████████████████████████▉                                     | 128995/262326 [07:41<07:54, 281.23it/s]


 49%|███████████████████████████████████▉                                     | 129029/262326 [07:41<07:43, 287.36it/s]


 49%|███████████████████████████████████▉                                     | 129058/262326 [07:41<08:03, 275.57it/s]


 49%|███████████████████████████████████▉                                     | 129087/262326 [07:41<07:56, 279.56it/s]


 49%|███████████████████████████████████▉                                     | 129116/262326 [07:42<07:55, 280.19it/s]


 49%|███████████████████████████████████▉                                     | 129146/262326 [07:42<08:05, 274.20it/s]


 49%|███████████████████████████████████▉                                     | 129175/262326 [07:42<08:01, 276.36it/s]


 49%|███████████████████████████████████▉                                     | 129203/262326 [07:42<08:06, 273.46it/s]


 49%|███████████████████████████████████▉                                     | 129231/262326 [07:42<09:40, 229.28it/s]


 49%|███████████████████████████████████▉                                     | 129256/262326 [07:42<09:35, 231.40it/s]


 49%|███████████████████████████████████▉                                     | 129284/262326 [07:42<09:09, 242.17it/s]


 49%|███████████████████████████████████▉                                     | 129313/262326 [07:42<08:43, 254.22it/s]


 49%|███████████████████████████████████▉                                     | 129343/262326 [07:43<08:21, 265.19it/s]


 49%|████████████████████████████████████                                     | 129371/262326 [07:43<08:15, 268.08it/s]


 49%|████████████████████████████████████                                     | 129400/262326 [07:43<08:19, 266.21it/s]


 49%|████████████████████████████████████                                     | 129430/262326 [07:43<08:04, 274.45it/s]


 49%|████████████████████████████████████                                     | 129458/262326 [07:43<08:02, 275.61it/s]


 49%|████████████████████████████████████                                     | 129488/262326 [07:43<07:51, 281.52it/s]


 49%|████████████████████████████████████                                     | 129517/262326 [07:43<08:08, 271.73it/s]


 49%|████████████████████████████████████                                     | 129546/262326 [07:43<08:00, 276.60it/s]


 49%|████████████████████████████████████                                     | 129581/262326 [07:43<07:45, 285.02it/s]


 49%|████████████████████████████████████                                     | 129610/262326 [07:43<08:03, 274.62it/s]


 49%|████████████████████████████████████                                     | 129639/262326 [07:44<07:59, 276.87it/s]


 49%|████████████████████████████████████                                     | 129668/262326 [07:44<07:56, 278.49it/s]


 49%|████████████████████████████████████                                     | 129696/262326 [07:44<08:06, 272.66it/s]


 49%|████████████████████████████████████                                     | 129724/262326 [07:44<08:12, 269.04it/s]


 49%|████████████████████████████████████                                     | 129751/262326 [07:44<08:22, 263.70it/s]


 49%|████████████████████████████████████                                     | 129784/262326 [07:44<08:04, 273.57it/s]


 49%|████████████████████████████████████▏                                    | 129819/262326 [07:44<07:50, 281.87it/s]


 49%|████████████████████████████████████▏                                    | 129850/262326 [07:44<07:38, 288.93it/s]


 50%|████████████████████████████████████▏                                    | 129885/262326 [07:44<07:32, 292.98it/s]


 50%|████████████████████████████████████▏                                    | 129915/262326 [07:45<07:52, 279.95it/s]


 50%|████████████████████████████████████▏                                    | 129944/262326 [07:45<08:11, 269.25it/s]


 50%|████████████████████████████████████▏                                    | 129972/262326 [07:45<08:55, 247.27it/s]


 50%|████████████████████████████████████▏                                    | 130000/262326 [07:45<08:36, 256.03it/s]


 50%|████████████████████████████████████▏                                    | 130027/262326 [07:45<08:48, 250.19it/s]


 50%|████████████████████████████████████▏                                    | 130056/262326 [07:45<08:29, 259.42it/s]


 50%|████████████████████████████████████▏                                    | 130091/262326 [07:45<08:06, 271.64it/s]


 50%|████████████████████████████████████▏                                    | 130121/262326 [07:45<07:54, 278.78it/s]


 50%|████████████████████████████████████▏                                    | 130157/262326 [07:45<07:39, 287.82it/s]


 50%|████████████████████████████████████▏                                    | 130187/262326 [07:46<07:35, 290.26it/s]


 50%|████████████████████████████████████▏                                    | 130224/262326 [07:46<07:22, 298.74it/s]


 50%|████████████████████████████████████▏                                    | 130255/262326 [07:46<07:43, 285.00it/s]


 50%|████████████████████████████████████▎                                    | 130289/262326 [07:46<07:36, 289.37it/s]


 50%|████████████████████████████████████▎                                    | 130319/262326 [07:46<07:54, 278.32it/s]


 50%|████████████████████████████████████▎                                    | 130350/262326 [07:46<07:40, 286.89it/s]


 50%|████████████████████████████████████▎                                    | 130381/262326 [07:46<07:30, 293.18it/s]


 50%|████████████████████████████████████▎                                    | 130411/262326 [07:46<07:27, 295.06it/s]


 50%|████████████████████████████████████▎                                    | 130441/262326 [07:46<08:49, 249.03it/s]


 50%|████████████████████████████████████▎                                    | 130468/262326 [07:47<09:05, 241.50it/s]


 50%|████████████████████████████████████▎                                    | 130495/262326 [07:47<08:51, 248.23it/s]


 50%|████████████████████████████████████▎                                    | 130521/262326 [07:47<09:03, 242.68it/s]


 50%|████████████████████████████████████▎                                    | 130552/262326 [07:47<08:31, 257.58it/s]


 50%|████████████████████████████████████▎                                    | 130581/262326 [07:47<08:14, 266.42it/s]


 50%|████████████████████████████████████▎                                    | 130614/262326 [07:47<07:58, 275.24it/s]


 50%|████████████████████████████████████▎                                    | 130642/262326 [07:47<08:19, 263.44it/s]


 50%|████████████████████████████████████▎                                    | 130669/262326 [07:47<08:25, 260.33it/s]


 50%|████████████████████████████████████▎                                    | 130697/262326 [07:47<08:15, 265.42it/s]


 50%|████████████████████████████████████▍                                    | 130727/262326 [07:48<07:59, 274.55it/s]


 50%|████████████████████████████████████▍                                    | 130760/262326 [07:48<07:51, 278.79it/s]


 50%|████████████████████████████████████▍                                    | 130789/262326 [07:48<07:57, 275.36it/s]


 50%|████████████████████████████████████▍                                    | 130817/262326 [07:48<08:13, 266.22it/s]


 50%|████████████████████████████████████▍                                    | 130844/262326 [07:48<08:47, 249.07it/s]


 50%|████████████████████████████████████▍                                    | 130870/262326 [07:48<09:05, 241.20it/s]


 50%|████████████████████████████████████▍                                    | 130895/262326 [07:48<09:12, 237.73it/s]


 50%|████████████████████████████████████▍                                    | 130931/262326 [07:48<08:30, 257.23it/s]


 50%|████████████████████████████████████▍                                    | 130962/262326 [07:48<08:06, 270.05it/s]


 50%|████████████████████████████████████▍                                    | 130992/262326 [07:49<07:54, 277.00it/s]


 50%|████████████████████████████████████▍                                    | 131026/262326 [07:49<07:30, 291.34it/s]


 50%|████████████████████████████████████▍                                    | 131056/262326 [07:49<08:17, 263.93it/s]


 50%|████████████████████████████████████▍                                    | 131084/262326 [07:49<08:42, 250.99it/s]


 50%|████████████████████████████████████▍                                    | 131111/262326 [07:49<08:32, 255.85it/s]


 50%|████████████████████████████████████▍                                    | 131142/262326 [07:49<08:06, 269.67it/s]


 50%|████████████████████████████████████▌                                    | 131177/262326 [07:49<07:48, 279.73it/s]


 50%|████████████████████████████████████▌                                    | 131206/262326 [07:49<07:58, 273.92it/s]


 50%|████████████████████████████████████▌                                    | 131234/262326 [07:49<08:21, 261.27it/s]


 50%|████████████████████████████████████▌                                    | 131261/262326 [07:50<08:19, 262.50it/s]


 50%|████████████████████████████████████▌                                    | 131295/262326 [07:50<07:51, 278.11it/s]


 50%|████████████████████████████████████▌                                    | 131324/262326 [07:50<08:04, 270.19it/s]


 50%|████████████████████████████████████▌                                    | 131352/262326 [07:50<08:34, 254.66it/s]


 50%|████████████████████████████████████▌                                    | 131378/262326 [07:50<08:47, 248.32it/s]


 50%|████████████████████████████████████▌                                    | 131404/262326 [07:50<09:22, 232.63it/s]


 50%|████████████████████████████████████▌                                    | 131428/262326 [07:50<10:12, 213.69it/s]


 50%|████████████████████████████████████▌                                    | 131455/262326 [07:50<09:36, 226.95it/s]


 50%|████████████████████████████████████▌                                    | 131485/262326 [07:50<08:56, 243.80it/s]


 50%|████████████████████████████████████▌                                    | 131513/262326 [07:51<08:40, 251.11it/s]


 50%|████████████████████████████████████▌                                    | 131539/262326 [07:51<09:17, 234.71it/s]


 50%|████████████████████████████████████▌                                    | 131564/262326 [07:51<09:31, 228.73it/s]


 50%|████████████████████████████████████▌                                    | 131589/262326 [07:51<09:19, 233.87it/s]


 50%|████████████████████████████████████▋                                    | 131617/262326 [07:51<08:52, 245.56it/s]


 50%|████████████████████████████████████▋                                    | 131646/262326 [07:51<08:34, 254.20it/s]


 50%|████████████████████████████████████▋                                    | 131675/262326 [07:51<08:18, 262.01it/s]


 50%|████████████████████████████████████▋                                    | 131707/262326 [07:51<07:54, 275.46it/s]


 50%|████████████████████████████████████▋                                    | 131737/262326 [07:51<07:43, 281.58it/s]


 50%|████████████████████████████████████▋                                    | 131772/262326 [07:52<07:24, 294.01it/s]


 50%|████████████████████████████████████▋                                    | 131804/262326 [07:52<07:15, 299.91it/s]


 50%|████████████████████████████████████▋                                    | 131835/262326 [07:52<07:34, 287.41it/s]


 50%|████████████████████████████████████▋                                    | 131865/262326 [07:52<07:41, 282.95it/s]


 50%|████████████████████████████████████▋                                    | 131894/262326 [07:52<07:41, 282.46it/s]


 50%|████████████████████████████████████▋                                    | 131924/262326 [07:52<07:37, 285.26it/s]


 50%|████████████████████████████████████▋                                    | 131956/262326 [07:52<07:25, 292.80it/s]


 50%|████████████████████████████████████▋                                    | 131994/262326 [07:52<07:10, 302.86it/s]


 50%|████████████████████████████████████▋                                    | 132025/262326 [07:52<07:24, 292.97it/s]


 50%|████████████████████████████████████▋                                    | 132055/262326 [07:53<07:23, 293.67it/s]


 50%|████████████████████████████████████▊                                    | 132085/262326 [07:53<07:57, 272.52it/s]


 50%|████████████████████████████████████▊                                    | 132113/262326 [07:53<08:22, 258.96it/s]


 50%|████████████████████████████████████▊                                    | 132140/262326 [07:53<08:21, 259.62it/s]


 50%|████████████████████████████████████▊                                    | 132167/262326 [07:53<08:26, 256.88it/s]


 50%|████████████████████████████████████▊                                    | 132194/262326 [07:53<08:29, 255.39it/s]


 50%|████████████████████████████████████▊                                    | 132220/262326 [07:53<10:00, 216.76it/s]


 50%|████████████████████████████████████▊                                    | 132247/262326 [07:53<09:27, 229.13it/s]


 50%|████████████████████████████████████▊                                    | 132278/262326 [07:53<08:45, 247.56it/s]


 50%|████████████████████████████████████▊                                    | 132315/262326 [07:54<08:11, 264.29it/s]


 50%|████████████████████████████████████▊                                    | 132345/262326 [07:54<07:56, 272.78it/s]


 50%|████████████████████████████████████▊                                    | 132374/262326 [07:54<08:04, 267.97it/s]


 50%|████████████████████████████████████▊                                    | 132404/262326 [07:54<07:52, 274.84it/s]


 50%|████████████████████████████████████▊                                    | 132432/262326 [07:54<08:09, 265.29it/s]


 50%|████████████████████████████████████▊                                    | 132459/262326 [07:54<08:25, 256.80it/s]


 51%|████████████████████████████████████▊                                    | 132486/262326 [07:54<08:45, 246.94it/s]


 51%|████████████████████████████████████▉                                    | 132518/262326 [07:54<08:14, 262.40it/s]


 51%|████████████████████████████████████▉                                    | 132545/262326 [07:54<08:24, 256.99it/s]


 51%|████████████████████████████████████▉                                    | 132572/262326 [07:55<08:36, 251.35it/s]


 51%|████████████████████████████████████▉                                    | 132605/262326 [07:55<08:11, 263.91it/s]


 51%|████████████████████████████████████▉                                    | 132633/262326 [07:55<08:24, 257.16it/s]


 51%|████████████████████████████████████▉                                    | 132662/262326 [07:55<08:08, 265.50it/s]


 51%|████████████████████████████████████▉                                    | 132689/262326 [07:55<08:48, 245.07it/s]


 51%|████████████████████████████████████▉                                    | 132717/262326 [07:55<08:30, 253.68it/s]


 51%|████████████████████████████████████▉                                    | 132743/262326 [07:55<08:52, 243.32it/s]


 51%|████████████████████████████████████▉                                    | 132772/262326 [07:55<08:28, 254.83it/s]


 51%|████████████████████████████████████▉                                    | 132802/262326 [07:55<08:08, 265.00it/s]


 51%|████████████████████████████████████▉                                    | 132839/262326 [07:56<07:41, 280.58it/s]


 51%|████████████████████████████████████▉                                    | 132870/262326 [07:56<07:30, 287.60it/s]


 51%|████████████████████████████████████▉                                    | 132900/262326 [07:56<07:36, 283.35it/s]


 51%|████████████████████████████████████▉                                    | 132930/262326 [07:56<07:38, 282.09it/s]


 51%|████████████████████████████████████▉                                    | 132959/262326 [07:56<07:39, 281.32it/s]


 51%|█████████████████████████████████████                                    | 132993/262326 [07:56<07:29, 287.54it/s]


 51%|█████████████████████████████████████                                    | 133024/262326 [07:56<07:21, 292.78it/s]


 51%|█████████████████████████████████████                                    | 133059/262326 [07:56<07:16, 296.05it/s]


 51%|█████████████████████████████████████                                    | 133089/262326 [07:56<07:16, 295.77it/s]


 51%|█████████████████████████████████████                                    | 133119/262326 [07:57<07:15, 296.68it/s]


 51%|█████████████████████████████████████                                    | 133149/262326 [07:57<07:14, 296.99it/s]


 51%|█████████████████████████████████████                                    | 133179/262326 [07:57<07:30, 286.67it/s]


 51%|█████████████████████████████████████                                    | 133208/262326 [07:57<07:35, 283.50it/s]


 51%|█████████████████████████████████████                                    | 133238/262326 [07:57<07:46, 276.51it/s]


 51%|█████████████████████████████████████                                    | 133266/262326 [07:57<07:51, 273.96it/s]


 51%|█████████████████████████████████████                                    | 133294/262326 [07:57<07:54, 271.70it/s]


 51%|█████████████████████████████████████                                    | 133325/262326 [07:57<07:46, 276.50it/s]


 51%|█████████████████████████████████████                                    | 133354/262326 [07:57<07:42, 278.59it/s]


 51%|█████████████████████████████████████                                    | 133389/262326 [07:57<07:29, 286.80it/s]


 51%|█████████████████████████████████████▏                                   | 133419/262326 [07:58<07:35, 283.06it/s]


 51%|█████████████████████████████████████▏                                   | 133452/262326 [07:58<07:25, 289.09it/s]


 51%|█████████████████████████████████████▏                                   | 133481/262326 [07:58<07:29, 286.48it/s]


 51%|█████████████████████████████████████▏                                   | 133513/262326 [07:58<07:30, 285.97it/s]


 51%|█████████████████████████████████████▏                                   | 133542/262326 [07:58<07:29, 286.24it/s]


 51%|█████████████████████████████████████▏                                   | 133572/262326 [07:58<07:24, 289.92it/s]


 51%|█████████████████████████████████████▏                                   | 133605/262326 [07:58<07:24, 289.64it/s]


 51%|█████████████████████████████████████▏                                   | 133634/262326 [07:58<07:42, 278.46it/s]


 51%|█████████████████████████████████████▏                                   | 133662/262326 [07:58<08:27, 253.48it/s]


 51%|█████████████████████████████████████▏                                   | 133688/262326 [07:59<08:32, 251.17it/s]


 51%|█████████████████████████████████████▏                                   | 133718/262326 [07:59<08:07, 263.56it/s]


 51%|█████████████████████████████████████▏                                   | 133748/262326 [07:59<07:53, 271.50it/s]


 51%|█████████████████████████████████████▏                                   | 133778/262326 [07:59<07:44, 276.61it/s]


 51%|█████████████████████████████████████▏                                   | 133806/262326 [07:59<08:08, 262.94it/s]


 51%|█████████████████████████████████████▏                                   | 133833/262326 [07:59<08:22, 255.47it/s]


 51%|█████████████████████████████████████▎                                   | 133861/262326 [07:59<08:11, 261.11it/s]


 51%|█████████████████████████████████████▎                                   | 133896/262326 [07:59<07:48, 274.39it/s]


 51%|█████████████████████████████████████▎                                   | 133925/262326 [07:59<07:41, 278.41it/s]


 51%|█████████████████████████████████████▎                                   | 133960/262326 [08:00<07:26, 287.26it/s]


 51%|█████████████████████████████████████▎                                   | 133989/262326 [08:00<07:27, 286.88it/s]


 51%|█████████████████████████████████████▎                                   | 134018/262326 [08:00<07:45, 275.85it/s]


 51%|█████████████████████████████████████▎                                   | 134047/262326 [08:00<08:00, 266.97it/s]


 51%|█████████████████████████████████████▎                                   | 134075/262326 [08:00<07:53, 270.72it/s]


 51%|█████████████████████████████████████▎                                   | 134103/262326 [08:00<07:57, 268.77it/s]


 51%|█████████████████████████████████████▎                                   | 134130/262326 [08:00<09:03, 236.01it/s]


 51%|█████████████████████████████████████▎                                   | 134166/262326 [08:00<08:20, 256.22it/s]


 51%|█████████████████████████████████████▎                                   | 134202/262326 [08:00<07:46, 274.48it/s]


 51%|█████████████████████████████████████▎                                   | 134233/262326 [08:01<07:34, 281.68it/s]


 51%|█████████████████████████████████████▎                                   | 134262/262326 [08:01<08:04, 264.19it/s]


 51%|█████████████████████████████████████▎                                   | 134290/262326 [08:01<08:04, 264.36it/s]


 51%|█████████████████████████████████████▍                                   | 134324/262326 [08:01<07:43, 276.24it/s]


 51%|█████████████████████████████████████▍                                   | 134354/262326 [08:01<07:52, 270.56it/s]


 51%|█████████████████████████████████████▍                                   | 134385/262326 [08:01<07:35, 280.78it/s]


 51%|█████████████████████████████████████▍                                   | 134415/262326 [08:01<07:27, 285.74it/s]


 51%|█████████████████████████████████████▍                                   | 134444/262326 [08:01<07:26, 286.59it/s]


 51%|█████████████████████████████████████▍                                   | 134478/262326 [08:01<07:22, 289.23it/s]


 51%|█████████████████████████████████████▍                                   | 134509/262326 [08:02<07:15, 293.78it/s]


 51%|█████████████████████████████████████▍                                   | 134539/262326 [08:02<07:33, 281.57it/s]


 51%|█████████████████████████████████████▍                                   | 134568/262326 [08:02<07:36, 279.90it/s]


 51%|█████████████████████████████████████▍                                   | 134597/262326 [08:02<07:34, 281.03it/s]


 51%|█████████████████████████████████████▍                                   | 134626/262326 [08:02<07:42, 275.95it/s]


 51%|█████████████████████████████████████▍                                   | 134654/262326 [08:02<07:42, 275.91it/s]


 51%|█████████████████████████████████████▍                                   | 134682/262326 [08:02<08:01, 264.94it/s]


 51%|█████████████████████████████████████▍                                   | 134716/262326 [08:02<07:46, 273.29it/s]


 51%|█████████████████████████████████████▍                                   | 134746/262326 [08:02<07:34, 280.69it/s]


 51%|█████████████████████████████████████▌                                   | 134778/262326 [08:03<07:19, 289.92it/s]


 51%|█████████████████████████████████████▌                                   | 134808/262326 [08:03<07:15, 292.80it/s]


 51%|█████████████████████████████████████▌                                   | 134838/262326 [08:03<07:48, 272.25it/s]


 51%|█████████████████████████████████████▌                                   | 134868/262326 [08:03<07:43, 275.08it/s]


 51%|█████████████████████████████████████▌                                   | 134902/262326 [08:03<07:31, 281.94it/s]


 51%|█████████████████████████████████████▌                                   | 134931/262326 [08:03<07:30, 282.67it/s]


 51%|█████████████████████████████████████▌                                   | 134960/262326 [08:03<07:28, 284.15it/s]


 51%|█████████████████████████████████████▌                                   | 134989/262326 [08:03<07:45, 273.77it/s]


 51%|█████████████████████████████████████▌                                   | 135020/262326 [08:03<07:30, 282.87it/s]


 51%|█████████████████████████████████████▌                                   | 135051/262326 [08:03<07:19, 289.49it/s]


 51%|█████████████████████████████████████▌                                   | 135081/262326 [08:04<07:15, 292.25it/s]


 52%|█████████████████████████████████████▌                                   | 135115/262326 [08:04<07:12, 294.13it/s]


 52%|█████████████████████████████████████▌                                   | 135145/262326 [08:04<07:17, 290.58it/s]


 52%|█████████████████████████████████████▌                                   | 135178/262326 [08:04<07:14, 292.44it/s]


 52%|█████████████████████████████████████▋                                   | 135208/262326 [08:04<07:34, 279.69it/s]


 52%|█████████████████████████████████████▋                                   | 135237/262326 [08:04<07:29, 282.57it/s]


 52%|█████████████████████████████████████▋                                   | 135266/262326 [08:04<07:29, 282.62it/s]


 52%|█████████████████████████████████████▋                                   | 135298/262326 [08:04<07:47, 271.47it/s]


 52%|█████████████████████████████████████▋                                   | 135329/262326 [08:04<07:33, 279.81it/s]


 52%|█████████████████████████████████████▋                                   | 135365/262326 [08:05<07:19, 289.06it/s]


 52%|█████████████████████████████████████▋                                   | 135395/262326 [08:05<07:36, 278.29it/s]


 52%|█████████████████████████████████████▋                                   | 135424/262326 [08:05<07:33, 279.54it/s]


 52%|█████████████████████████████████████▋                                   | 135459/262326 [08:05<07:21, 287.19it/s]


 52%|█████████████████████████████████████▋                                   | 135488/262326 [08:05<07:21, 287.34it/s]


 52%|█████████████████████████████████████▋                                   | 135523/262326 [08:05<07:14, 291.95it/s]


 52%|█████████████████████████████████████▋                                   | 135553/262326 [08:05<07:12, 292.84it/s]


 52%|█████████████████████████████████████▋                                   | 135585/262326 [08:05<07:19, 288.12it/s]


 52%|█████████████████████████████████████▋                                   | 135614/262326 [08:05<07:18, 288.66it/s]


 52%|█████████████████████████████████████▋                                   | 135643/262326 [08:06<07:39, 275.89it/s]


 52%|█████████████████████████████████████▊                                   | 135675/262326 [08:06<07:22, 286.51it/s]


 52%|█████████████████████████████████████▊                                   | 135705/262326 [08:06<07:16, 290.15it/s]


 52%|█████████████████████████████████████▊                                   | 135735/262326 [08:06<07:14, 291.53it/s]


 52%|█████████████████████████████████████▊                                   | 135768/262326 [08:06<07:14, 291.12it/s]


 52%|█████████████████████████████████████▊                                   | 135799/262326 [08:06<07:07, 295.80it/s]


 52%|█████████████████████████████████████▊                                   | 135835/262326 [08:06<07:00, 300.98it/s]


 52%|█████████████████████████████████████▊                                   | 135866/262326 [08:06<06:59, 301.76it/s]


 52%|█████████████████████████████████████▊                                   | 135897/262326 [08:06<07:05, 296.97it/s]


 52%|█████████████████████████████████████▊                                   | 135927/262326 [08:07<07:15, 289.99it/s]


 52%|█████████████████████████████████████▊                                   | 135959/262326 [08:07<07:22, 285.57it/s]


 52%|█████████████████████████████████████▊                                   | 135988/262326 [08:07<07:30, 280.21it/s]


 52%|█████████████████████████████████████▊                                   | 136017/262326 [08:07<07:38, 275.68it/s]


 52%|█████████████████████████████████████▊                                   | 136045/262326 [08:07<07:38, 275.65it/s]


 52%|█████████████████████████████████████▊                                   | 136081/262326 [08:07<07:20, 286.30it/s]


 52%|█████████████████████████████████████▉                                   | 136110/262326 [08:07<07:21, 285.60it/s]


 52%|█████████████████████████████████████▉                                   | 136140/262326 [08:07<07:34, 277.53it/s]


 52%|█████████████████████████████████████▉                                   | 136169/262326 [08:07<07:30, 279.83it/s]


 52%|█████████████████████████████████████▉                                   | 136198/262326 [08:07<07:27, 281.71it/s]


 52%|█████████████████████████████████████▉                                   | 136227/262326 [08:08<07:43, 272.32it/s]


 52%|█████████████████████████████████████▉                                   | 136255/262326 [08:08<07:39, 274.46it/s]


 52%|█████████████████████████████████████▉                                   | 136283/262326 [08:08<07:49, 268.32it/s]


 52%|█████████████████████████████████████▉                                   | 136313/262326 [08:08<07:44, 271.23it/s]


 52%|█████████████████████████████████████▉                                   | 136342/262326 [08:08<07:36, 276.28it/s]


 52%|█████████████████████████████████████▉                                   | 136378/262326 [08:08<07:19, 286.36it/s]


 52%|█████████████████████████████████████▉                                   | 136407/262326 [08:08<07:36, 275.54it/s]


 52%|█████████████████████████████████████▉                                   | 136437/262326 [08:08<07:30, 279.65it/s]


 52%|█████████████████████████████████████▉                                   | 136468/262326 [08:08<07:17, 287.42it/s]


 52%|█████████████████████████████████████▉                                   | 136501/262326 [08:09<07:18, 286.88it/s]


 52%|█████████████████████████████████████▉                                   | 136530/262326 [08:09<07:18, 287.02it/s]


 52%|██████████████████████████████████████                                   | 136559/262326 [08:09<07:48, 268.49it/s]


 52%|██████████████████████████████████████                                   | 136590/262326 [08:09<07:38, 274.22it/s]


 52%|██████████████████████████████████████                                   | 136618/262326 [08:09<09:30, 220.18it/s]


 52%|██████████████████████████████████████                                   | 136653/262326 [08:09<08:43, 239.90it/s]


 52%|██████████████████████████████████████                                   | 136683/262326 [08:09<08:15, 253.54it/s]


 52%|██████████████████████████████████████                                   | 136718/262326 [08:09<07:51, 266.56it/s]


 52%|██████████████████████████████████████                                   | 136747/262326 [08:10<07:58, 262.37it/s]


 52%|██████████████████████████████████████                                   | 136777/262326 [08:10<07:43, 271.12it/s]


 52%|██████████████████████████████████████                                   | 136805/262326 [08:10<07:40, 272.86it/s]


 52%|██████████████████████████████████████                                   | 136833/262326 [08:10<07:41, 271.87it/s]


 52%|██████████████████████████████████████                                   | 136866/262326 [08:10<07:29, 278.95it/s]


 52%|██████████████████████████████████████                                   | 136895/262326 [08:10<07:25, 281.57it/s]


 52%|██████████████████████████████████████                                   | 136925/262326 [08:10<07:17, 286.76it/s]


 52%|██████████████████████████████████████                                   | 136954/262326 [08:10<07:36, 274.71it/s]


 52%|██████████████████████████████████████                                   | 136983/262326 [08:10<07:30, 277.94it/s]


 52%|██████████████████████████████████████▏                                  | 137015/262326 [08:10<07:29, 278.75it/s]


 52%|██████████████████████████████████████▏                                  | 137047/262326 [08:11<07:16, 286.79it/s]


 52%|██████████████████████████████████████▏                                  | 137077/262326 [08:11<07:15, 287.52it/s]


 52%|██████████████████████████████████████▏                                  | 137107/262326 [08:11<07:13, 288.85it/s]


 52%|██████████████████████████████████████▏                                  | 137139/262326 [08:11<07:11, 289.90it/s]


 52%|██████████████████████████████████████▏                                  | 137174/262326 [08:11<07:05, 294.14it/s]


 52%|██████████████████████████████████████▏                                  | 137206/262326 [08:11<06:58, 299.05it/s]


 52%|██████████████████████████████████████▏                                  | 137241/262326 [08:11<06:56, 300.31it/s]


 52%|██████████████████████████████████████▏                                  | 137277/262326 [08:11<06:51, 303.64it/s]


 52%|██████████████████████████████████████▏                                  | 137308/262326 [08:11<06:49, 305.03it/s]


 52%|██████████████████████████████████████▏                                  | 137340/262326 [08:12<06:46, 307.18it/s]


 52%|██████████████████████████████████████▏                                  | 137371/262326 [08:12<06:46, 307.59it/s]


 52%|██████████████████████████████████████▏                                  | 137402/262326 [08:12<07:12, 288.98it/s]


 52%|██████████████████████████████████████▏                                  | 137435/262326 [08:12<07:06, 292.60it/s]


 52%|██████████████████████████████████████▎                                  | 137465/262326 [08:12<07:09, 290.73it/s]


 52%|██████████████████████████████████████▎                                  | 137500/262326 [08:12<06:59, 297.53it/s]


 52%|██████████████████████████████████████▎                                  | 137532/262326 [08:12<06:53, 301.75it/s]


 52%|██████████████████████████████████████▎                                  | 137567/262326 [08:12<06:52, 302.75it/s]


 52%|██████████████████████████████████████▎                                  | 137598/262326 [08:12<07:08, 291.27it/s]


 52%|██████████████████████████████████████▎                                  | 137628/262326 [08:13<07:06, 292.56it/s]


 52%|██████████████████████████████████████▎                                  | 137661/262326 [08:13<07:07, 291.32it/s]


 52%|██████████████████████████████████████▎                                  | 137691/262326 [08:13<07:28, 277.77it/s]


 53%|██████████████████████████████████████▎                                  | 137725/262326 [08:13<07:20, 282.80it/s]


 53%|██████████████████████████████████████▎                                  | 137754/262326 [08:13<07:17, 284.48it/s]


 53%|██████████████████████████████████████▎                                  | 137791/262326 [08:13<07:03, 294.37it/s]


 53%|██████████████████████████████████████▎                                  | 137822/262326 [08:13<06:58, 297.74it/s]


 53%|██████████████████████████████████████▎                                  | 137857/262326 [08:13<06:55, 299.64it/s]


 53%|██████████████████████████████████████▎                                  | 137888/262326 [08:13<07:14, 286.29it/s]


 53%|██████████████████████████████████████▍                                  | 137923/262326 [08:14<07:06, 291.53it/s]


 53%|██████████████████████████████████████▍                                  | 137953/262326 [08:14<07:24, 280.11it/s]


 53%|██████████████████████████████████████▍                                  | 137982/262326 [08:14<07:37, 271.54it/s]


 53%|██████████████████████████████████████▍                                  | 138012/262326 [08:14<07:29, 276.84it/s]


 53%|██████████████████████████████████████▍                                  | 138042/262326 [08:14<07:35, 272.64it/s]


 53%|██████████████████████████████████████▍                                  | 138070/262326 [08:14<07:36, 272.39it/s]


 53%|██████████████████████████████████████▍                                  | 138098/262326 [08:14<07:32, 274.24it/s]


 53%|██████████████████████████████████████▍                                  | 138126/262326 [08:14<07:51, 263.38it/s]


 53%|██████████████████████████████████████▍                                  | 138153/262326 [08:14<07:50, 263.88it/s]


 53%|██████████████████████████████████████▍                                  | 138184/262326 [08:15<07:46, 265.88it/s]


 53%|██████████████████████████████████████▍                                  | 138215/262326 [08:15<07:27, 277.28it/s]


 53%|██████████████████████████████████████▍                                  | 138243/262326 [08:15<07:29, 275.83it/s]


 53%|██████████████████████████████████████▍                                  | 138277/262326 [08:15<07:19, 282.29it/s]


 53%|██████████████████████████████████████▍                                  | 138312/262326 [08:15<07:10, 288.19it/s]


 53%|██████████████████████████████████████▍                                  | 138341/262326 [08:15<07:12, 286.75it/s]


 53%|██████████████████████████████████████▌                                  | 138370/262326 [08:15<07:12, 286.59it/s]


 53%|██████████████████████████████████████▌                                  | 138406/262326 [08:15<06:59, 295.30it/s]


 53%|██████████████████████████████████████▌                                  | 138437/262326 [08:15<06:55, 298.34it/s]


 53%|██████████████████████████████████████▌                                  | 138469/262326 [08:15<06:49, 302.50it/s]


 53%|██████████████████████████████████████▌                                  | 138505/262326 [08:16<06:44, 305.79it/s]


 53%|██████████████████████████████████████▌                                  | 138536/262326 [08:16<07:00, 294.26it/s]


 53%|██████████████████████████████████████▌                                  | 138566/262326 [08:16<07:01, 293.40it/s]


 53%|██████████████████████████████████████▌                                  | 138596/262326 [08:16<07:00, 294.20it/s]


 53%|██████████████████████████████████████▌                                  | 138626/262326 [08:16<07:17, 282.50it/s]


 53%|██████████████████████████████████████▌                                  | 138658/262326 [08:16<07:19, 281.25it/s]


 53%|██████████████████████████████████████▌                                  | 138687/262326 [08:16<07:22, 279.67it/s]


 53%|██████████████████████████████████████▌                                  | 138716/262326 [08:16<08:14, 249.92it/s]


 53%|██████████████████████████████████████▌                                  | 138742/262326 [08:17<08:38, 238.34it/s]


 53%|██████████████████████████████████████▌                                  | 138776/262326 [08:17<08:06, 254.14it/s]


 53%|██████████████████████████████████████▋                                  | 138803/262326 [08:17<08:01, 256.73it/s]


 53%|██████████████████████████████████████▋                                  | 138834/262326 [08:17<07:53, 261.03it/s]


 53%|██████████████████████████████████████▋                                  | 138864/262326 [08:17<07:35, 270.82it/s]


 53%|██████████████████████████████████████▋                                  | 138892/262326 [08:17<07:38, 268.96it/s]


 53%|██████████████████████████████████████▋                                  | 138922/262326 [08:17<07:27, 275.71it/s]


 53%|██████████████████████████████████████▋                                  | 138951/262326 [08:17<07:24, 277.68it/s]


 53%|██████████████████████████████████████▋                                  | 138979/262326 [08:17<07:28, 275.29it/s]


 53%|██████████████████████████████████████▋                                  | 139007/262326 [08:17<07:30, 273.67it/s]


 53%|██████████████████████████████████████▋                                  | 139035/262326 [08:18<07:52, 261.13it/s]


 53%|██████████████████████████████████████▋                                  | 139062/262326 [08:18<07:57, 257.91it/s]


 53%|██████████████████████████████████████▋                                  | 139090/262326 [08:18<07:51, 261.42it/s]


 53%|██████████████████████████████████████▋                                  | 139118/262326 [08:18<07:46, 263.91it/s]


 53%|██████████████████████████████████████▋                                  | 139145/262326 [08:18<08:15, 248.37it/s]


 53%|██████████████████████████████████████▋                                  | 139173/262326 [08:18<08:10, 251.21it/s]


 53%|██████████████████████████████████████▋                                  | 139202/262326 [08:18<07:52, 260.37it/s]


 53%|██████████████████████████████████████▋                                  | 139236/262326 [08:18<07:34, 270.69it/s]


 53%|██████████████████████████████████████▊                                  | 139266/262326 [08:18<07:22, 278.31it/s]


 53%|██████████████████████████████████████▊                                  | 139295/262326 [08:19<07:16, 281.57it/s]


 53%|██████████████████████████████████████▊                                  | 139324/262326 [08:19<07:43, 265.47it/s]


 53%|██████████████████████████████████████▊                                  | 139351/262326 [08:19<07:53, 259.92it/s]


 53%|██████████████████████████████████████▊                                  | 139380/262326 [08:19<07:40, 267.04it/s]


 53%|██████████████████████████████████████▊                                  | 139408/262326 [08:19<07:35, 269.88it/s]


 53%|██████████████████████████████████████▊                                  | 139438/262326 [08:19<07:40, 266.68it/s]


 53%|██████████████████████████████████████▊                                  | 139468/262326 [08:19<07:26, 275.41it/s]


 53%|██████████████████████████████████████▊                                  | 139496/262326 [08:19<07:24, 276.64it/s]


 53%|██████████████████████████████████████▊                                  | 139524/262326 [08:19<07:25, 275.80it/s]


 53%|██████████████████████████████████████▊                                  | 139559/262326 [08:20<07:10, 284.93it/s]


 53%|██████████████████████████████████████▊                                  | 139588/262326 [08:20<07:29, 273.13it/s]


 53%|██████████████████████████████████████▊                                  | 139616/262326 [08:20<07:52, 259.50it/s]


 53%|██████████████████████████████████████▊                                  | 139646/262326 [08:20<07:35, 269.20it/s]


 53%|██████████████████████████████████████▊                                  | 139674/262326 [08:20<07:48, 261.64it/s]


 53%|██████████████████████████████████████▉                                  | 139701/262326 [08:20<08:18, 246.13it/s]


 53%|██████████████████████████████████████▉                                  | 139731/262326 [08:20<07:59, 255.72it/s]


 53%|██████████████████████████████████████▉                                  | 139766/262326 [08:20<07:36, 268.70it/s]


 53%|██████████████████████████████████████▉                                  | 139798/262326 [08:20<07:16, 280.92it/s]


 53%|██████████████████████████████████████▉                                  | 139835/262326 [08:21<06:59, 291.72it/s]


 53%|██████████████████████████████████████▉                                  | 139868/262326 [08:21<06:47, 300.86it/s]


 53%|██████████████████████████████████████▉                                  | 139899/262326 [08:21<06:57, 293.08it/s]


 53%|██████████████████████████████████████▉                                  | 139929/262326 [08:21<07:48, 261.08it/s]


 53%|██████████████████████████████████████▉                                  | 139958/262326 [08:21<07:47, 261.72it/s]


 53%|██████████████████████████████████████▉                                  | 139985/262326 [08:21<07:53, 258.65it/s]


 53%|██████████████████████████████████████▉                                  | 140012/262326 [08:21<08:23, 243.09it/s]


 53%|██████████████████████████████████████▉                                  | 140040/262326 [08:21<08:03, 252.78it/s]


 53%|██████████████████████████████████████▉                                  | 140074/262326 [08:21<07:41, 265.05it/s]


 53%|██████████████████████████████████████▉                                  | 140101/262326 [08:22<07:58, 255.40it/s]


 53%|██████████████████████████████████████▉                                  | 140127/262326 [08:22<08:15, 246.77it/s]


 53%|███████████████████████████████████████                                  | 140155/262326 [08:22<07:59, 254.66it/s]


 53%|███████████████████████████████████████                                  | 140187/262326 [08:22<07:38, 266.23it/s]


 53%|███████████████████████████████████████                                  | 140221/262326 [08:22<07:24, 274.68it/s]


 53%|███████████████████████████████████████                                  | 140253/262326 [08:22<07:08, 285.11it/s]


 53%|███████████████████████████████████████                                  | 140290/262326 [08:22<06:53, 295.31it/s]


 53%|███████████████████████████████████████                                  | 140320/262326 [08:22<07:10, 283.21it/s]


 54%|███████████████████████████████████████                                  | 140349/262326 [08:22<07:09, 284.01it/s]


 54%|███████████████████████████████████████                                  | 140378/262326 [08:23<07:45, 261.85it/s]


 54%|███████████████████████████████████████                                  | 140405/262326 [08:23<08:13, 247.09it/s]


 54%|███████████████████████████████████████                                  | 140433/262326 [08:23<07:59, 254.22it/s]


 54%|███████████████████████████████████████                                  | 140465/262326 [08:23<07:41, 263.87it/s]


 54%|███████████████████████████████████████                                  | 140495/262326 [08:23<07:26, 272.61it/s]


 54%|███████████████████████████████████████                                  | 140524/262326 [08:23<07:18, 277.52it/s]


 54%|███████████████████████████████████████                                  | 140557/262326 [08:23<06:58, 290.67it/s]


 54%|███████████████████████████████████████                                  | 140587/262326 [08:23<06:55, 292.78it/s]


 54%|███████████████████████████████████████▏                                 | 140618/262326 [08:23<06:56, 292.05it/s]


 54%|███████████████████████████████████████▏                                 | 140648/262326 [08:24<06:58, 291.09it/s]


 54%|███████████████████████████████████████▏                                 | 140678/262326 [08:24<07:13, 280.77it/s]


 54%|███████████████████████████████████████▏                                 | 140707/262326 [08:24<07:28, 271.43it/s]


 54%|███████████████████████████████████████▏                                 | 140735/262326 [08:24<07:24, 273.35it/s]


 54%|███████████████████████████████████████▏                                 | 140765/262326 [08:24<07:13, 280.26it/s]


 54%|███████████████████████████████████████▏                                 | 140797/262326 [08:24<07:02, 287.85it/s]


 54%|███████████████████████████████████████▏                                 | 140826/262326 [08:24<07:05, 285.78it/s]


 54%|███████████████████████████████████████▏                                 | 140855/262326 [08:24<07:07, 283.90it/s]


 54%|███████████████████████████████████████▏                                 | 140886/262326 [08:24<06:58, 289.84it/s]


 54%|███████████████████████████████████████▏                                 | 140916/262326 [08:24<07:06, 284.59it/s]


 54%|███████████████████████████████████████▏                                 | 140951/262326 [08:25<06:58, 290.10it/s]


 54%|███████████████████████████████████████▏                                 | 140981/262326 [08:25<07:18, 276.74it/s]


 54%|███████████████████████████████████████▏                                 | 141009/262326 [08:25<07:25, 272.27it/s]


 54%|███████████████████████████████████████▏                                 | 141037/262326 [08:25<07:33, 267.73it/s]


 54%|███████████████████████████████████████▎                                 | 141064/262326 [08:25<07:33, 267.16it/s]


 54%|███████████████████████████████████████▎                                 | 141101/262326 [08:25<07:09, 282.30it/s]


 54%|███████████████████████████████████████▎                                 | 141133/262326 [08:25<06:55, 291.52it/s]


 54%|███████████████████████████████████████▎                                 | 141164/262326 [08:25<06:50, 295.39it/s]


 54%|███████████████████████████████████████▎                                 | 141201/262326 [08:25<06:38, 303.83it/s]


 54%|███████████████████████████████████████▎                                 | 141232/262326 [08:26<06:40, 302.39it/s]


 54%|███████████████████████████████████████▎                                 | 141271/262326 [08:26<06:27, 312.49it/s]


 54%|███████████████████████████████████████▎                                 | 141303/262326 [08:26<06:30, 309.59it/s]


 54%|███████████████████████████████████████▎                                 | 141337/262326 [08:26<06:31, 309.33it/s]


 54%|███████████████████████████████████████▎                                 | 141369/262326 [08:26<06:28, 311.39it/s]


 54%|███████████████████████████████████████▎                                 | 141401/262326 [08:26<06:27, 311.85it/s]


 54%|███████████████████████████████████████▎                                 | 141433/262326 [08:26<07:07, 282.66it/s]


 54%|███████████████████████████████████████▎                                 | 141466/262326 [08:26<06:59, 287.78it/s]


 54%|███████████████████████████████████████▍                                 | 141496/262326 [08:26<06:54, 291.21it/s]


 54%|███████████████████████████████████████▍                                 | 141527/262326 [08:27<06:47, 296.10it/s]


 54%|███████████████████████████████████████▍                                 | 141558/262326 [08:27<06:44, 298.51it/s]


 54%|███████████████████████████████████████▍                                 | 141589/262326 [08:27<06:52, 292.71it/s]


 54%|███████████████████████████████████████▍                                 | 141619/262326 [08:27<06:55, 290.17it/s]


 54%|███████████████████████████████████████▍                                 | 141652/262326 [08:27<06:55, 290.25it/s]


 54%|███████████████████████████████████████▍                                 | 141684/262326 [08:27<06:47, 296.05it/s]


 54%|███████████████████████████████████████▍                                 | 141714/262326 [08:27<06:46, 296.79it/s]


 54%|███████████████████████████████████████▍                                 | 141748/262326 [08:27<06:46, 296.54it/s]


 54%|███████████████████████████████████████▍                                 | 141783/262326 [08:27<06:42, 299.35it/s]


 54%|███████████████████████████████████████▍                                 | 141813/262326 [08:28<06:44, 297.68it/s]


 54%|███████████████████████████████████████▍                                 | 141843/262326 [08:28<06:46, 296.72it/s]


 54%|███████████████████████████████████████▍                                 | 141873/262326 [08:28<07:03, 284.16it/s]


 54%|███████████████████████████████████████▍                                 | 141903/262326 [08:28<06:57, 288.22it/s]


 54%|███████████████████████████████████████▍                                 | 141936/262326 [08:28<06:57, 288.66it/s]


 54%|███████████████████████████████████████▌                                 | 141965/262326 [08:28<07:00, 286.57it/s]


 54%|███████████████████████████████████████▌                                 | 142001/262326 [08:28<06:48, 294.63it/s]


 54%|███████████████████████████████████████▌                                 | 142031/262326 [08:28<06:51, 292.43it/s]


 54%|███████████████████████████████████████▌                                 | 142063/262326 [08:28<06:44, 297.47it/s]


 54%|███████████████████████████████████████▌                                 | 142099/262326 [08:28<06:31, 306.76it/s]


 54%|███████████████████████████████████████▌                                 | 142131/262326 [08:29<06:28, 309.22it/s]


 54%|███████████████████████████████████████▌                                 | 142168/262326 [08:29<06:24, 312.78it/s]


 54%|███████████████████████████████████████▌                                 | 142200/262326 [08:29<07:02, 284.36it/s]


 54%|███████████████████████████████████████▌                                 | 142229/262326 [08:29<07:17, 274.51it/s]


 54%|███████████████████████████████████████▌                                 | 142257/262326 [08:29<07:44, 258.37it/s]


 54%|███████████████████████████████████████▌                                 | 142284/262326 [08:29<07:50, 255.28it/s]


 54%|███████████████████████████████████████▌                                 | 142313/262326 [08:29<07:37, 262.05it/s]


 54%|███████████████████████████████████████▌                                 | 142350/262326 [08:29<07:11, 277.82it/s]


 54%|███████████████████████████████████████▌                                 | 142379/262326 [08:30<07:12, 277.64it/s]


 54%|███████████████████████████████████████▋                                 | 142408/262326 [08:30<07:26, 268.77it/s]


 54%|███████████████████████████████████████▋                                 | 142437/262326 [08:30<07:25, 268.90it/s]


 54%|███████████████████████████████████████▋                                 | 142469/262326 [08:30<07:20, 272.03it/s]


 54%|███████████████████████████████████████▋                                 | 142503/262326 [08:30<07:03, 283.04it/s]


 54%|███████████████████████████████████████▋                                 | 142532/262326 [08:30<07:19, 272.41it/s]


 54%|███████████████████████████████████████▋                                 | 142560/262326 [08:30<07:36, 262.52it/s]


 54%|███████████████████████████████████████▋                                 | 142587/262326 [08:30<07:49, 255.21it/s]


 54%|███████████████████████████████████████▋                                 | 142613/262326 [08:30<07:57, 250.90it/s]


 54%|███████████████████████████████████████▋                                 | 142648/262326 [08:31<07:31, 264.79it/s]


 54%|███████████████████████████████████████▋                                 | 142675/262326 [08:31<07:29, 266.04it/s]


 54%|███████████████████████████████████████▋                                 | 142702/262326 [08:31<09:17, 214.68it/s]


 54%|███████████████████████████████████████▋                                 | 142732/262326 [08:31<08:32, 233.33it/s]


 54%|███████████████████████████████████████▋                                 | 142759/262326 [08:31<08:11, 243.18it/s]


 54%|███████████████████████████████████████▋                                 | 142793/262326 [08:31<07:45, 256.74it/s]


 54%|███████████████████████████████████████▋                                 | 142821/262326 [08:31<07:59, 249.30it/s]


 54%|███████████████████████████████████████▊                                 | 142856/262326 [08:31<07:32, 264.14it/s]


 54%|███████████████████████████████████████▊                                 | 142884/262326 [08:31<07:30, 265.32it/s]


 54%|███████████████████████████████████████▊                                 | 142915/262326 [08:32<07:13, 275.60it/s]


 54%|███████████████████████████████████████▊                                 | 142948/262326 [08:32<07:02, 282.41it/s]


 55%|███████████████████████████████████████▊                                 | 142977/262326 [08:32<07:05, 280.40it/s]


 55%|███████████████████████████████████████▊                                 | 143006/262326 [08:32<07:16, 273.34it/s]


 55%|███████████████████████████████████████▊                                 | 143034/262326 [08:32<07:30, 265.06it/s]


 55%|███████████████████████████████████████▊                                 | 143061/262326 [08:32<07:33, 263.26it/s]


 55%|███████████████████████████████████████▊                                 | 143088/262326 [08:32<07:29, 265.09it/s]


 55%|███████████████████████████████████████▊                                 | 143115/262326 [08:32<07:28, 265.67it/s]


 55%|███████████████████████████████████████▊                                 | 143145/262326 [08:32<07:31, 264.09it/s]


 55%|███████████████████████████████████████▊                                 | 143172/262326 [08:33<07:31, 264.04it/s]


 55%|███████████████████████████████████████▊                                 | 143199/262326 [08:33<07:28, 265.75it/s]


 55%|███████████████████████████████████████▊                                 | 143229/262326 [08:33<07:20, 270.11it/s]


 55%|███████████████████████████████████████▊                                 | 143259/262326 [08:33<07:21, 269.86it/s]


 55%|███████████████████████████████████████▉                                 | 143292/262326 [08:33<07:11, 276.06it/s]


 55%|███████████████████████████████████████▉                                 | 143320/262326 [08:33<07:10, 276.23it/s]


 55%|███████████████████████████████████████▉                                 | 143349/262326 [08:33<07:05, 279.83it/s]


 55%|███████████████████████████████████████▉                                 | 143383/262326 [08:33<06:58, 284.18it/s]


 55%|███████████████████████████████████████▉                                 | 143414/262326 [08:33<06:52, 288.42it/s]


 55%|███████████████████████████████████████▉                                 | 143443/262326 [08:33<07:03, 280.93it/s]


 55%|███████████████████████████████████████▉                                 | 143472/262326 [08:34<08:05, 244.95it/s]


 55%|███████████████████████████████████████▉                                 | 143498/262326 [08:34<08:18, 238.35it/s]


 55%|███████████████████████████████████████▉                                 | 143527/262326 [08:34<07:52, 251.32it/s]


 55%|███████████████████████████████████████▉                                 | 143556/262326 [08:34<07:36, 259.94it/s]


 55%|███████████████████████████████████████▉                                 | 143592/262326 [08:34<09:03, 218.29it/s]


 55%|███████████████████████████████████████▉                                 | 143617/262326 [08:34<08:47, 225.10it/s]


 55%|███████████████████████████████████████▉                                 | 143645/262326 [08:34<08:19, 237.51it/s]


 55%|███████████████████████████████████████▉                                 | 143676/262326 [08:34<07:45, 255.12it/s]


 55%|███████████████████████████████████████▉                                 | 143707/262326 [08:35<07:21, 268.64it/s]


 55%|███████████████████████████████████████▉                                 | 143739/262326 [08:35<07:15, 272.05it/s]


 55%|████████████████████████████████████████                                 | 143767/262326 [08:35<07:13, 273.38it/s]


 55%|████████████████████████████████████████                                 | 143795/262326 [08:35<07:11, 274.80it/s]


 55%|████████████████████████████████████████                                 | 143826/262326 [08:35<07:14, 272.77it/s]


 55%|████████████████████████████████████████                                 | 143856/262326 [08:35<07:24, 266.77it/s]


 55%|████████████████████████████████████████                                 | 143887/262326 [08:35<07:05, 278.19it/s]


 55%|████████████████████████████████████████                                 | 143918/262326 [08:35<06:52, 286.80it/s]


 55%|████████████████████████████████████████                                 | 143949/262326 [08:35<06:56, 284.54it/s]


 55%|████████████████████████████████████████                                 | 143983/262326 [08:36<06:39, 296.00it/s]


 55%|████████████████████████████████████████                                 | 144013/262326 [08:36<06:41, 294.57it/s]


 55%|████████████████████████████████████████                                 | 144045/262326 [08:36<06:33, 300.71it/s]


 55%|████████████████████████████████████████                                 | 144078/262326 [08:36<06:35, 299.01it/s]


 55%|████████████████████████████████████████                                 | 144109/262326 [08:36<06:37, 297.37it/s]


 55%|████████████████████████████████████████                                 | 144144/262326 [08:36<06:32, 301.10it/s]


 55%|████████████████████████████████████████                                 | 144175/262326 [08:36<06:48, 289.08it/s]


 55%|████████████████████████████████████████▏                                | 144205/262326 [08:36<07:10, 274.08it/s]


 55%|████████████████████████████████████████▏                                | 144233/262326 [08:36<07:19, 268.91it/s]


 55%|████████████████████████████████████████▏                                | 144261/262326 [08:37<07:21, 267.71it/s]


 55%|████████████████████████████████████████▏                                | 144288/262326 [08:37<07:23, 266.20it/s]


 55%|████████████████████████████████████████▏                                | 144315/262326 [08:37<07:38, 257.62it/s]


 55%|████████████████████████████████████████▏                                | 144341/262326 [08:37<07:52, 249.64it/s]


 55%|████████████████████████████████████████▏                                | 144367/262326 [08:37<07:50, 250.67it/s]


 55%|████████████████████████████████████████▏                                | 144393/262326 [08:37<07:46, 252.86it/s]


 55%|████████████████████████████████████████▏                                | 144419/262326 [08:37<07:43, 254.41it/s]


 55%|████████████████████████████████████████▏                                | 144445/262326 [08:37<07:46, 252.52it/s]


 55%|████████████████████████████████████████▏                                | 144472/262326 [08:37<07:38, 257.00it/s]


 55%|████████████████████████████████████████▏                                | 144499/262326 [08:37<07:36, 257.97it/s]


 55%|████████████████████████████████████████▏                                | 144527/262326 [08:38<07:28, 262.92it/s]


 55%|████████████████████████████████████████▏                                | 144560/262326 [08:38<07:05, 277.06it/s]


 55%|████████████████████████████████████████▏                                | 144588/262326 [08:38<07:16, 269.43it/s]


 55%|████████████████████████████████████████▏                                | 144619/262326 [08:38<07:07, 275.13it/s]


 55%|████████████████████████████████████████▎                                | 144648/262326 [08:38<07:01, 278.87it/s]


 55%|████████████████████████████████████████▎                                | 144678/262326 [08:38<06:53, 284.58it/s]


 55%|████████████████████████████████████████▎                                | 144713/262326 [08:38<06:45, 290.28it/s]


 55%|████████████████████████████████████████▎                                | 144743/262326 [08:38<07:01, 278.82it/s]


 55%|████████████████████████████████████████▎                                | 144772/262326 [08:38<06:57, 281.90it/s]


 55%|████████████████████████████████████████▎                                | 144801/262326 [08:39<06:54, 283.21it/s]


 55%|████████████████████████████████████████▎                                | 144830/262326 [08:39<06:54, 283.79it/s]


 55%|████████████████████████████████████████▎                                | 144859/262326 [08:39<07:04, 276.75it/s]


 55%|████████████████████████████████████████▎                                | 144888/262326 [08:39<07:01, 278.39it/s]


 55%|████████████████████████████████████████▎                                | 144918/262326 [08:39<06:53, 284.21it/s]


 55%|████████████████████████████████████████▎                                | 144950/262326 [08:39<06:39, 293.97it/s]


 55%|████████████████████████████████████████▎                                | 144980/262326 [08:39<06:37, 295.08it/s]


 55%|████████████████████████████████████████▎                                | 145010/262326 [08:39<06:37, 295.37it/s]


 55%|████████████████████████████████████████▎                                | 145041/262326 [08:39<06:48, 287.34it/s]


 55%|████████████████████████████████████████▎                                | 145072/262326 [08:39<06:41, 291.80it/s]


 55%|████████████████████████████████████████▍                                | 145108/262326 [08:40<06:33, 298.22it/s]


 55%|████████████████████████████████████████▍                                | 145138/262326 [08:40<06:33, 298.01it/s]


 55%|████████████████████████████████████████▍                                | 145168/262326 [08:40<06:43, 290.07it/s]


 55%|████████████████████████████████████████▍                                | 145198/262326 [08:40<06:48, 286.46it/s]


 55%|████████████████████████████████████████▍                                | 145227/262326 [08:40<06:47, 287.33it/s]


 55%|████████████████████████████████████████▍                                | 145263/262326 [08:40<06:36, 294.97it/s]


 55%|████████████████████████████████████████▍                                | 145296/262326 [08:40<06:28, 301.57it/s]


 55%|████████████████████████████████████████▍                                | 145329/262326 [08:40<06:32, 297.71it/s]


 55%|████████████████████████████████████████▍                                | 145360/262326 [08:40<06:29, 299.97it/s]


 55%|████████████████████████████████████████▍                                | 145392/262326 [08:41<06:22, 305.67it/s]


 55%|████████████████████████████████████████▍                                | 145428/262326 [08:41<06:19, 307.96it/s]


 55%|████████████████████████████████████████▍                                | 145459/262326 [08:41<06:52, 283.50it/s]


 55%|████████████████████████████████████████▍                                | 145489/262326 [08:41<06:50, 284.60it/s]


 55%|████████████████████████████████████████▍                                | 145518/262326 [08:41<06:48, 285.64it/s]


 55%|████████████████████████████████████████▌                                | 145549/262326 [08:41<06:39, 292.26it/s]


 55%|████████████████████████████████████████▌                                | 145579/262326 [08:41<06:37, 293.72it/s]


 56%|████████████████████████████████████████▌                                | 145610/262326 [08:41<06:47, 286.30it/s]


 56%|████████████████████████████████████████▌                                | 145641/262326 [08:41<06:39, 292.00it/s]


 56%|████████████████████████████████████████▌                                | 145671/262326 [08:42<07:31, 258.40it/s]


 56%|████████████████████████████████████████▌                                | 145703/262326 [08:42<07:08, 272.04it/s]


 56%|████████████████████████████████████████▌                                | 145731/262326 [08:42<07:11, 270.48it/s]


 56%|████████████████████████████████████████▌                                | 145759/262326 [08:42<07:23, 262.71it/s]


 56%|████████████████████████████████████████▌                                | 145793/262326 [08:42<07:02, 275.89it/s]


 56%|████████████████████████████████████████▌                                | 145824/262326 [08:42<06:50, 283.96it/s]


 56%|████████████████████████████████████████▌                                | 145855/262326 [08:42<06:41, 289.89it/s]


 56%|████████████████████████████████████████▌                                | 145886/262326 [08:42<06:36, 293.82it/s]


 56%|████████████████████████████████████████▌                                | 145917/262326 [08:42<06:31, 297.09it/s]


 56%|████████████████████████████████████████▌                                | 145953/262326 [08:43<06:24, 302.60it/s]


 56%|████████████████████████████████████████▌                                | 145984/262326 [08:43<06:24, 302.20it/s]


 56%|████████████████████████████████████████▋                                | 146015/262326 [08:43<06:37, 292.63it/s]


 56%|████████████████████████████████████████▋                                | 146045/262326 [08:43<06:40, 290.57it/s]


 56%|████████████████████████████████████████▋                                | 146082/262326 [08:43<06:25, 301.28it/s]


 56%|████████████████████████████████████████▋                                | 146113/262326 [08:43<06:23, 302.96it/s]


 56%|████████████████████████████████████████▋                                | 146145/262326 [08:43<06:20, 305.22it/s]


 56%|████████████████████████████████████████▋                                | 146181/262326 [08:43<06:16, 308.49it/s]


 56%|████████████████████████████████████████▋                                | 146212/262326 [08:43<06:16, 308.60it/s]


 56%|████████████████████████████████████████▋                                | 146243/262326 [08:43<06:18, 306.58it/s]


 56%|████████████████████████████████████████▋                                | 146279/262326 [08:44<06:15, 309.25it/s]


 56%|████████████████████████████████████████▋                                | 146310/262326 [08:44<06:33, 294.88it/s]


 56%|████████████████████████████████████████▋                                | 146340/262326 [08:44<07:02, 274.69it/s]


 56%|████████████████████████████████████████▋                                | 146370/262326 [08:44<07:01, 275.22it/s]


 56%|████████████████████████████████████████▋                                | 146400/262326 [08:44<06:51, 281.98it/s]


 56%|████████████████████████████████████████▋                                | 146434/262326 [08:44<06:44, 286.42it/s]


 56%|████████████████████████████████████████▊                                | 146465/262326 [08:44<06:35, 292.80it/s]


 56%|████████████████████████████████████████▊                                | 146496/262326 [08:44<06:30, 296.76it/s]


 56%|████████████████████████████████████████▊                                | 146532/262326 [08:44<06:24, 301.37it/s]


 56%|████████████████████████████████████████▊                                | 146563/262326 [08:45<06:21, 303.65it/s]


 56%|████████████████████████████████████████▊                                | 146594/262326 [08:45<06:55, 278.43it/s]


 56%|████████████████████████████████████████▊                                | 146623/262326 [08:45<07:20, 262.63it/s]


 56%|████████████████████████████████████████▊                                | 146653/262326 [08:45<07:05, 271.97it/s]


 56%|████████████████████████████████████████▊                                | 146681/262326 [08:45<09:23, 205.14it/s]


 56%|████████████████████████████████████████▊                                | 146718/262326 [08:45<08:18, 231.93it/s]


 56%|████████████████████████████████████████▊                                | 146748/262326 [08:45<07:46, 247.92it/s]


 56%|████████████████████████████████████████▊                                | 146783/262326 [08:45<07:20, 262.31it/s]


 56%|████████████████████████████████████████▊                                | 146815/262326 [08:46<06:58, 276.22it/s]


 56%|████████████████████████████████████████▊                                | 146851/262326 [08:46<06:42, 287.06it/s]


 56%|████████████████████████████████████████▊                                | 146881/262326 [08:46<06:58, 275.96it/s]


 56%|████████████████████████████████████████▉                                | 146912/262326 [08:46<06:47, 282.91it/s]


 56%|████████████████████████████████████████▉                                | 146946/262326 [08:46<06:38, 289.48it/s]


 56%|████████████████████████████████████████▉                                | 146976/262326 [08:46<06:40, 287.74it/s]


 56%|████████████████████████████████████████▉                                | 147008/262326 [08:46<06:31, 294.53it/s]


 56%|████████████████████████████████████████▉                                | 147038/262326 [08:46<06:53, 278.48it/s]


 56%|████████████████████████████████████████▉                                | 147067/262326 [08:46<06:56, 276.40it/s]


 56%|████████████████████████████████████████▉                                | 147095/262326 [08:47<06:56, 276.87it/s]


 56%|████████████████████████████████████████▉                                | 147126/262326 [08:47<06:45, 283.92it/s]


 56%|████████████████████████████████████████▉                                | 147157/262326 [08:47<06:38, 289.03it/s]


 56%|████████████████████████████████████████▉                                | 147187/262326 [08:47<06:35, 290.77it/s]


 56%|████████████████████████████████████████▉                                | 147221/262326 [08:47<06:29, 295.68it/s]


 56%|████████████████████████████████████████▉                                | 147257/262326 [08:47<06:23, 300.27it/s]


 56%|████████████████████████████████████████▉                                | 147288/262326 [08:47<06:24, 299.27it/s]


 56%|████████████████████████████████████████▉                                | 147318/262326 [08:47<07:00, 273.57it/s]


 56%|█████████████████████████████████████████                                | 147346/262326 [08:48<08:55, 214.59it/s]


 56%|█████████████████████████████████████████                                | 147378/262326 [08:48<08:04, 237.20it/s]


 56%|█████████████████████████████████████████                                | 147405/262326 [08:48<09:55, 193.12it/s]


 56%|█████████████████████████████████████████                                | 147430/262326 [08:48<09:15, 206.87it/s]


 56%|█████████████████████████████████████████                                | 147455/262326 [08:48<08:51, 216.06it/s]


 56%|█████████████████████████████████████████                                | 147479/262326 [08:48<08:40, 220.44it/s]


 56%|█████████████████████████████████████████                                | 147513/262326 [08:48<07:57, 240.46it/s]


 56%|█████████████████████████████████████████                                | 147541/262326 [08:48<07:40, 249.27it/s]


 56%|█████████████████████████████████████████                                | 147575/262326 [08:48<07:14, 263.87it/s]


 56%|█████████████████████████████████████████                                | 147607/262326 [08:49<06:53, 277.11it/s]


 56%|█████████████████████████████████████████                                | 147643/262326 [08:49<06:39, 286.88it/s]


 56%|█████████████████████████████████████████                                | 147673/262326 [08:49<06:39, 287.02it/s]


 56%|█████████████████████████████████████████                                | 147706/262326 [08:49<06:36, 289.17it/s]


 56%|█████████████████████████████████████████                                | 147737/262326 [08:49<06:29, 294.06it/s]


 56%|█████████████████████████████████████████                                | 147770/262326 [08:49<06:32, 291.51it/s]


 56%|█████████████████████████████████████████▏                               | 147800/262326 [08:49<06:51, 278.51it/s]


 56%|█████████████████████████████████████████▏                               | 147829/262326 [08:49<07:02, 270.73it/s]


 56%|█████████████████████████████████████████▏                               | 147860/262326 [08:49<06:49, 279.39it/s]


 56%|█████████████████████████████████████████▏                               | 147896/262326 [08:50<06:36, 288.44it/s]


 56%|█████████████████████████████████████████▏                               | 147933/262326 [08:50<06:24, 297.31it/s]


 56%|█████████████████████████████████████████▏                               | 147963/262326 [08:50<06:38, 287.20it/s]


 56%|█████████████████████████████████████████▏                               | 147992/262326 [08:50<06:56, 274.39it/s]


 56%|█████████████████████████████████████████▏                               | 148021/262326 [08:50<06:51, 277.53it/s]


 56%|█████████████████████████████████████████▏                               | 148049/262326 [08:50<06:58, 272.78it/s]


 56%|█████████████████████████████████████████▏                               | 148085/262326 [08:50<06:40, 285.36it/s]


 56%|█████████████████████████████████████████▏                               | 148114/262326 [08:50<07:16, 261.70it/s]


 56%|█████████████████████████████████████████▏                               | 148146/262326 [08:50<06:53, 275.98it/s]


 56%|█████████████████████████████████████████▏                               | 148177/262326 [08:51<06:41, 284.62it/s]


 56%|█████████████████████████████████████████▏                               | 148208/262326 [08:51<06:32, 291.05it/s]


 57%|█████████████████████████████████████████▎                               | 148238/262326 [08:51<06:29, 293.05it/s]


 57%|█████████████████████████████████████████▎                               | 148268/262326 [08:51<06:35, 288.28it/s]


 57%|█████████████████████████████████████████▎                               | 148298/262326 [08:51<06:31, 291.09it/s]


 57%|█████████████████████████████████████████▎                               | 148328/262326 [08:51<06:34, 288.85it/s]


 57%|█████████████████████████████████████████▎                               | 148358/262326 [08:51<06:32, 290.66it/s]


 57%|█████████████████████████████████████████▎                               | 148390/262326 [08:51<06:22, 297.89it/s]


 57%|█████████████████████████████████████████▎                               | 148420/262326 [08:51<06:22, 298.03it/s]


 57%|█████████████████████████████████████████▎                               | 148451/262326 [08:51<06:18, 300.81it/s]


 57%|█████████████████████████████████████████▎                               | 148484/262326 [08:52<06:22, 298.01it/s]


 57%|█████████████████████████████████████████▎                               | 148514/262326 [08:52<06:55, 273.89it/s]


 57%|█████████████████████████████████████████▎                               | 148542/262326 [08:52<07:33, 250.76it/s]


 57%|█████████████████████████████████████████▎                               | 148573/262326 [08:52<07:13, 262.55it/s]


 57%|█████████████████████████████████████████▎                               | 148604/262326 [08:52<06:54, 274.50it/s]


 57%|█████████████████████████████████████████▎                               | 148633/262326 [08:52<07:15, 261.34it/s]


 57%|█████████████████████████████████████████▎                               | 148660/262326 [08:52<07:58, 237.66it/s]


 57%|█████████████████████████████████████████▍                               | 148685/262326 [08:52<07:58, 237.66it/s]


 57%|█████████████████████████████████████████▍                               | 148716/262326 [08:53<07:25, 254.99it/s]


 57%|█████████████████████████████████████████▍                               | 148751/262326 [08:53<07:03, 267.94it/s]


 57%|█████████████████████████████████████████▍                               | 148781/262326 [08:53<06:53, 274.71it/s]


 57%|█████████████████████████████████████████▍                               | 148814/262326 [08:53<06:47, 278.48it/s]


 57%|█████████████████████████████████████████▍                               | 148848/262326 [08:53<06:36, 286.35it/s]


 57%|█████████████████████████████████████████▍                               | 148877/262326 [08:53<07:04, 267.01it/s]


 57%|█████████████████████████████████████████▍                               | 148905/262326 [08:53<08:54, 212.18it/s]


 57%|█████████████████████████████████████████▍                               | 148934/262326 [08:53<08:15, 228.94it/s]


 57%|█████████████████████████████████████████▍                               | 148969/262326 [08:54<07:38, 247.38it/s]


 57%|█████████████████████████████████████████▍                               | 148999/262326 [08:54<07:14, 260.98it/s]


 57%|█████████████████████████████████████████▍                               | 149030/262326 [08:54<06:54, 273.35it/s]


 57%|█████████████████████████████████████████▍                               | 149062/262326 [08:54<06:49, 276.39it/s]


 57%|█████████████████████████████████████████▍                               | 149094/262326 [08:54<06:38, 284.47it/s]


 57%|█████████████████████████████████████████▍                               | 149124/262326 [08:54<07:02, 268.19it/s]


 57%|█████████████████████████████████████████▌                               | 149152/262326 [08:54<07:21, 256.19it/s]


 57%|█████████████████████████████████████████▌                               | 149179/262326 [08:54<07:17, 258.34it/s]


 57%|█████████████████████████████████████████▌                               | 149207/262326 [08:54<07:09, 263.28it/s]


 57%|█████████████████████████████████████████▌                               | 149238/262326 [08:54<06:51, 274.75it/s]


 57%|█████████████████████████████████████████▌                               | 149266/262326 [08:55<08:36, 218.80it/s]


 57%|█████████████████████████████████████████▌                               | 149290/262326 [08:55<08:29, 221.82it/s]


 57%|█████████████████████████████████████████▌                               | 149321/262326 [08:55<07:51, 239.43it/s]


 57%|█████████████████████████████████████████▌                               | 149356/262326 [08:55<07:20, 256.19it/s]


 57%|█████████████████████████████████████████▌                               | 149385/262326 [08:55<07:06, 264.92it/s]


 57%|█████████████████████████████████████████▌                               | 149413/262326 [08:55<07:05, 265.06it/s]


 57%|█████████████████████████████████████████▌                               | 149442/262326 [08:55<07:07, 263.92it/s]


 57%|█████████████████████████████████████████▌                               | 149469/262326 [08:55<08:22, 224.63it/s]


 57%|█████████████████████████████████████████▌                               | 149500/262326 [08:56<07:47, 241.54it/s]


 57%|█████████████████████████████████████████▌                               | 149526/262326 [08:56<07:37, 246.68it/s]


 57%|█████████████████████████████████████████▌                               | 149556/262326 [08:56<07:12, 260.46it/s]


 57%|█████████████████████████████████████████▋                               | 149583/262326 [08:56<07:09, 262.25it/s]


 57%|█████████████████████████████████████████▋                               | 149611/262326 [08:56<07:05, 265.10it/s]


 57%|█████████████████████████████████████████▋                               | 149639/262326 [08:56<07:00, 267.77it/s]


 57%|█████████████████████████████████████████▋                               | 149669/262326 [08:56<06:50, 274.63it/s]


 57%|█████████████████████████████████████████▋                               | 149697/262326 [08:56<06:49, 274.82it/s]


 57%|█████████████████████████████████████████▋                               | 149725/262326 [08:56<06:48, 275.74it/s]


 57%|█████████████████████████████████████████▋                               | 149755/262326 [08:56<06:41, 280.43it/s]


 57%|█████████████████████████████████████████▋                               | 149784/262326 [08:57<06:40, 280.99it/s]


 57%|█████████████████████████████████████████▋                               | 149815/262326 [08:57<06:29, 288.52it/s]


 57%|█████████████████████████████████████████▋                               | 149844/262326 [08:57<06:47, 275.87it/s]


 57%|█████████████████████████████████████████▋                               | 149874/262326 [08:57<06:40, 280.53it/s]


 57%|█████████████████████████████████████████▋                               | 149903/262326 [08:57<06:42, 279.33it/s]


 57%|█████████████████████████████████████████▋                               | 149932/262326 [08:57<06:59, 267.82it/s]


 57%|█████████████████████████████████████████▋                               | 149965/262326 [08:57<06:45, 277.08it/s]


 57%|█████████████████████████████████████████▋                               | 149993/262326 [08:57<06:44, 277.46it/s]


 57%|█████████████████████████████████████████▋                               | 150022/262326 [08:57<06:55, 270.02it/s]


 57%|█████████████████████████████████████████▊                               | 150050/262326 [08:58<06:53, 271.39it/s]


 57%|█████████████████████████████████████████▊                               | 150087/262326 [08:58<06:33, 284.89it/s]


 57%|█████████████████████████████████████████▊                               | 150116/262326 [08:58<07:04, 264.64it/s]


 57%|█████████████████████████████████████████▊                               | 150147/262326 [08:58<06:52, 272.13it/s]


 57%|█████████████████████████████████████████▊                               | 150176/262326 [08:58<06:46, 275.67it/s]


 57%|█████████████████████████████████████████▊                               | 150204/262326 [08:58<07:02, 265.35it/s]


 57%|█████████████████████████████████████████▊                               | 150234/262326 [08:58<06:48, 274.58it/s]


 57%|█████████████████████████████████████████▊                               | 150263/262326 [08:58<06:42, 278.61it/s]


 57%|█████████████████████████████████████████▊                               | 150292/262326 [08:58<06:38, 281.32it/s]


 57%|█████████████████████████████████████████▊                               | 150321/262326 [08:59<06:40, 279.90it/s]


 57%|█████████████████████████████████████████▊                               | 150352/262326 [08:59<06:31, 286.20it/s]


 57%|█████████████████████████████████████████▊                               | 150381/262326 [08:59<06:35, 283.33it/s]


 57%|█████████████████████████████████████████▊                               | 150410/262326 [08:59<06:44, 276.46it/s]


 57%|█████████████████████████████████████████▊                               | 150444/262326 [08:59<06:31, 286.11it/s]


 57%|█████████████████████████████████████████▊                               | 150473/262326 [08:59<06:42, 277.64it/s]


 57%|█████████████████████████████████████████▉                               | 150501/262326 [08:59<06:43, 276.99it/s]


 57%|█████████████████████████████████████████▉                               | 150529/262326 [08:59<06:49, 273.01it/s]


 57%|█████████████████████████████████████████▉                               | 150557/262326 [08:59<07:02, 264.42it/s]


 57%|█████████████████████████████████████████▉                               | 150585/262326 [08:59<06:58, 266.79it/s]


 57%|█████████████████████████████████████████▉                               | 150616/262326 [09:00<06:44, 276.42it/s]


 57%|█████████████████████████████████████████▉                               | 150648/262326 [09:00<06:29, 286.57it/s]


 57%|█████████████████████████████████████████▉                               | 150677/262326 [09:00<06:52, 270.82it/s]


 57%|█████████████████████████████████████████▉                               | 150705/262326 [09:00<07:12, 258.07it/s]


 57%|█████████████████████████████████████████▉                               | 150732/262326 [09:00<07:06, 261.47it/s]


 57%|█████████████████████████████████████████▉                               | 150759/262326 [09:00<07:07, 261.10it/s]


 57%|█████████████████████████████████████████▉                               | 150790/262326 [09:00<06:48, 272.82it/s]


 57%|█████████████████████████████████████████▉                               | 150818/262326 [09:00<06:52, 270.38it/s]


 58%|█████████████████████████████████████████▉                               | 150848/262326 [09:00<06:40, 278.07it/s]


 58%|█████████████████████████████████████████▉                               | 150881/262326 [09:01<06:29, 285.93it/s]


 58%|█████████████████████████████████████████▉                               | 150911/262326 [09:01<06:25, 289.24it/s]


 58%|██████████████████████████████████████████                               | 150941/262326 [09:01<06:35, 281.83it/s]


 58%|██████████████████████████████████████████                               | 150970/262326 [09:01<06:36, 280.80it/s]


 58%|██████████████████████████████████████████                               | 150999/262326 [09:01<07:57, 233.32it/s]


 58%|██████████████████████████████████████████                               | 151032/262326 [09:01<07:41, 241.29it/s]


 58%|██████████████████████████████████████████                               | 151061/262326 [09:01<07:20, 252.81it/s]


 58%|██████████████████████████████████████████                               | 151095/262326 [09:01<06:59, 264.88it/s]


 58%|██████████████████████████████████████████                               | 151125/262326 [09:01<06:48, 272.06it/s]


 58%|██████████████████████████████████████████                               | 151156/262326 [09:02<06:34, 281.75it/s]


 58%|██████████████████████████████████████████                               | 151191/262326 [09:02<06:28, 286.34it/s]


 58%|██████████████████████████████████████████                               | 151221/262326 [09:02<06:26, 287.75it/s]


 58%|██████████████████████████████████████████                               | 151251/262326 [09:02<06:33, 282.52it/s]


 58%|██████████████████████████████████████████                               | 151280/262326 [09:02<06:31, 283.70it/s]


 58%|██████████████████████████████████████████                               | 151310/262326 [09:02<06:25, 287.82it/s]


 58%|██████████████████████████████████████████                               | 151345/262326 [09:02<06:17, 294.01it/s]


 58%|██████████████████████████████████████████                               | 151375/262326 [09:02<06:16, 294.30it/s]


 58%|██████████████████████████████████████████▏                              | 151405/262326 [09:02<06:14, 295.81it/s]


 58%|██████████████████████████████████████████▏                              | 151435/262326 [09:03<06:14, 296.28it/s]


 58%|██████████████████████████████████████████▏                              | 151465/262326 [09:03<06:31, 283.37it/s]


 58%|██████████████████████████████████████████▏                              | 151494/262326 [09:03<06:30, 283.55it/s]


 58%|██████████████████████████████████████████▏                              | 151526/262326 [09:03<06:32, 282.34it/s]


 58%|██████████████████████████████████████████▏                              | 151557/262326 [09:03<06:23, 288.93it/s]


 58%|██████████████████████████████████████████▏                              | 151590/262326 [09:03<06:23, 288.53it/s]


 58%|██████████████████████████████████████████▏                              | 151620/262326 [09:03<06:21, 290.53it/s]


 58%|██████████████████████████████████████████▏                              | 151650/262326 [09:03<06:18, 292.77it/s]


 58%|██████████████████████████████████████████▏                              | 151682/262326 [09:03<06:24, 287.92it/s]


 58%|██████████████████████████████████████████▏                              | 151711/262326 [09:04<06:23, 288.41it/s]


 58%|██████████████████████████████████████████▏                              | 151740/262326 [09:04<06:22, 288.74it/s]


 58%|██████████████████████████████████████████▏                              | 151769/262326 [09:04<06:27, 285.52it/s]


 58%|██████████████████████████████████████████▏                              | 151798/262326 [09:04<06:41, 275.57it/s]


 58%|██████████████████████████████████████████▎                              | 151832/262326 [09:04<06:33, 280.88it/s]


 58%|██████████████████████████████████████████▎                              | 151861/262326 [09:04<06:29, 283.37it/s]


 58%|██████████████████████████████████████████▎                              | 151890/262326 [09:04<06:28, 284.35it/s]


 58%|██████████████████████████████████████████▎                              | 151919/262326 [09:04<06:29, 283.75it/s]


 58%|██████████████████████████████████████████▎                              | 151952/262326 [09:04<06:23, 288.05it/s]


 58%|██████████████████████████████████████████▎                              | 151983/262326 [09:04<06:18, 291.45it/s]


 58%|██████████████████████████████████████████▎                              | 152018/262326 [09:05<06:14, 294.82it/s]


 58%|██████████████████████████████████████████▎                              | 152052/262326 [09:05<06:13, 295.07it/s]


 58%|██████████████████████████████████████████▎                              | 152082/262326 [09:05<06:18, 291.12it/s]


 58%|██████████████████████████████████████████▎                              | 152113/262326 [09:05<06:24, 286.99it/s]


 58%|██████████████████████████████████████████▎                              | 152142/262326 [09:05<06:23, 287.33it/s]


 58%|██████████████████████████████████████████▎                              | 152171/262326 [09:05<06:22, 287.76it/s]


 58%|██████████████████████████████████████████▎                              | 152200/262326 [09:05<06:22, 287.79it/s]


 58%|██████████████████████████████████████████▎                              | 152229/262326 [09:05<06:39, 275.33it/s]


 58%|██████████████████████████████████████████▎                              | 152265/262326 [09:05<06:25, 285.47it/s]


 58%|██████████████████████████████████████████▍                              | 152295/262326 [09:06<06:21, 288.71it/s]


 58%|██████████████████████████████████████████▍                              | 152327/262326 [09:06<06:11, 296.07it/s]


 58%|██████████████████████████████████████████▍                              | 152357/262326 [09:06<06:13, 294.62it/s]


 58%|██████████████████████████████████████████▍                              | 152387/262326 [09:06<06:34, 279.01it/s]


 58%|██████████████████████████████████████████▍                              | 152420/262326 [09:06<06:23, 286.37it/s]


 58%|██████████████████████████████████████████▍                              | 152456/262326 [09:06<06:14, 293.47it/s]


 58%|██████████████████████████████████████████▍                              | 152487/262326 [09:06<06:10, 296.80it/s]


 58%|██████████████████████████████████████████▍                              | 152518/262326 [09:06<06:05, 300.43it/s]


 58%|██████████████████████████████████████████▍                              | 152549/262326 [09:06<06:10, 296.64it/s]


 58%|██████████████████████████████████████████▍                              | 152584/262326 [09:07<06:00, 304.50it/s]


 58%|██████████████████████████████████████████▍                              | 152615/262326 [09:07<06:18, 289.72it/s]


 58%|██████████████████████████████████████████▍                              | 152645/262326 [09:07<06:40, 273.73it/s]


 58%|██████████████████████████████████████████▍                              | 152673/262326 [09:07<06:48, 268.38it/s]


 58%|██████████████████████████████████████████▍                              | 152703/262326 [09:07<06:36, 276.16it/s]


 58%|██████████████████████████████████████████▌                              | 152738/262326 [09:07<06:25, 284.10it/s]


 58%|██████████████████████████████████████████▌                              | 152769/262326 [09:07<06:18, 289.49it/s]


 58%|██████████████████████████████████████████▌                              | 152805/262326 [09:07<06:08, 297.08it/s]


 58%|██████████████████████████████████████████▌                              | 152836/262326 [09:07<06:06, 298.45it/s]


 58%|██████████████████████████████████████████▌                              | 152872/262326 [09:08<06:02, 302.21it/s]


 58%|██████████████████████████████████████████▌                              | 152907/262326 [09:08<06:01, 302.76it/s]


 58%|██████████████████████████████████████████▌                              | 152938/262326 [09:08<06:09, 295.79it/s]


 58%|██████████████████████████████████████████▌                              | 152968/262326 [09:08<06:16, 290.43it/s]


 58%|██████████████████████████████████████████▌                              | 152998/262326 [09:08<06:14, 291.97it/s]


 58%|██████████████████████████████████████████▌                              | 153028/262326 [09:08<06:12, 293.65it/s]


 58%|██████████████████████████████████████████▌                              | 153061/262326 [09:08<06:14, 291.41it/s]


 58%|██████████████████████████████████████████▌                              | 153091/262326 [09:08<06:12, 293.62it/s]


 58%|██████████████████████████████████████████▌                              | 153121/262326 [09:08<06:10, 295.03it/s]


 58%|██████████████████████████████████████████▌                              | 153151/262326 [09:08<06:08, 296.20it/s]


 58%|██████████████████████████████████████████▋                              | 153183/262326 [09:09<06:15, 290.56it/s]


 58%|██████████████████████████████████████████▋                              | 153213/262326 [09:09<06:12, 292.58it/s]


 58%|██████████████████████████████████████████▋                              | 153243/262326 [09:09<06:11, 293.31it/s]


 58%|██████████████████████████████████████████▋                              | 153278/262326 [09:09<06:07, 296.48it/s]


 58%|██████████████████████████████████████████▋                              | 153308/262326 [09:09<06:07, 296.61it/s]


 58%|██████████████████████████████████████████▋                              | 153338/262326 [09:09<06:22, 285.17it/s]


 58%|██████████████████████████████████████████▋                              | 153367/262326 [09:09<06:22, 284.62it/s]


 58%|██████████████████████████████████████████▋                              | 153396/262326 [09:09<06:37, 273.81it/s]


 58%|██████████████████████████████████████████▋                              | 153424/262326 [09:09<06:36, 275.00it/s]


 58%|██████████████████████████████████████████▋                              | 153452/262326 [09:10<06:36, 274.86it/s]


 59%|██████████████████████████████████████████▋                              | 153480/262326 [09:10<06:35, 275.20it/s]


 59%|██████████████████████████████████████████▋                              | 153508/262326 [09:10<06:44, 269.23it/s]


 59%|██████████████████████████████████████████▋                              | 153538/262326 [09:10<06:34, 275.68it/s]


 59%|██████████████████████████████████████████▋                              | 153570/262326 [09:10<06:20, 285.69it/s]


 59%|██████████████████████████████████████████▋                              | 153601/262326 [09:10<06:27, 280.47it/s]


 59%|██████████████████████████████████████████▊                              | 153632/262326 [09:10<06:18, 287.38it/s]


 59%|██████████████████████████████████████████▊                              | 153663/262326 [09:10<06:27, 280.26it/s]


 59%|██████████████████████████████████████████▊                              | 153694/262326 [09:10<06:18, 287.30it/s]


 59%|██████████████████████████████████████████▊                              | 153731/262326 [09:11<06:05, 297.46it/s]


 59%|██████████████████████████████████████████▊                              | 153762/262326 [09:11<06:01, 300.72it/s]


 59%|██████████████████████████████████████████▊                              | 153797/262326 [09:11<06:02, 299.25it/s]


 59%|██████████████████████████████████████████▊                              | 153831/262326 [09:11<06:03, 298.06it/s]


 59%|██████████████████████████████████████████▊                              | 153867/262326 [09:11<05:59, 301.95it/s]


 59%|██████████████████████████████████████████▊                              | 153898/262326 [09:11<05:58, 302.14it/s]


 59%|██████████████████████████████████████████▊                              | 153929/262326 [09:11<05:57, 303.02it/s]


 59%|██████████████████████████████████████████▊                              | 153963/262326 [09:11<05:59, 301.21it/s]


 59%|██████████████████████████████████████████▊                              | 153994/262326 [09:11<05:57, 303.23it/s]


 59%|██████████████████████████████████████████▊                              | 154025/262326 [09:11<05:55, 304.62it/s]


 59%|██████████████████████████████████████████▊                              | 154059/262326 [09:12<05:57, 303.19it/s]


 59%|██████████████████████████████████████████▉                              | 154090/262326 [09:12<05:56, 303.50it/s]


 59%|██████████████████████████████████████████▉                              | 154121/262326 [09:12<06:07, 294.59it/s]


 59%|██████████████████████████████████████████▉                              | 154154/262326 [09:12<05:59, 300.90it/s]


 59%|██████████████████████████████████████████▉                              | 154185/262326 [09:12<05:57, 302.57it/s]


 59%|██████████████████████████████████████████▉                              | 154217/262326 [09:12<06:06, 295.26it/s]


 59%|██████████████████████████████████████████▉                              | 154247/262326 [09:12<06:31, 276.03it/s]


 59%|██████████████████████████████████████████▉                              | 154280/262326 [09:12<06:22, 282.58it/s]


 59%|██████████████████████████████████████████▉                              | 154317/262326 [09:12<06:08, 293.13it/s]


 59%|██████████████████████████████████████████▉                              | 154349/262326 [09:13<05:59, 300.10it/s]


 59%|██████████████████████████████████████████▉                              | 154385/262326 [09:13<05:55, 303.62it/s]


 59%|██████████████████████████████████████████▉                              | 154416/262326 [09:13<05:59, 299.92it/s]


 59%|██████████████████████████████████████████▉                              | 154451/262326 [09:13<05:54, 304.53it/s]


 59%|██████████████████████████████████████████▉                              | 154482/262326 [09:13<05:53, 305.34it/s]


 59%|██████████████████████████████████████████▉                              | 154513/262326 [09:13<05:53, 305.39it/s]


 59%|███████████████████████████████████████████                              | 154544/262326 [09:13<05:51, 306.58it/s]


 59%|███████████████████████████████████████████                              | 154575/262326 [09:13<05:50, 307.20it/s]


 59%|███████████████████████████████████████████                              | 154606/262326 [09:13<06:05, 294.47it/s]


 59%|███████████████████████████████████████████                              | 154636/262326 [09:14<06:06, 293.78it/s]


 59%|███████████████████████████████████████████                              | 154668/262326 [09:14<06:10, 290.45it/s]


 59%|███████████████████████████████████████████                              | 154698/262326 [09:14<06:08, 292.19it/s]


 59%|███████████████████████████████████████████                              | 154728/262326 [09:14<06:15, 286.77it/s]


 59%|███████████████████████████████████████████                              | 154762/262326 [09:14<06:04, 295.24it/s]


 59%|███████████████████████████████████████████                              | 154792/262326 [09:14<06:04, 294.69it/s]


 59%|███████████████████████████████████████████                              | 154827/262326 [09:14<06:01, 297.27it/s]


 59%|███████████████████████████████████████████                              | 154864/262326 [09:14<06:07, 292.53it/s]


 59%|███████████████████████████████████████████                              | 154895/262326 [09:14<06:01, 296.89it/s]


 59%|███████████████████████████████████████████                              | 154927/262326 [09:15<05:55, 302.46it/s]


 59%|███████████████████████████████████████████                              | 154959/262326 [09:15<05:49, 307.05it/s]


 59%|███████████████████████████████████████████▏                             | 154990/262326 [09:15<05:49, 307.49it/s]


 59%|███████████████████████████████████████████▏                             | 155021/262326 [09:15<05:56, 301.14it/s]


 59%|███████████████████████████████████████████▏                             | 155052/262326 [09:15<06:34, 271.80it/s]


 59%|███████████████████████████████████████████▏                             | 155080/262326 [09:15<06:34, 271.54it/s]


 59%|███████████████████████████████████████████▏                             | 155108/262326 [09:15<06:35, 271.00it/s]


 59%|███████████████████████████████████████████▏                             | 155145/262326 [09:15<06:13, 287.24it/s]


 59%|███████████████████████████████████████████▏                             | 155176/262326 [09:15<06:07, 291.79it/s]


 59%|███████████████████████████████████████████▏                             | 155212/262326 [09:15<05:59, 297.55it/s]


 59%|███████████████████████████████████████████▏                             | 155243/262326 [09:16<05:55, 300.99it/s]


 59%|███████████████████████████████████████████▏                             | 155274/262326 [09:16<05:53, 302.51it/s]


 59%|███████████████████████████████████████████▏                             | 155305/262326 [09:16<05:59, 298.06it/s]


 59%|███████████████████████████████████████████▏                             | 155335/262326 [09:16<06:07, 290.98it/s]


 59%|███████████████████████████████████████████▏                             | 155365/262326 [09:16<06:06, 292.07it/s]


 59%|███████████████████████████████████████████▏                             | 155401/262326 [09:16<05:58, 298.05it/s]


 59%|███████████████████████████████████████████▎                             | 155432/262326 [09:16<05:55, 300.55it/s]


 59%|███████████████████████████████████████████▎                             | 155463/262326 [09:16<06:07, 290.40it/s]


 59%|███████████████████████████████████████████▎                             | 155495/262326 [09:16<06:13, 286.29it/s]


 59%|███████████████████████████████████████████▎                             | 155526/262326 [09:17<06:06, 291.23it/s]


 59%|███████████████████████████████████████████▎                             | 155558/262326 [09:17<05:56, 299.24it/s]


 59%|███████████████████████████████████████████▎                             | 155589/262326 [09:17<05:58, 298.09it/s]


 59%|███████████████████████████████████████████▎                             | 155622/262326 [09:17<05:57, 298.06it/s]


 59%|███████████████████████████████████████████▎                             | 155654/262326 [09:17<05:52, 302.69it/s]


 59%|███████████████████████████████████████████▎                             | 155690/262326 [09:17<05:48, 305.63it/s]


 59%|███████████████████████████████████████████▎                             | 155721/262326 [09:17<05:48, 306.00it/s]


 59%|███████████████████████████████████████████▎                             | 155752/262326 [09:17<05:47, 306.78it/s]


 59%|███████████████████████████████████████████▎                             | 155783/262326 [09:17<05:47, 306.94it/s]


 59%|███████████████████████████████████████████▎                             | 155814/262326 [09:18<06:02, 293.52it/s]


 59%|███████████████████████████████████████████▎                             | 155844/262326 [09:18<06:01, 294.84it/s]


 59%|███████████████████████████████████████████▍                             | 155874/262326 [09:18<06:04, 291.99it/s]


 59%|███████████████████████████████████████████▍                             | 155904/262326 [09:18<06:30, 272.27it/s]


 59%|███████████████████████████████████████████▍                             | 155934/262326 [09:18<06:20, 279.64it/s]


 59%|███████████████████████████████████████████▍                             | 155963/262326 [09:18<06:16, 282.18it/s]


 59%|███████████████████████████████████████████▍                             | 155996/262326 [09:18<06:14, 283.72it/s]


 59%|███████████████████████████████████████████▍                             | 156026/262326 [09:18<06:09, 287.38it/s]


 59%|███████████████████████████████████████████▍                             | 156055/262326 [09:18<06:17, 281.85it/s]


 60%|███████████████████████████████████████████▍                             | 156088/262326 [09:18<06:09, 287.45it/s]


 60%|███████████████████████████████████████████▍                             | 156118/262326 [09:19<06:06, 290.09it/s]


 60%|███████████████████████████████████████████▍                             | 156148/262326 [09:19<06:16, 282.03it/s]


 60%|███████████████████████████████████████████▍                             | 156177/262326 [09:19<06:38, 266.47it/s]


 60%|███████████████████████████████████████████▍                             | 156208/262326 [09:19<06:33, 269.36it/s]


 60%|███████████████████████████████████████████▍                             | 156242/262326 [09:19<06:23, 276.41it/s]


 60%|███████████████████████████████████████████▍                             | 156272/262326 [09:19<06:15, 282.22it/s]


 60%|███████████████████████████████████████████▍                             | 156307/262326 [09:19<06:07, 288.22it/s]


 60%|███████████████████████████████████████████▌                             | 156336/262326 [09:19<06:08, 287.46it/s]


 60%|███████████████████████████████████████████▌                             | 156365/262326 [09:19<06:08, 287.28it/s]


 60%|███████████████████████████████████████████▌                             | 156401/262326 [09:20<05:59, 294.52it/s]


 60%|███████████████████████████████████████████▌                             | 156431/262326 [09:20<05:58, 295.38it/s]


 60%|███████████████████████████████████████████▌                             | 156461/262326 [09:20<06:01, 292.81it/s]


 60%|███████████████████████████████████████████▌                             | 156492/262326 [09:20<06:06, 288.70it/s]


 60%|███████████████████████████████████████████▌                             | 156523/262326 [09:20<05:59, 294.64it/s]


 60%|███████████████████████████████████████████▌                             | 156556/262326 [09:20<05:57, 296.11it/s]


 60%|███████████████████████████████████████████▌                             | 156590/262326 [09:20<05:50, 301.43it/s]


 60%|███████████████████████████████████████████▌                             | 156621/262326 [09:20<06:03, 290.52it/s]


 60%|███████████████████████████████████████████▌                             | 156652/262326 [09:20<05:58, 295.11it/s]


 60%|███████████████████████████████████████████▌                             | 156684/262326 [09:21<05:49, 302.16it/s]


 60%|███████████████████████████████████████████▌                             | 156715/262326 [09:21<05:47, 304.16it/s]


 60%|███████████████████████████████████████████▌                             | 156746/262326 [09:21<05:46, 304.81it/s]


 60%|███████████████████████████████████████████▋                             | 156777/262326 [09:21<05:46, 305.02it/s]


 60%|███████████████████████████████████████████▋                             | 156811/262326 [09:21<05:48, 302.75it/s]


 60%|███████████████████████████████████████████▋                             | 156842/262326 [09:21<05:51, 300.03it/s]


 60%|███████████████████████████████████████████▋                             | 156877/262326 [09:21<05:46, 304.39it/s]


 60%|███████████████████████████████████████████▋                             | 156908/262326 [09:21<05:44, 305.68it/s]


 60%|███████████████████████████████████████████▋                             | 156939/262326 [09:21<06:00, 292.49it/s]


 60%|███████████████████████████████████████████▋                             | 156969/262326 [09:21<05:59, 293.18it/s]


 60%|███████████████████████████████████████████▋                             | 157000/262326 [09:22<05:55, 296.40it/s]


 60%|███████████████████████████████████████████▋                             | 157037/262326 [09:22<05:44, 305.25it/s]


 60%|███████████████████████████████████████████▋                             | 157068/262326 [09:22<05:45, 304.64it/s]


 60%|███████████████████████████████████████████▋                             | 157099/262326 [09:22<05:43, 306.19it/s]


 60%|███████████████████████████████████████████▋                             | 157131/262326 [09:22<05:53, 297.84it/s]


 60%|███████████████████████████████████████████▋                             | 157162/262326 [09:22<05:51, 299.34it/s]


 60%|███████████████████████████████████████████▋                             | 157194/262326 [09:22<05:45, 304.71it/s]


 60%|███████████████████████████████████████████▊                             | 157225/262326 [09:22<05:58, 293.05it/s]


 60%|███████████████████████████████████████████▊                             | 157255/262326 [09:22<05:58, 293.41it/s]


 60%|███████████████████████████████████████████▊                             | 157286/262326 [09:23<06:07, 286.21it/s]


 60%|███████████████████████████████████████████▊                             | 157317/262326 [09:23<06:00, 290.91it/s]


 60%|███████████████████████████████████████████▊                             | 157347/262326 [09:23<06:01, 290.41it/s]


 60%|███████████████████████████████████████████▊                             | 157378/262326 [09:23<06:05, 286.87it/s]


 60%|███████████████████████████████████████████▊                             | 157407/262326 [09:23<06:05, 286.93it/s]


 60%|███████████████████████████████████████████▊                             | 157437/262326 [09:23<06:01, 290.49it/s]


 60%|███████████████████████████████████████████▊                             | 157467/262326 [09:23<06:33, 266.40it/s]


 60%|███████████████████████████████████████████▊                             | 157496/262326 [09:23<06:39, 262.17it/s]


 60%|███████████████████████████████████████████▊                             | 157523/262326 [09:23<07:11, 243.04it/s]


 60%|███████████████████████████████████████████▊                             | 157555/262326 [09:24<06:43, 259.95it/s]


 60%|███████████████████████████████████████████▊                             | 157586/262326 [09:24<06:25, 271.52it/s]


 60%|███████████████████████████████████████████▊                             | 157615/262326 [09:24<06:19, 275.92it/s]


 60%|███████████████████████████████████████████▊                             | 157647/262326 [09:24<06:17, 277.20it/s]


 60%|███████████████████████████████████████████▉                             | 157679/262326 [09:24<06:06, 285.37it/s]


 60%|███████████████████████████████████████████▉                             | 157714/262326 [09:24<05:57, 292.25it/s]


 60%|███████████████████████████████████████████▉                             | 157744/262326 [09:24<05:55, 294.50it/s]


 60%|███████████████████████████████████████████▉                             | 157779/262326 [09:24<05:50, 297.91it/s]


 60%|███████████████████████████████████████████▉                             | 157811/262326 [09:24<05:46, 301.22it/s]


 60%|███████████████████████████████████████████▉                             | 157847/262326 [09:25<05:42, 304.68it/s]


 60%|███████████████████████████████████████████▉                             | 157878/262326 [09:25<05:42, 304.80it/s]


 60%|███████████████████████████████████████████▉                             | 157909/262326 [09:25<06:07, 284.02it/s]


 60%|███████████████████████████████████████████▉                             | 157938/262326 [09:25<06:11, 280.69it/s]


 60%|███████████████████████████████████████████▉                             | 157969/262326 [09:25<06:01, 288.46it/s]


 60%|███████████████████████████████████████████▉                             | 157999/262326 [09:25<06:08, 283.32it/s]


 60%|███████████████████████████████████████████▉                             | 158031/262326 [09:25<06:00, 289.17it/s]


 60%|███████████████████████████████████████████▉                             | 158061/262326 [09:25<05:59, 289.91it/s]


 60%|███████████████████████████████████████████▉                             | 158095/262326 [09:25<05:57, 291.88it/s]


 60%|████████████████████████████████████████████                             | 158126/262326 [09:25<05:51, 296.26it/s]


 60%|████████████████████████████████████████████                             | 158157/262326 [09:26<05:47, 299.85it/s]


 60%|████████████████████████████████████████████                             | 158188/262326 [09:26<05:45, 301.50it/s]


 60%|████████████████████████████████████████████                             | 158219/262326 [09:26<05:49, 297.46it/s]


 60%|████████████████████████████████████████████                             | 158251/262326 [09:26<05:48, 298.93it/s]


 60%|████████████████████████████████████████████                             | 158282/262326 [09:26<05:45, 301.35it/s]


 60%|████████████████████████████████████████████                             | 158313/262326 [09:26<05:42, 303.59it/s]


 60%|████████████████████████████████████████████                             | 158344/262326 [09:26<05:40, 305.47it/s]


 60%|████████████████████████████████████████████                             | 158375/262326 [09:26<05:55, 292.13it/s]


 60%|████████████████████████████████████████████                             | 158405/262326 [09:26<06:10, 280.17it/s]


 60%|████████████████████████████████████████████                             | 158436/262326 [09:27<06:00, 288.02it/s]


 60%|████████████████████████████████████████████                             | 158466/262326 [09:27<05:59, 289.26it/s]


 60%|████████████████████████████████████████████                             | 158496/262326 [09:27<05:55, 292.32it/s]


 60%|████████████████████████████████████████████                             | 158526/262326 [09:27<06:04, 284.69it/s]


 60%|████████████████████████████████████████████                             | 158557/262326 [09:27<05:58, 289.82it/s]


 60%|████████████████████████████████████████████▏                            | 158592/262326 [09:27<05:51, 294.81it/s]


 60%|████████████████████████████████████████████▏                            | 158622/262326 [09:27<05:53, 293.02it/s]


 60%|████████████████████████████████████████████▏                            | 158652/262326 [09:27<06:05, 283.94it/s]


 60%|████████████████████████████████████████████▏                            | 158682/262326 [09:27<06:00, 287.19it/s]


 61%|████████████████████████████████████████████▏                            | 158712/262326 [09:27<05:56, 290.55it/s]


 61%|████████████████████████████████████████████▏                            | 158744/262326 [09:28<05:48, 297.30it/s]


 61%|████████████████████████████████████████████▏                            | 158774/262326 [09:28<05:59, 287.69it/s]


 61%|████████████████████████████████████████████▏                            | 158807/262326 [09:28<05:58, 289.08it/s]


 61%|████████████████████████████████████████████▏                            | 158840/262326 [09:28<05:50, 294.93it/s]


 61%|████████████████████████████████████████████▏                            | 158871/262326 [09:28<05:46, 298.45it/s]


 61%|████████████████████████████████████████████▏                            | 158901/262326 [09:28<05:47, 298.02it/s]


 61%|████████████████████████████████████████████▏                            | 158931/262326 [09:28<05:52, 293.10it/s]


 61%|████████████████████████████████████████████▏                            | 158963/262326 [09:28<05:51, 293.95it/s]


 61%|████████████████████████████████████████████▏                            | 158994/262326 [09:28<05:46, 298.49it/s]


 61%|████████████████████████████████████████████▎                            | 159026/262326 [09:29<05:39, 303.93it/s]


 61%|████████████████████████████████████████████▎                            | 159057/262326 [09:29<06:08, 280.01it/s]


 61%|████████████████████████████████████████████▎                            | 159086/262326 [09:29<06:16, 273.90it/s]


 61%|████████████████████████████████████████████▎                            | 159116/262326 [09:29<06:15, 274.97it/s]


 61%|████████████████████████████████████████████▎                            | 159147/262326 [09:29<06:03, 283.90it/s]


 61%|████████████████████████████████████████████▎                            | 159181/262326 [09:29<05:59, 286.94it/s]


 61%|████████████████████████████████████████████▎                            | 159210/262326 [09:29<05:59, 286.79it/s]


 61%|████████████████████████████████████████████▎                            | 159239/262326 [09:29<06:14, 275.42it/s]


 61%|████████████████████████████████████████████▎                            | 159267/262326 [09:29<06:14, 274.89it/s]


 61%|████████████████████████████████████████████▎                            | 159301/262326 [09:30<06:06, 280.73it/s]


 61%|████████████████████████████████████████████▎                            | 159330/262326 [09:30<06:05, 281.71it/s]


 61%|████████████████████████████████████████████▎                            | 159359/262326 [09:30<06:25, 266.93it/s]


 61%|████████████████████████████████████████████▎                            | 159387/262326 [09:30<06:22, 269.37it/s]


 61%|████████████████████████████████████████████▎                            | 159421/262326 [09:30<06:05, 281.47it/s]


 61%|████████████████████████████████████████████▎                            | 159453/262326 [09:30<06:07, 280.17it/s]


 61%|████████████████████████████████████████████▍                            | 159482/262326 [09:30<06:07, 279.81it/s]


 61%|████████████████████████████████████████████▍                            | 159513/262326 [09:30<05:59, 286.07it/s]


 61%|████████████████████████████████████████████▍                            | 159542/262326 [09:30<06:03, 282.75it/s]


 61%|████████████████████████████████████████████▍                            | 159572/262326 [09:31<05:58, 286.29it/s]


 61%|████████████████████████████████████████████▍                            | 159601/262326 [09:31<05:57, 287.38it/s]


 61%|████████████████████████████████████████████▍                            | 159630/262326 [09:31<06:00, 284.53it/s]


 61%|████████████████████████████████████████████▍                            | 159659/262326 [09:31<06:08, 278.65it/s]


 61%|████████████████████████████████████████████▍                            | 159688/262326 [09:31<06:05, 280.54it/s]


 61%|████████████████████████████████████████████▍                            | 159717/262326 [09:31<06:05, 281.07it/s]


 61%|████████████████████████████████████████████▍                            | 159746/262326 [09:31<06:04, 281.44it/s]


 61%|████████████████████████████████████████████▍                            | 159776/262326 [09:31<05:59, 285.35it/s]


 61%|████████████████████████████████████████████▍                            | 159805/262326 [09:31<06:12, 275.00it/s]


 61%|████████████████████████████████████████████▍                            | 159833/262326 [09:31<06:31, 262.00it/s]


 61%|████████████████████████████████████████████▍                            | 159860/262326 [09:32<06:36, 258.47it/s]


 61%|████████████████████████████████████████████▍                            | 159886/262326 [09:32<06:36, 258.36it/s]


 61%|████████████████████████████████████████████▌                            | 159913/262326 [09:32<06:34, 259.69it/s]


 61%|████████████████████████████████████████████▌                            | 159940/262326 [09:32<06:39, 256.12it/s]


 61%|████████████████████████████████████████████▌                            | 159966/262326 [09:32<06:51, 248.93it/s]


 61%|████████████████████████████████████████████▌                            | 159993/262326 [09:32<06:43, 253.80it/s]


 61%|████████████████████████████████████████████▌                            | 160024/262326 [09:32<06:23, 266.68it/s]


 61%|████████████████████████████████████████████▌                            | 160060/262326 [09:32<06:05, 279.42it/s]


 61%|████████████████████████████████████████████▌                            | 160089/262326 [09:32<06:05, 280.01it/s]


 61%|████████████████████████████████████████████▌                            | 160122/262326 [09:33<06:02, 281.66it/s]


 61%|████████████████████████████████████████████▌                            | 160151/262326 [09:33<06:16, 271.37it/s]


 61%|████████████████████████████████████████████▌                            | 160179/262326 [09:33<06:17, 270.59it/s]


 61%|████████████████████████████████████████████▌                            | 160211/262326 [09:33<06:13, 273.68it/s]


 61%|████████████████████████████████████████████▌                            | 160241/262326 [09:33<06:19, 269.34it/s]


 61%|████████████████████████████████████████████▌                            | 160271/262326 [09:33<06:07, 277.74it/s]


 61%|████████████████████████████████████████████▌                            | 160302/262326 [09:33<05:56, 286.36it/s]


 61%|████████████████████████████████████████████▌                            | 160333/262326 [09:33<05:48, 293.02it/s]


 61%|████████████████████████████████████████████▋                            | 160364/262326 [09:33<05:44, 296.40it/s]


 61%|████████████████████████████████████████████▋                            | 160400/262326 [09:33<05:37, 301.86it/s]


 61%|████████████████████████████████████████████▋                            | 160431/262326 [09:34<05:36, 302.86it/s]


 61%|████████████████████████████████████████████▋                            | 160462/262326 [09:34<05:53, 288.08it/s]


 61%|████████████████████████████████████████████▋                            | 160494/262326 [09:34<05:57, 284.82it/s]


 61%|████████████████████████████████████████████▋                            | 160530/262326 [09:34<05:47, 292.66it/s]


 61%|████████████████████████████████████████████▋                            | 160566/262326 [09:34<05:41, 298.11it/s]


 61%|████████████████████████████████████████████▋                            | 160597/262326 [09:34<05:38, 300.10it/s]


 61%|████████████████████████████████████████████▋                            | 160633/262326 [09:34<05:34, 304.02it/s]


 61%|████████████████████████████████████████████▋                            | 160664/262326 [09:34<05:45, 294.11it/s]


 61%|████████████████████████████████████████████▋                            | 160697/262326 [09:34<05:38, 300.54it/s]


 61%|████████████████████████████████████████████▋                            | 160728/262326 [09:35<06:39, 254.35it/s]


 61%|████████████████████████████████████████████▋                            | 160755/262326 [09:35<06:45, 250.47it/s]


 61%|████████████████████████████████████████████▋                            | 160786/262326 [09:35<06:29, 260.93it/s]


 61%|████████████████████████████████████████████▊                            | 160817/262326 [09:35<06:12, 272.43it/s]


 61%|████████████████████████████████████████████▊                            | 160851/262326 [09:35<06:02, 279.92it/s]


 61%|████████████████████████████████████████████▊                            | 160882/262326 [09:35<05:52, 287.60it/s]


 61%|████████████████████████████████████████████▊                            | 160915/262326 [09:35<05:39, 299.01it/s]


 61%|████████████████████████████████████████████▊                            | 160946/262326 [09:35<05:36, 301.44it/s]


 61%|████████████████████████████████████████████▊                            | 160977/262326 [09:35<05:35, 302.45it/s]


 61%|████████████████████████████████████████████▊                            | 161010/262326 [09:36<05:40, 297.72it/s]


 61%|████████████████████████████████████████████▊                            | 161042/262326 [09:36<05:37, 300.05it/s]


 61%|████████████████████████████████████████████▊                            | 161074/262326 [09:36<05:34, 303.09it/s]


 61%|████████████████████████████████████████████▊                            | 161108/262326 [09:36<05:31, 305.58it/s]


 61%|████████████████████████████████████████████▊                            | 161139/262326 [09:36<05:30, 305.95it/s]


 61%|████████████████████████████████████████████▊                            | 161173/262326 [09:36<05:34, 302.68it/s]


 61%|████████████████████████████████████████████▊                            | 161204/262326 [09:36<05:33, 303.53it/s]


 61%|████████████████████████████████████████████▊                            | 161239/262326 [09:36<05:32, 303.95it/s]


 61%|████████████████████████████████████████████▉                            | 161270/262326 [09:36<05:31, 304.76it/s]


 61%|████████████████████████████████████████████▉                            | 161302/262326 [09:37<05:28, 307.51it/s]


 62%|████████████████████████████████████████████▉                            | 161339/262326 [09:37<05:24, 311.17it/s]


 62%|████████████████████████████████████████████▉                            | 161371/262326 [09:37<05:25, 310.34it/s]


 62%|████████████████████████████████████████████▉                            | 161405/262326 [09:37<05:27, 308.45it/s]


 62%|████████████████████████████████████████████▉                            | 161437/262326 [09:37<05:24, 310.71it/s]


 62%|████████████████████████████████████████████▉                            | 161469/262326 [09:37<05:23, 311.35it/s]


 62%|████████████████████████████████████████████▉                            | 161503/262326 [09:37<05:28, 306.99it/s]


 62%|████████████████████████████████████████████▉                            | 161534/262326 [09:37<05:43, 293.36it/s]


 62%|████████████████████████████████████████████▉                            | 161564/262326 [09:37<05:43, 293.11it/s]


 62%|████████████████████████████████████████████▉                            | 161600/262326 [09:38<05:37, 298.38it/s]


 62%|████████████████████████████████████████████▉                            | 161631/262326 [09:38<05:48, 288.87it/s]


 62%|████████████████████████████████████████████▉                            | 161662/262326 [09:38<05:42, 294.18it/s]


 62%|████████████████████████████████████████████▉                            | 161698/262326 [09:38<05:36, 299.24it/s]


 62%|█████████████████████████████████████████████                            | 161729/262326 [09:38<05:34, 300.99it/s]


 62%|█████████████████████████████████████████████                            | 161760/262326 [09:38<05:48, 288.91it/s]


 62%|█████████████████████████████████████████████                            | 161790/262326 [09:38<05:44, 291.97it/s]


 62%|█████████████████████████████████████████████                            | 161821/262326 [09:38<05:38, 297.00it/s]


 62%|█████████████████████████████████████████████                            | 161851/262326 [09:38<05:37, 297.31it/s]


 62%|█████████████████████████████████████████████                            | 161886/262326 [09:39<05:34, 300.45it/s]


 62%|█████████████████████████████████████████████                            | 161918/262326 [09:39<05:30, 303.51it/s]


 62%|█████████████████████████████████████████████                            | 161950/262326 [09:39<05:28, 305.86it/s]


 62%|█████████████████████████████████████████████                            | 161981/262326 [09:39<05:40, 294.74it/s]


 62%|█████████████████████████████████████████████                            | 162011/262326 [09:39<05:55, 282.11it/s]


 62%|█████████████████████████████████████████████                            | 162045/262326 [09:39<05:50, 286.28it/s]


 62%|█████████████████████████████████████████████                            | 162076/262326 [09:39<05:43, 292.05it/s]


 62%|█████████████████████████████████████████████                            | 162106/262326 [09:39<05:41, 293.61it/s]


 62%|█████████████████████████████████████████████                            | 162136/262326 [09:39<05:54, 282.54it/s]


 62%|█████████████████████████████████████████████▏                           | 162165/262326 [09:39<05:53, 283.55it/s]


 62%|█████████████████████████████████████████████▏                           | 162195/262326 [09:40<05:48, 287.22it/s]


 62%|█████████████████████████████████████████████▏                           | 162226/262326 [09:40<05:40, 293.56it/s]


 62%|█████████████████████████████████████████████▏                           | 162256/262326 [09:40<05:54, 282.22it/s]


 62%|█████████████████████████████████████████████▏                           | 162285/262326 [09:40<05:52, 283.79it/s]


 62%|█████████████████████████████████████████████▏                           | 162320/262326 [09:40<05:45, 289.49it/s]


 62%|█████████████████████████████████████████████▏                           | 162354/262326 [09:40<05:43, 290.99it/s]


 62%|█████████████████████████████████████████████▏                           | 162384/262326 [09:40<05:43, 290.81it/s]


 62%|█████████████████████████████████████████████▏                           | 162419/262326 [09:40<05:36, 296.50it/s]


 62%|█████████████████████████████████████████████▏                           | 162450/262326 [09:40<05:34, 298.99it/s]


 62%|█████████████████████████████████████████████▏                           | 162488/262326 [09:41<05:24, 307.47it/s]


 62%|█████████████████████████████████████████████▏                           | 162519/262326 [09:41<05:24, 307.29it/s]


 62%|█████████████████████████████████████████████▏                           | 162550/262326 [09:41<05:33, 299.56it/s]


 62%|█████████████████████████████████████████████▏                           | 162581/262326 [09:41<05:37, 295.58it/s]


 62%|█████████████████████████████████████████████▎                           | 162616/262326 [09:41<05:34, 297.89it/s]


 62%|█████████████████████████████████████████████▎                           | 162646/262326 [09:41<05:35, 296.88it/s]


 62%|█████████████████████████████████████████████▎                           | 162677/262326 [09:41<05:31, 300.64it/s]


 62%|█████████████████████████████████████████████▎                           | 162708/262326 [09:41<05:28, 302.85it/s]


 62%|█████████████████████████████████████████████▎                           | 162741/262326 [09:41<05:34, 297.61it/s]


 62%|█████████████████████████████████████████████▎                           | 162771/262326 [09:42<05:49, 284.93it/s]


 62%|█████████████████████████████████████████████▎                           | 162804/262326 [09:42<05:36, 295.80it/s]


 62%|█████████████████████████████████████████████▎                           | 162834/262326 [09:42<05:35, 296.29it/s]


 62%|█████████████████████████████████████████████▎                           | 162864/262326 [09:42<05:38, 293.49it/s]


 62%|█████████████████████████████████████████████▎                           | 162898/262326 [09:42<05:34, 297.17it/s]


 62%|█████████████████████████████████████████████▎                           | 162928/262326 [09:42<05:34, 296.83it/s]


 62%|█████████████████████████████████████████████▎                           | 162958/262326 [09:42<05:48, 284.73it/s]


 62%|█████████████████████████████████████████████▎                           | 162989/262326 [09:42<05:40, 291.50it/s]


 62%|█████████████████████████████████████████████▎                           | 163019/262326 [09:42<05:43, 289.34it/s]


 62%|█████████████████████████████████████████████▎                           | 163055/262326 [09:42<05:33, 297.32it/s]


 62%|█████████████████████████████████████████████▍                           | 163091/262326 [09:43<05:29, 301.49it/s]


 62%|█████████████████████████████████████████████▍                           | 163125/262326 [09:43<05:31, 299.32it/s]


 62%|█████████████████████████████████████████████▍                           | 163159/262326 [09:43<05:30, 299.92it/s]


 62%|█████████████████████████████████████████████▍                           | 163190/262326 [09:43<05:31, 299.39it/s]


 62%|█████████████████████████████████████████████▍                           | 163220/262326 [09:43<05:31, 298.92it/s]


 62%|█████████████████████████████████████████████▍                           | 163250/262326 [09:43<05:31, 298.77it/s]


 62%|█████████████████████████████████████████████▍                           | 163282/262326 [09:43<05:25, 304.12it/s]


 62%|█████████████████████████████████████████████▍                           | 163313/262326 [09:43<05:24, 305.58it/s]


 62%|█████████████████████████████████████████████▍                           | 163344/262326 [09:43<05:35, 295.07it/s]


 62%|█████████████████████████████████████████████▍                           | 163377/262326 [09:44<05:27, 302.10it/s]


 62%|█████████████████████████████████████████████▍                           | 163408/262326 [09:44<05:54, 278.72it/s]


 62%|█████████████████████████████████████████████▍                           | 163437/262326 [09:44<05:53, 280.01it/s]


 62%|█████████████████████████████████████████████▍                           | 163470/262326 [09:44<05:50, 281.93it/s]


 62%|█████████████████████████████████████████████▍                           | 163501/262326 [09:44<05:43, 287.86it/s]


 62%|█████████████████████████████████████████████▌                           | 163538/262326 [09:44<05:30, 298.96it/s]


 62%|█████████████████████████████████████████████▌                           | 163570/262326 [09:44<05:27, 301.22it/s]


 62%|█████████████████████████████████████████████▌                           | 163607/262326 [09:44<05:20, 307.57it/s]


 62%|█████████████████████████████████████████████▌                           | 163638/262326 [09:44<05:21, 307.42it/s]


 62%|█████████████████████████████████████████████▌                           | 163669/262326 [09:45<05:20, 307.79it/s]


 62%|█████████████████████████████████████████████▌                           | 163700/262326 [09:45<05:21, 306.87it/s]


 62%|█████████████████████████████████████████████▌                           | 163731/262326 [09:45<05:34, 294.83it/s]


 62%|█████████████████████████████████████████████▌                           | 163761/262326 [09:45<05:33, 295.93it/s]


 62%|█████████████████████████████████████████████▌                           | 163794/262326 [09:45<05:35, 293.30it/s]


 62%|█████████████████████████████████████████████▌                           | 163824/262326 [09:45<05:35, 293.87it/s]


 62%|█████████████████████████████████████████████▌                           | 163855/262326 [09:45<05:30, 297.63it/s]


 62%|█████████████████████████████████████████████▌                           | 163893/262326 [09:45<05:20, 306.67it/s]


 62%|█████████████████████████████████████████████▌                           | 163924/262326 [09:45<05:21, 306.02it/s]


 63%|█████████████████████████████████████████████▋                           | 163959/262326 [09:46<05:22, 305.22it/s]


 63%|█████████████████████████████████████████████▋                           | 163990/262326 [09:46<05:22, 304.88it/s]


 63%|█████████████████████████████████████████████▋                           | 164021/262326 [09:46<06:58, 234.96it/s]


 63%|█████████████████████████████████████████████▋                           | 164053/262326 [09:46<06:38, 246.47it/s]


 63%|█████████████████████████████████████████████▋                           | 164089/262326 [09:46<06:13, 263.25it/s]


 63%|█████████████████████████████████████████████▋                           | 164118/262326 [09:46<06:03, 270.42it/s]


 63%|█████████████████████████████████████████████▋                           | 164148/262326 [09:46<05:52, 278.51it/s]


 63%|█████████████████████████████████████████████▋                           | 164178/262326 [09:46<05:45, 284.47it/s]


 63%|█████████████████████████████████████████████▋                           | 164209/262326 [09:46<05:52, 278.18it/s]


 63%|█████████████████████████████████████████████▋                           | 164241/262326 [09:47<05:38, 289.50it/s]


 63%|█████████████████████████████████████████████▋                           | 164276/262326 [09:47<05:33, 294.44it/s]


 63%|█████████████████████████████████████████████▋                           | 164306/262326 [09:47<05:31, 295.58it/s]


 63%|█████████████████████████████████████████████▋                           | 164336/262326 [09:47<05:32, 294.74it/s]


 63%|█████████████████████████████████████████████▋                           | 164366/262326 [09:47<05:31, 295.17it/s]


 63%|█████████████████████████████████████████████▋                           | 164399/262326 [09:47<05:33, 293.44it/s]


 63%|█████████████████████████████████████████████▊                           | 164429/262326 [09:47<05:32, 294.07it/s]


 63%|█████████████████████████████████████████████▊                           | 164466/262326 [09:47<05:24, 301.76it/s]


 63%|█████████████████████████████████████████████▊                           | 164497/262326 [09:47<05:41, 286.42it/s]


 63%|█████████████████████████████████████████████▊                           | 164531/262326 [09:48<05:35, 291.26it/s]


 63%|█████████████████████████████████████████████▊                           | 164563/262326 [09:48<05:28, 297.62it/s]


 63%|█████████████████████████████████████████████▊                           | 164593/262326 [09:48<05:41, 286.32it/s]


 63%|█████████████████████████████████████████████▊                           | 164622/262326 [09:48<05:41, 286.45it/s]


 63%|█████████████████████████████████████████████▊                           | 164652/262326 [09:48<05:36, 290.21it/s]


 63%|█████████████████████████████████████████████▊                           | 164687/262326 [09:48<05:32, 293.87it/s]


 63%|█████████████████████████████████████████████▊                           | 164718/262326 [09:48<05:28, 296.91it/s]


 63%|█████████████████████████████████████████████▊                           | 164753/262326 [09:48<05:26, 299.17it/s]


 63%|█████████████████████████████████████████████▊                           | 164783/262326 [09:48<05:43, 284.25it/s]


 63%|█████████████████████████████████████████████▊                           | 164818/262326 [09:49<05:36, 289.63it/s]


 63%|█████████████████████████████████████████████▊                           | 164849/262326 [09:49<05:31, 294.06it/s]


 63%|█████████████████████████████████████████████▉                           | 164879/262326 [09:49<05:47, 280.29it/s]


 63%|█████████████████████████████████████████████▉                           | 164908/262326 [09:49<05:45, 282.27it/s]


 63%|█████████████████████████████████████████████▉                           | 164943/262326 [09:49<05:36, 289.52it/s]


 63%|█████████████████████████████████████████████▉                           | 164973/262326 [09:49<05:34, 291.16it/s]


 63%|█████████████████████████████████████████████▉                           | 165005/262326 [09:49<05:39, 286.89it/s]


 63%|█████████████████████████████████████████████▉                           | 165040/262326 [09:49<05:33, 291.70it/s]


 63%|█████████████████████████████████████████████▉                           | 165070/262326 [09:49<05:32, 292.51it/s]


 63%|█████████████████████████████████████████████▉                           | 165100/262326 [09:49<05:31, 293.70it/s]


 63%|█████████████████████████████████████████████▉                           | 165130/262326 [09:50<05:30, 294.09it/s]


 63%|█████████████████████████████████████████████▉                           | 165160/262326 [09:50<05:44, 282.33it/s]


 63%|█████████████████████████████████████████████▉                           | 165189/262326 [09:50<06:01, 268.70it/s]


 63%|█████████████████████████████████████████████▉                           | 165223/262326 [09:50<05:48, 278.90it/s]


 63%|█████████████████████████████████████████████▉                           | 165252/262326 [09:50<05:55, 273.33it/s]


 63%|█████████████████████████████████████████████▉                           | 165283/262326 [09:50<05:48, 278.72it/s]


 63%|██████████████████████████████████████████████                           | 165314/262326 [09:50<05:40, 285.30it/s]


 63%|██████████████████████████████████████████████                           | 165343/262326 [09:50<05:38, 286.16it/s]


 63%|██████████████████████████████████████████████                           | 165376/262326 [09:50<05:36, 288.04it/s]


 63%|██████████████████████████████████████████████                           | 165407/262326 [09:51<05:29, 294.21it/s]


 63%|██████████████████████████████████████████████                           | 165437/262326 [09:51<05:29, 294.49it/s]


 63%|██████████████████████████████████████████████                           | 165468/262326 [09:51<05:26, 296.64it/s]


 63%|██████████████████████████████████████████████                           | 165499/262326 [09:51<05:34, 289.51it/s]


 63%|██████████████████████████████████████████████                           | 165529/262326 [09:51<05:32, 291.04it/s]


 63%|██████████████████████████████████████████████                           | 165560/262326 [09:51<05:40, 283.96it/s]


 63%|██████████████████████████████████████████████                           | 165590/262326 [09:51<05:36, 287.33it/s]


 63%|██████████████████████████████████████████████                           | 165622/262326 [09:51<05:40, 284.16it/s]


 63%|██████████████████████████████████████████████                           | 165653/262326 [09:51<05:33, 289.82it/s]


 63%|██████████████████████████████████████████████                           | 165690/262326 [09:52<05:23, 298.68it/s]


 63%|██████████████████████████████████████████████                           | 165720/262326 [09:52<05:39, 284.93it/s]


 63%|██████████████████████████████████████████████                           | 165749/262326 [09:52<05:37, 286.03it/s]


 63%|██████████████████████████████████████████████▏                          | 165779/262326 [09:52<05:33, 289.59it/s]


 63%|██████████████████████████████████████████████▏                          | 165810/262326 [09:52<05:28, 293.52it/s]


 63%|██████████████████████████████████████████████▏                          | 165847/262326 [09:52<05:18, 303.08it/s]


 63%|██████████████████████████████████████████████▏                          | 165879/262326 [09:52<05:14, 306.37it/s]


 63%|██████████████████████████████████████████████▏                          | 165910/262326 [09:52<05:29, 292.58it/s]


 63%|██████████████████████████████████████████████▏                          | 165940/262326 [09:52<05:28, 293.57it/s]


 63%|██████████████████████████████████████████████▏                          | 165974/262326 [09:53<05:27, 293.88it/s]


 63%|██████████████████████████████████████████████▏                          | 166011/262326 [09:53<05:19, 301.44it/s]


 63%|██████████████████████████████████████████████▏                          | 166042/262326 [09:53<05:29, 291.86it/s]


 63%|██████████████████████████████████████████████▏                          | 166072/262326 [09:53<05:30, 290.86it/s]


 63%|██████████████████████████████████████████████▏                          | 166102/262326 [09:53<05:27, 293.53it/s]


 63%|██████████████████████████████████████████████▏                          | 166132/262326 [09:53<05:32, 288.93it/s]


 63%|██████████████████████████████████████████████▏                          | 166166/262326 [09:53<05:25, 295.35it/s]


 63%|██████████████████████████████████████████████▏                          | 166196/262326 [09:53<05:24, 295.90it/s]


 63%|██████████████████████████████████████████████▎                          | 166226/262326 [09:53<05:25, 295.40it/s]


 63%|██████████████████████████████████████████████▎                          | 166256/262326 [09:53<05:23, 296.62it/s]


 63%|██████████████████████████████████████████████▎                          | 166286/262326 [09:54<05:24, 296.39it/s]


 63%|██████████████████████████████████████████████▎                          | 166324/262326 [09:54<05:11, 307.98it/s]


 63%|██████████████████████████████████████████████▎                          | 166355/262326 [09:54<05:32, 288.77it/s]


 63%|██████████████████████████████████████████████▎                          | 166386/262326 [09:54<05:36, 285.18it/s]


 63%|██████████████████████████████████████████████▎                          | 166418/262326 [09:54<05:39, 282.82it/s]


 63%|██████████████████████████████████████████████▎                          | 166447/262326 [09:54<05:37, 283.99it/s]


 63%|██████████████████████████████████████████████▎                          | 166477/262326 [09:54<05:32, 288.05it/s]


 63%|██████████████████████████████████████████████▎                          | 166511/262326 [09:54<05:30, 290.06it/s]


 63%|██████████████████████████████████████████████▎                          | 166541/262326 [09:54<05:29, 290.59it/s]


 63%|██████████████████████████████████████████████▎                          | 166571/262326 [09:55<06:43, 237.21it/s]


 64%|██████████████████████████████████████████████▎                          | 166601/262326 [09:55<06:30, 244.93it/s]


 64%|██████████████████████████████████████████████▎                          | 166633/262326 [09:55<06:09, 259.32it/s]


 64%|██████████████████████████████████████████████▍                          | 166669/262326 [09:55<05:48, 274.40it/s]


 64%|██████████████████████████████████████████████▍                          | 166699/262326 [09:55<05:40, 281.15it/s]


 64%|██████████████████████████████████████████████▍                          | 166729/262326 [09:55<05:35, 284.88it/s]


 64%|██████████████████████████████████████████████▍                          | 166766/262326 [09:55<05:23, 295.85it/s]


 64%|██████████████████████████████████████████████▍                          | 166797/262326 [09:55<05:35, 284.61it/s]


 64%|██████████████████████████████████████████████▍                          | 166833/262326 [09:56<05:26, 292.46it/s]


 64%|██████████████████████████████████████████████▍                          | 166865/262326 [09:56<05:20, 297.72it/s]


 64%|██████████████████████████████████████████████▍                          | 166896/262326 [09:56<05:34, 285.39it/s]


 64%|██████████████████████████████████████████████▍                          | 166925/262326 [09:56<05:45, 276.30it/s]


 64%|██████████████████████████████████████████████▍                          | 166953/262326 [09:56<05:44, 276.63it/s]


 64%|██████████████████████████████████████████████▍                          | 166988/262326 [09:56<05:35, 284.24it/s]


 64%|██████████████████████████████████████████████▍                          | 167019/262326 [09:56<05:27, 290.79it/s]


 64%|██████████████████████████████████████████████▍                          | 167055/262326 [09:56<05:20, 297.19it/s]


 64%|██████████████████████████████████████████████▍                          | 167087/262326 [09:56<05:15, 302.02it/s]


 64%|██████████████████████████████████████████████▌                          | 167121/262326 [09:56<05:17, 300.04it/s]


 64%|██████████████████████████████████████████████▌                          | 167153/262326 [09:57<05:12, 304.40it/s]


 64%|██████████████████████████████████████████████▌                          | 167188/262326 [09:57<05:13, 303.84it/s]


 64%|██████████████████████████████████████████████▌                          | 167219/262326 [09:57<05:27, 290.08it/s]


 64%|██████████████████████████████████████████████▌                          | 167249/262326 [09:57<05:25, 291.74it/s]


 64%|██████████████████████████████████████████████▌                          | 167279/262326 [09:57<06:09, 257.56it/s]


 64%|██████████████████████████████████████████████▌                          | 167310/262326 [09:57<05:51, 270.66it/s]


 64%|██████████████████████████████████████████████▌                          | 167344/262326 [09:57<05:42, 277.50it/s]


 64%|██████████████████████████████████████████████▌                          | 167374/262326 [09:57<05:38, 280.69it/s]


 64%|██████████████████████████████████████████████▌                          | 167410/262326 [09:58<05:25, 291.63it/s]


 64%|██████████████████████████████████████████████▌                          | 167443/262326 [09:58<05:17, 299.30it/s]


 64%|██████████████████████████████████████████████▌                          | 167474/262326 [09:58<05:17, 298.73it/s]


 64%|██████████████████████████████████████████████▌                          | 167507/262326 [09:58<05:19, 297.14it/s]


 64%|██████████████████████████████████████████████▌                          | 167537/262326 [09:58<05:32, 285.14it/s]


 64%|██████████████████████████████████████████████▋                          | 167568/262326 [09:58<05:25, 291.18it/s]


 64%|██████████████████████████████████████████████▋                          | 167602/262326 [09:58<05:24, 292.15it/s]


 64%|██████████████████████████████████████████████▋                          | 167634/262326 [09:58<05:17, 298.62it/s]


 64%|██████████████████████████████████████████████▋                          | 167664/262326 [09:58<05:23, 292.69it/s]


 64%|██████████████████████████████████████████████▋                          | 167699/262326 [09:58<05:13, 301.69it/s]


 64%|██████████████████████████████████████████████▋                          | 167730/262326 [09:59<05:56, 265.07it/s]


 64%|██████████████████████████████████████████████▋                          | 167758/262326 [09:59<05:53, 267.30it/s]


 64%|██████████████████████████████████████████████▋                          | 167791/262326 [09:59<05:46, 272.86it/s]


 64%|██████████████████████████████████████████████▋                          | 167821/262326 [09:59<05:37, 279.75it/s]


 64%|██████████████████████████████████████████████▋                          | 167854/262326 [09:59<05:35, 281.68it/s]


 64%|██████████████████████████████████████████████▋                          | 167884/262326 [09:59<05:32, 283.73it/s]


 64%|██████████████████████████████████████████████▋                          | 167921/262326 [09:59<05:19, 295.05it/s]


 64%|██████████████████████████████████████████████▋                          | 167951/262326 [09:59<05:19, 295.49it/s]


 64%|██████████████████████████████████████████████▋                          | 167981/262326 [09:59<05:18, 296.16it/s]


 64%|██████████████████████████████████████████████▊                          | 168011/262326 [10:00<06:45, 232.49it/s]


 64%|██████████████████████████████████████████████▊                          | 168038/262326 [10:00<06:30, 241.38it/s]


 64%|██████████████████████████████████████████████▊                          | 168065/262326 [10:00<06:21, 246.90it/s]


 64%|██████████████████████████████████████████████▊                          | 168091/262326 [10:00<06:31, 240.75it/s]


 64%|██████████████████████████████████████████████▊                          | 168120/262326 [10:00<06:15, 250.74it/s]


 64%|██████████████████████████████████████████████▊                          | 168150/262326 [10:00<05:59, 262.14it/s]


 64%|██████████████████████████████████████████████▊                          | 168181/262326 [10:00<05:53, 266.25it/s]


 64%|██████████████████████████████████████████████▊                          | 168209/262326 [10:00<05:49, 269.58it/s]


 64%|██████████████████████████████████████████████▊                          | 168237/262326 [10:01<05:45, 272.23it/s]


 64%|██████████████████████████████████████████████▊                          | 168270/262326 [10:01<05:39, 277.05it/s]


 64%|██████████████████████████████████████████████▊                          | 168300/262326 [10:01<05:33, 281.91it/s]


 64%|██████████████████████████████████████████████▊                          | 168329/262326 [10:01<05:32, 283.12it/s]


 64%|██████████████████████████████████████████████▊                          | 168363/262326 [10:01<05:27, 286.77it/s]


 64%|██████████████████████████████████████████████▊                          | 168392/262326 [10:01<05:27, 286.86it/s]


 64%|██████████████████████████████████████████████▊                          | 168422/262326 [10:01<05:23, 290.40it/s]


 64%|██████████████████████████████████████████████▉                          | 168457/262326 [10:01<05:31, 283.34it/s]


 64%|██████████████████████████████████████████████▉                          | 168486/262326 [10:01<05:31, 283.18it/s]


 64%|██████████████████████████████████████████████▉                          | 168516/262326 [10:01<05:27, 286.86it/s]


 64%|██████████████████████████████████████████████▉                          | 168545/262326 [10:02<05:28, 285.15it/s]


 64%|██████████████████████████████████████████████▉                          | 168580/262326 [10:02<05:20, 292.75it/s]


 64%|██████████████████████████████████████████████▉                          | 168611/262326 [10:02<05:25, 287.72it/s]


 64%|██████████████████████████████████████████████▉                          | 168641/262326 [10:02<05:25, 287.71it/s]


 64%|██████████████████████████████████████████████▉                          | 168671/262326 [10:02<05:36, 278.02it/s]


 64%|██████████████████████████████████████████████▉                          | 168702/262326 [10:02<05:28, 285.14it/s]


 64%|██████████████████████████████████████████████▉                          | 168737/262326 [10:02<05:21, 290.74it/s]


 64%|██████████████████████████████████████████████▉                          | 168768/262326 [10:02<05:16, 295.77it/s]


 64%|██████████████████████████████████████████████▉                          | 168803/262326 [10:02<05:14, 297.84it/s]


 64%|██████████████████████████████████████████████▉                          | 168835/262326 [10:03<05:09, 302.16it/s]


 64%|██████████████████████████████████████████████▉                          | 168866/262326 [10:03<05:07, 304.32it/s]


 64%|███████████████████████████████████████████████                          | 168897/262326 [10:03<05:24, 288.04it/s]


 64%|███████████████████████████████████████████████                          | 168927/262326 [10:03<05:30, 282.32it/s]


 64%|███████████████████████████████████████████████                          | 168957/262326 [10:03<05:26, 285.92it/s]


 64%|███████████████████████████████████████████████                          | 168991/262326 [10:03<05:22, 289.13it/s]


 64%|███████████████████████████████████████████████                          | 169021/262326 [10:03<05:20, 290.89it/s]


 64%|███████████████████████████████████████████████                          | 169051/262326 [10:03<05:32, 280.22it/s]


 64%|███████████████████████████████████████████████                          | 169080/262326 [10:03<05:36, 277.40it/s]


 64%|███████████████████████████████████████████████                          | 169114/262326 [10:04<05:26, 285.37it/s]


 64%|███████████████████████████████████████████████                          | 169150/262326 [10:04<05:17, 293.61it/s]


 64%|███████████████████████████████████████████████                          | 169181/262326 [10:04<05:13, 297.21it/s]


 65%|███████████████████████████████████████████████                          | 169211/262326 [10:04<05:12, 297.89it/s]


 65%|███████████████████████████████████████████████                          | 169241/262326 [10:04<05:13, 296.46it/s]


 65%|███████████████████████████████████████████████                          | 169277/262326 [10:04<05:07, 302.93it/s]


 65%|███████████████████████████████████████████████                          | 169308/262326 [10:04<05:06, 303.91it/s]


 65%|███████████████████████████████████████████████                          | 169339/262326 [10:04<05:05, 304.41it/s]


 65%|███████████████████████████████████████████████▏                         | 169370/262326 [10:04<05:03, 306.04it/s]


 65%|███████████████████████████████████████████████▏                         | 169401/262326 [10:05<05:16, 293.40it/s]


 65%|███████████████████████████████████████████████▏                         | 169431/262326 [10:05<05:15, 294.56it/s]


 65%|███████████████████████████████████████████████▏                         | 169461/262326 [10:05<05:17, 292.15it/s]


 65%|███████████████████████████████████████████████▏                         | 169491/262326 [10:05<05:26, 284.03it/s]


 65%|███████████████████████████████████████████████▏                         | 169526/262326 [10:05<05:20, 289.72it/s]


 65%|███████████████████████████████████████████████▏                         | 169557/262326 [10:05<05:15, 294.36it/s]


 65%|███████████████████████████████████████████████▏                         | 169587/262326 [10:05<05:27, 283.40it/s]


 65%|███████████████████████████████████████████████▏                         | 169618/262326 [10:05<05:18, 290.80it/s]


 65%|███████████████████████████████████████████████▏                         | 169648/262326 [10:05<05:18, 291.14it/s]


 65%|███████████████████████████████████████████████▏                         | 169683/262326 [10:05<05:14, 294.74it/s]


 65%|███████████████████████████████████████████████▏                         | 169713/262326 [10:06<05:25, 284.11it/s]


 65%|███████████████████████████████████████████████▏                         | 169745/262326 [10:06<05:16, 292.27it/s]


 65%|███████████████████████████████████████████████▏                         | 169775/262326 [10:06<05:15, 293.52it/s]


 65%|███████████████████████████████████████████████▎                         | 169805/262326 [10:06<05:14, 294.13it/s]


 65%|███████████████████████████████████████████████▎                         | 169835/262326 [10:06<05:12, 295.53it/s]


 65%|███████████████████████████████████████████████▎                         | 169867/262326 [10:06<05:18, 290.69it/s]


 65%|███████████████████████████████████████████████▎                         | 169904/262326 [10:06<05:08, 299.34it/s]


 65%|███████████████████████████████████████████████▎                         | 169935/262326 [10:06<05:06, 301.42it/s]


 65%|███████████████████████████████████████████████▎                         | 169966/262326 [10:06<05:05, 302.33it/s]


 65%|███████████████████████████████████████████████▎                         | 169997/262326 [10:07<05:03, 303.75it/s]


 65%|███████████████████████████████████████████████▎                         | 170028/262326 [10:07<05:06, 301.14it/s]


 65%|███████████████████████████████████████████████▎                         | 170059/262326 [10:07<05:13, 294.48it/s]


 65%|███████████████████████████████████████████████▎                         | 170091/262326 [10:07<05:19, 289.04it/s]


 65%|███████████████████████████████████████████████▎                         | 170120/262326 [10:07<05:19, 288.34it/s]


 65%|███████████████████████████████████████████████▎                         | 170155/262326 [10:07<05:15, 292.57it/s]


 65%|███████████████████████████████████████████████▎                         | 170185/262326 [10:07<05:31, 278.22it/s]


 65%|███████████████████████████████████████████████▎                         | 170223/262326 [10:07<05:14, 292.66it/s]


 65%|███████████████████████████████████████████████▍                         | 170253/262326 [10:07<05:13, 293.99it/s]


 65%|███████████████████████████████████████████████▍                         | 170283/262326 [10:08<05:25, 282.65it/s]


 65%|███████████████████████████████████████████████▍                         | 170312/262326 [10:08<05:24, 283.96it/s]


 65%|███████████████████████████████████████████████▍                         | 170341/262326 [10:08<05:40, 270.39it/s]


 65%|███████████████████████████████████████████████▍                         | 170375/262326 [10:08<05:29, 278.77it/s]


 65%|███████████████████████████████████████████████▍                         | 170404/262326 [10:08<05:31, 276.99it/s]


 65%|███████████████████████████████████████████████▍                         | 170437/262326 [10:08<05:24, 282.76it/s]


 65%|███████████████████████████████████████████████▍                         | 170466/262326 [10:08<06:55, 220.83it/s]


 65%|███████████████████████████████████████████████▍                         | 170495/262326 [10:08<06:29, 235.83it/s]


 65%|███████████████████████████████████████████████▍                         | 170527/262326 [10:08<05:59, 255.67it/s]


 65%|███████████████████████████████████████████████▍                         | 170559/262326 [10:09<05:37, 271.62it/s]


 65%|███████████████████████████████████████████████▍                         | 170594/262326 [10:09<05:25, 281.48it/s]


 65%|███████████████████████████████████████████████▍                         | 170624/262326 [10:09<05:39, 270.38it/s]


 65%|███████████████████████████████████████████████▍                         | 170657/262326 [10:09<05:32, 275.85it/s]


 65%|███████████████████████████████████████████████▍                         | 170688/262326 [10:09<05:23, 283.69it/s]


 65%|███████████████████████████████████████████████▌                         | 170720/262326 [10:09<05:23, 282.76it/s]


 65%|███████████████████████████████████████████████▌                         | 170752/262326 [10:09<05:13, 292.13it/s]


 65%|███████████████████████████████████████████████▌                         | 170788/262326 [10:09<05:07, 297.80it/s]


 65%|███████████████████████████████████████████████▌                         | 170819/262326 [10:09<05:05, 299.17it/s]


 65%|███████████████████████████████████████████████▌                         | 170851/262326 [10:10<05:01, 303.83it/s]


 65%|███████████████████████████████████████████████▌                         | 170888/262326 [10:10<04:54, 310.44it/s]


 65%|███████████████████████████████████████████████▌                         | 170920/262326 [10:10<04:57, 307.12it/s]


 65%|███████████████████████████████████████████████▌                         | 170951/262326 [10:10<05:05, 299.26it/s]


 65%|███████████████████████████████████████████████▌                         | 170985/262326 [10:10<05:06, 297.74it/s]


 65%|███████████████████████████████████████████████▌                         | 171015/262326 [10:10<05:07, 296.95it/s]


 65%|███████████████████████████████████████████████▌                         | 171045/262326 [10:10<05:06, 297.62it/s]


 65%|███████████████████████████████████████████████▌                         | 171076/262326 [10:10<05:03, 300.42it/s]


 65%|███████████████████████████████████████████████▌                         | 171107/262326 [10:10<05:01, 302.23it/s]


 65%|███████████████████████████████████████████████▌                         | 171138/262326 [10:11<04:59, 304.28it/s]


 65%|███████████████████████████████████████████████▋                         | 171171/262326 [10:11<05:09, 294.89it/s]


 65%|███████████████████████████████████████████████▋                         | 171201/262326 [10:11<05:16, 288.12it/s]


 65%|███████████████████████████████████████████████▋                         | 171231/262326 [10:11<05:13, 290.60it/s]


 65%|███████████████████████████████████████████████▋                         | 171262/262326 [10:11<05:07, 295.79it/s]


 65%|███████████████████████████████████████████████▋                         | 171292/262326 [10:11<05:06, 296.79it/s]


 65%|███████████████████████████████████████████████▋                         | 171322/262326 [10:11<05:06, 296.90it/s]


 65%|███████████████████████████████████████████████▋                         | 171358/262326 [10:11<05:01, 301.76it/s]


 65%|███████████████████████████████████████████████▋                         | 171389/262326 [10:11<05:00, 302.26it/s]


 65%|███████████████████████████████████████████████▋                         | 171425/262326 [10:11<04:58, 304.92it/s]


 65%|███████████████████████████████████████████████▋                         | 171456/262326 [10:12<04:57, 305.62it/s]


 65%|███████████████████████████████████████████████▋                         | 171487/262326 [10:12<05:09, 293.04it/s]


 65%|███████████████████████████████████████████████▋                         | 171517/262326 [10:12<05:10, 292.13it/s]


 65%|███████████████████████████████████████████████▋                         | 171549/262326 [10:12<05:14, 288.94it/s]


 65%|███████████████████████████████████████████████▋                         | 171579/262326 [10:12<05:11, 291.16it/s]


 65%|███████████████████████████████████████████████▊                         | 171614/262326 [10:12<05:07, 294.98it/s]


 65%|███████████████████████████████████████████████▊                         | 171644/262326 [10:12<05:09, 293.29it/s]


 65%|███████████████████████████████████████████████▊                         | 171680/262326 [10:12<05:01, 300.60it/s]


 65%|███████████████████████████████████████████████▊                         | 171711/262326 [10:12<05:00, 301.09it/s]


 65%|███████████████████████████████████████████████▊                         | 171742/262326 [10:13<05:11, 290.40it/s]


 65%|███████████████████████████████████████████████▊                         | 171772/262326 [10:13<05:09, 292.15it/s]


 65%|███████████████████████████████████████████████▊                         | 171802/262326 [10:13<05:08, 293.11it/s]


 66%|███████████████████████████████████████████████▊                         | 171839/262326 [10:13<04:59, 301.80it/s]


 66%|███████████████████████████████████████████████▊                         | 171870/262326 [10:13<04:58, 303.32it/s]


 66%|███████████████████████████████████████████████▊                         | 171901/262326 [10:13<04:56, 305.16it/s]


 66%|███████████████████████████████████████████████▊                         | 171932/262326 [10:13<04:55, 306.17it/s]


 66%|███████████████████████████████████████████████▊                         | 171963/262326 [10:13<04:54, 306.99it/s]


 66%|███████████████████████████████████████████████▊                         | 171994/262326 [10:13<05:06, 294.44it/s]


 66%|███████████████████████████████████████████████▊                         | 172024/262326 [10:14<05:05, 295.26it/s]


 66%|███████████████████████████████████████████████▉                         | 172056/262326 [10:14<04:59, 301.70it/s]


 66%|███████████████████████████████████████████████▉                         | 172092/262326 [10:14<04:56, 304.54it/s]


 66%|███████████████████████████████████████████████▉                         | 172123/262326 [10:14<04:55, 305.67it/s]


 66%|███████████████████████████████████████████████▉                         | 172154/262326 [10:14<05:07, 293.22it/s]


 66%|███████████████████████████████████████████████▉                         | 172184/262326 [10:14<05:06, 294.48it/s]


 66%|███████████████████████████████████████████████▉                         | 172214/262326 [10:14<05:04, 295.73it/s]


 66%|███████████████████████████████████████████████▉                         | 172244/262326 [10:14<05:03, 296.95it/s]


 66%|███████████████████████████████████████████████▉                         | 172275/262326 [10:14<05:00, 299.35it/s]


 66%|███████████████████████████████████████████████▉                         | 172310/262326 [10:14<04:59, 300.61it/s]


 66%|███████████████████████████████████████████████▉                         | 172345/262326 [10:15<04:58, 301.49it/s]


 66%|███████████████████████████████████████████████▉                         | 172381/262326 [10:15<04:55, 304.53it/s]


 66%|███████████████████████████████████████████████▉                         | 172412/262326 [10:15<05:10, 290.00it/s]


 66%|███████████████████████████████████████████████▉                         | 172442/262326 [10:15<05:07, 292.18it/s]


 66%|███████████████████████████████████████████████▉                         | 172472/262326 [10:15<06:17, 237.81it/s]


 66%|████████████████████████████████████████████████                         | 172500/262326 [10:15<06:00, 248.87it/s]


 66%|████████████████████████████████████████████████                         | 172532/262326 [10:15<05:40, 264.00it/s]


 66%|████████████████████████████████████████████████                         | 172567/262326 [10:15<05:25, 275.84it/s]


 66%|████████████████████████████████████████████████                         | 172596/262326 [10:16<05:23, 277.31it/s]


 66%|████████████████████████████████████████████████                         | 172629/262326 [10:16<05:20, 280.01it/s]


 66%|████████████████████████████████████████████████                         | 172661/262326 [10:16<05:11, 287.64it/s]


 66%|████████████████████████████████████████████████                         | 172691/262326 [10:16<05:19, 280.54it/s]


 66%|████████████████████████████████████████████████                         | 172725/262326 [10:16<05:14, 284.65it/s]


 66%|████████████████████████████████████████████████                         | 172756/262326 [10:16<05:07, 290.94it/s]


 66%|████████████████████████████████████████████████                         | 172786/262326 [10:16<05:19, 280.30it/s]


 66%|████████████████████████████████████████████████                         | 172822/262326 [10:16<05:09, 289.38it/s]


 66%|████████████████████████████████████████████████                         | 172852/262326 [10:16<05:08, 289.71it/s]


 66%|████████████████████████████████████████████████                         | 172882/262326 [10:16<05:06, 291.65it/s]


 66%|████████████████████████████████████████████████                         | 172916/262326 [10:17<05:05, 292.86it/s]


 66%|████████████████████████████████████████████████▏                        | 172947/262326 [10:17<05:00, 297.32it/s]


 66%|████████████████████████████████████████████████▏                        | 172979/262326 [10:17<05:04, 293.75it/s]


 66%|████████████████████████████████████████████████▏                        | 173009/262326 [10:17<05:05, 292.71it/s]


 66%|████████████████████████████████████████████████▏                        | 173039/262326 [10:17<05:12, 285.72it/s]


 66%|████████████████████████████████████████████████▏                        | 173068/262326 [10:17<05:16, 282.14it/s]


 66%|████████████████████████████████████████████████▏                        | 173098/262326 [10:17<05:13, 284.98it/s]


 66%|████████████████████████████████████████████████▏                        | 173134/262326 [10:17<05:03, 293.82it/s]


 66%|████████████████████████████████████████████████▏                        | 173165/262326 [10:17<04:59, 297.47it/s]


 66%|████████████████████████████████████████████████▏                        | 173202/262326 [10:18<04:54, 303.09it/s]


 66%|████████████████████████████████████████████████▏                        | 173233/262326 [10:18<04:52, 304.99it/s]


 66%|████████████████████████████████████████████████▏                        | 173264/262326 [10:18<05:29, 270.52it/s]


 66%|████████████████████████████████████████████████▏                        | 173294/262326 [10:18<05:23, 274.94it/s]


 66%|████████████████████████████████████████████████▏                        | 173325/262326 [10:18<05:12, 284.46it/s]


 66%|████████████████████████████████████████████████▏                        | 173355/262326 [10:18<05:08, 288.77it/s]


 66%|████████████████████████████████████████████████▏                        | 173386/262326 [10:18<05:01, 294.68it/s]


 66%|████████████████████████████████████████████████▎                        | 173418/262326 [10:18<04:54, 301.78it/s]


 66%|████████████████████████████████████████████████▎                        | 173449/262326 [10:18<04:53, 303.03it/s]


 66%|████████████████████████████████████████████████▎                        | 173485/262326 [10:19<04:50, 305.68it/s]


 66%|████████████████████████████████████████████████▎                        | 173516/262326 [10:19<04:54, 301.08it/s]


 66%|████████████████████████████████████████████████▎                        | 173547/262326 [10:19<04:55, 300.42it/s]


 66%|████████████████████████████████████████████████▎                        | 173579/262326 [10:19<04:56, 299.09it/s]


 66%|████████████████████████████████████████████████▎                        | 173609/262326 [10:19<05:04, 291.51it/s]


 66%|████████████████████████████████████████████████▎                        | 173640/262326 [10:19<05:00, 294.96it/s]


 66%|████████████████████████████████████████████████▎                        | 173670/262326 [10:19<05:00, 294.94it/s]


 66%|████████████████████████████████████████████████▎                        | 173700/262326 [10:19<05:01, 294.04it/s]


 66%|████████████████████████████████████████████████▎                        | 173730/262326 [10:19<05:01, 293.36it/s]


 66%|████████████████████████████████████████████████▎                        | 173760/262326 [10:19<05:07, 287.86it/s]


 66%|████████████████████████████████████████████████▎                        | 173793/262326 [10:20<05:00, 295.09it/s]


 66%|████████████████████████████████████████████████▎                        | 173823/262326 [10:20<04:58, 296.22it/s]


 66%|████████████████████████████████████████████████▍                        | 173853/262326 [10:20<04:59, 294.96it/s]


 66%|████████████████████████████████████████████████▍                        | 173887/262326 [10:20<04:58, 295.86it/s]


 66%|████████████████████████████████████████████████▍                        | 173917/262326 [10:20<04:57, 297.08it/s]


 66%|████████████████████████████████████████████████▍                        | 173948/262326 [10:20<04:54, 300.40it/s]


 66%|████████████████████████████████████████████████▍                        | 173981/262326 [10:20<04:48, 306.37it/s]


 66%|████████████████████████████████████████████████▍                        | 174013/262326 [10:20<04:45, 309.28it/s]


 66%|████████████████████████████████████████████████▍                        | 174044/262326 [10:20<05:28, 268.63it/s]


 66%|████████████████████████████████████████████████▍                        | 174072/262326 [10:21<05:35, 262.96it/s]


 66%|████████████████████████████████████████████████▍                        | 174103/262326 [10:21<05:20, 274.97it/s]


 66%|████████████████████████████████████████████████▍                        | 174134/262326 [10:21<05:12, 282.59it/s]


 66%|████████████████████████████████████████████████▍                        | 174163/262326 [10:21<05:36, 261.88it/s]


 66%|████████████████████████████████████████████████▍                        | 174194/262326 [10:21<05:24, 271.99it/s]


 66%|████████████████████████████████████████████████▍                        | 174227/262326 [10:21<05:19, 275.95it/s]


 66%|████████████████████████████████████████████████▍                        | 174256/262326 [10:21<05:14, 279.92it/s]


 66%|████████████████████████████████████████████████▍                        | 174285/262326 [10:21<05:17, 277.40it/s]


 66%|████████████████████████████████████████████████▌                        | 174314/262326 [10:21<05:14, 279.69it/s]


 66%|████████████████████████████████████████████████▌                        | 174343/262326 [10:22<05:17, 277.16it/s]


 66%|████████████████████████████████████████████████▌                        | 174372/262326 [10:22<05:14, 279.49it/s]


 66%|████████████████████████████████████████████████▌                        | 174401/262326 [10:22<05:18, 276.35it/s]


 66%|████████████████████████████████████████████████▌                        | 174429/262326 [10:22<05:17, 276.82it/s]


 67%|████████████████████████████████████████████████▌                        | 174457/262326 [10:22<05:24, 270.92it/s]


 67%|████████████████████████████████████████████████▌                        | 174488/262326 [10:22<05:13, 280.19it/s]


 67%|████████████████████████████████████████████████▌                        | 174517/262326 [10:22<05:10, 282.63it/s]


 67%|████████████████████████████████████████████████▌                        | 174552/262326 [10:22<05:14, 278.75it/s]


 67%|████████████████████████████████████████████████▌                        | 174582/262326 [10:22<05:08, 284.66it/s]


 67%|████████████████████████████████████████████████▌                        | 174612/262326 [10:22<05:06, 286.24it/s]


 67%|████████████████████████████████████████████████▌                        | 174646/262326 [10:23<05:02, 289.90it/s]


 67%|████████████████████████████████████████████████▌                        | 174676/262326 [10:23<05:15, 277.98it/s]


 67%|████████████████████████████████████████████████▌                        | 174705/262326 [10:23<05:12, 280.26it/s]


 67%|████████████████████████████████████████████████▋                        | 174739/262326 [10:23<05:07, 285.04it/s]


 67%|████████████████████████████████████████████████▋                        | 174770/262326 [10:23<05:00, 291.59it/s]


 67%|████████████████████████████████████████████████▋                        | 174800/262326 [10:23<04:58, 293.43it/s]


 67%|████████████████████████████████████████████████▋                        | 174830/262326 [10:23<05:10, 282.05it/s]


 67%|████████████████████████████████████████████████▋                        | 174859/262326 [10:23<05:37, 259.26it/s]


 67%|████████████████████████████████████████████████▋                        | 174886/262326 [10:23<05:34, 261.07it/s]


 67%|████████████████████████████████████████████████▋                        | 174920/262326 [10:24<05:23, 270.32it/s]


 67%|████████████████████████████████████████████████▋                        | 174949/262326 [10:24<05:19, 273.19it/s]


 67%|████████████████████████████████████████████████▋                        | 174983/262326 [10:24<05:11, 280.63it/s]


 67%|████████████████████████████████████████████████▋                        | 175012/262326 [10:24<05:09, 282.08it/s]


 67%|████████████████████████████████████████████████▋                        | 175041/262326 [10:24<05:06, 284.39it/s]


 67%|████████████████████████████████████████████████▋                        | 175071/262326 [10:24<05:15, 276.87it/s]


 67%|████████████████████████████████████████████████▋                        | 175099/262326 [10:24<05:15, 276.64it/s]


 67%|████████████████████████████████████████████████▋                        | 175135/262326 [10:24<05:03, 287.68it/s]


 67%|████████████████████████████████████████████████▋                        | 175165/262326 [10:24<05:00, 289.79it/s]


 67%|████████████████████████████████████████████████▊                        | 175195/262326 [10:25<05:11, 279.55it/s]


 67%|████████████████████████████████████████████████▊                        | 175226/262326 [10:25<05:03, 287.39it/s]


 67%|████████████████████████████████████████████████▊                        | 175256/262326 [10:25<04:59, 291.04it/s]


 67%|████████████████████████████████████████████████▊                        | 175286/262326 [10:25<04:56, 293.51it/s]


 67%|████████████████████████████████████████████████▊                        | 175317/262326 [10:25<04:52, 297.09it/s]


 67%|████████████████████████████████████████████████▊                        | 175347/262326 [10:25<04:53, 296.61it/s]


 67%|████████████████████████████████████████████████▊                        | 175382/262326 [10:25<05:01, 288.25it/s]


 67%|████████████████████████████████████████████████▊                        | 175411/262326 [10:25<05:17, 273.78it/s]


 67%|████████████████████████████████████████████████▊                        | 175446/262326 [10:25<05:08, 281.98it/s]


 67%|████████████████████████████████████████████████▊                        | 175475/262326 [10:26<05:06, 283.20it/s]


 67%|████████████████████████████████████████████████▊                        | 175504/262326 [10:26<05:05, 284.14it/s]


 67%|████████████████████████████████████████████████▊                        | 175533/262326 [10:26<05:05, 284.47it/s]


 67%|████████████████████████████████████████████████▊                        | 175562/262326 [10:26<05:58, 242.16it/s]


 67%|████████████████████████████████████████████████▊                        | 175588/262326 [10:26<05:56, 243.26it/s]


 67%|████████████████████████████████████████████████▊                        | 175617/262326 [10:26<05:51, 246.53it/s]


 67%|████████████████████████████████████████████████▉                        | 175648/262326 [10:26<05:30, 262.59it/s]


 67%|████████████████████████████████████████████████▉                        | 175679/262326 [10:26<05:15, 274.90it/s]


 67%|████████████████████████████████████████████████▉                        | 175708/262326 [10:26<05:10, 278.65it/s]


 67%|████████████████████████████████████████████████▉                        | 175739/262326 [10:27<05:01, 287.11it/s]


 67%|████████████████████████████████████████████████▉                        | 175770/262326 [10:27<04:55, 292.57it/s]


 67%|████████████████████████████████████████████████▉                        | 175800/262326 [10:27<05:00, 287.78it/s]


 67%|████████████████████████████████████████████████▉                        | 175831/262326 [10:27<04:58, 289.47it/s]


 67%|████████████████████████████████████████████████▉                        | 175861/262326 [10:27<04:56, 291.35it/s]


 67%|████████████████████████████████████████████████▉                        | 175891/262326 [10:27<04:55, 292.34it/s]


 67%|████████████████████████████████████████████████▉                        | 175921/262326 [10:27<04:53, 294.47it/s]


 67%|████████████████████████████████████████████████▉                        | 175955/262326 [10:27<04:52, 295.61it/s]


 67%|████████████████████████████████████████████████▉                        | 175986/262326 [10:27<04:49, 298.69it/s]


 67%|████████████████████████████████████████████████▉                        | 176021/262326 [10:27<04:46, 300.80it/s]


 67%|████████████████████████████████████████████████▉                        | 176052/262326 [10:28<04:45, 302.29it/s]


 67%|█████████████████████████████████████████████████                        | 176083/262326 [10:28<04:43, 304.27it/s]


 67%|█████████████████████████████████████████████████                        | 176114/262326 [10:28<05:01, 286.00it/s]


 67%|█████████████████████████████████████████████████                        | 176144/262326 [10:28<05:06, 281.38it/s]


 67%|█████████████████████████████████████████████████                        | 176178/262326 [10:28<05:01, 285.60it/s]


 67%|█████████████████████████████████████████████████                        | 176208/262326 [10:28<04:58, 288.37it/s]


 67%|█████████████████████████████████████████████████                        | 176237/262326 [10:28<05:00, 286.56it/s]


 67%|█████████████████████████████████████████████████                        | 176273/262326 [10:28<04:53, 293.63it/s]


 67%|█████████████████████████████████████████████████                        | 176308/262326 [10:28<04:49, 296.70it/s]


 67%|█████████████████████████████████████████████████                        | 176338/262326 [10:29<04:51, 295.37it/s]


 67%|█████████████████████████████████████████████████                        | 176373/262326 [10:29<04:47, 298.69it/s]


 67%|█████████████████████████████████████████████████                        | 176403/262326 [10:29<04:56, 289.60it/s]


 67%|█████████████████████████████████████████████████                        | 176435/262326 [10:29<04:53, 293.06it/s]


 67%|█████████████████████████████████████████████████                        | 176465/262326 [10:29<04:51, 294.52it/s]


 67%|█████████████████████████████████████████████████                        | 176495/262326 [10:29<05:18, 269.89it/s]


 67%|█████████████████████████████████████████████████                        | 176523/262326 [10:29<05:31, 259.19it/s]


 67%|█████████████████████████████████████████████████▏                       | 176551/262326 [10:29<05:27, 261.87it/s]


 67%|█████████████████████████████████████████████████▏                       | 176581/262326 [10:29<05:16, 271.28it/s]


 67%|█████████████████████████████████████████████████▏                       | 176611/262326 [10:30<05:08, 277.76it/s]


 67%|█████████████████████████████████████████████████▏                       | 176643/262326 [10:30<05:01, 283.83it/s]


 67%|█████████████████████████████████████████████████▏                       | 176672/262326 [10:30<05:09, 276.58it/s]


 67%|█████████████████████████████████████████████████▏                       | 176700/262326 [10:30<05:11, 275.24it/s]


 67%|█████████████████████████████████████████████████▏                       | 176728/262326 [10:30<05:16, 270.44it/s]


 67%|█████████████████████████████████████████████████▏                       | 176757/262326 [10:30<05:13, 272.93it/s]


 67%|█████████████████████████████████████████████████▏                       | 176785/262326 [10:30<05:12, 273.66it/s]


 67%|█████████████████████████████████████████████████▏                       | 176813/262326 [10:30<05:13, 272.65it/s]


 67%|█████████████████████████████████████████████████▏                       | 176841/262326 [10:30<05:17, 269.46it/s]


 67%|█████████████████████████████████████████████████▏                       | 176876/262326 [10:31<05:05, 279.64it/s]


 67%|█████████████████████████████████████████████████▏                       | 176905/262326 [10:31<05:08, 276.64it/s]


 67%|█████████████████████████████████████████████████▏                       | 176934/262326 [10:31<05:07, 277.52it/s]


 67%|█████████████████████████████████████████████████▏                       | 176962/262326 [10:31<05:22, 264.30it/s]


 67%|█████████████████████████████████████████████████▎                       | 176989/262326 [10:31<05:31, 257.10it/s]


 67%|█████████████████████████████████████████████████▎                       | 177023/262326 [10:31<05:15, 270.03it/s]


 67%|█████████████████████████████████████████████████▎                       | 177051/262326 [10:31<05:24, 262.82it/s]


 68%|█████████████████████████████████████████████████▎                       | 177082/262326 [10:31<05:12, 272.84it/s]


 68%|█████████████████████████████████████████████████▎                       | 177110/262326 [10:31<05:33, 255.35it/s]


 68%|█████████████████████████████████████████████████▎                       | 177136/262326 [10:32<05:34, 254.37it/s]


 68%|█████████████████████████████████████████████████▎                       | 177162/262326 [10:32<05:32, 255.93it/s]


 68%|█████████████████████████████████████████████████▎                       | 177188/262326 [10:32<05:46, 245.72it/s]


 68%|█████████████████████████████████████████████████▎                       | 177213/262326 [10:32<07:28, 189.88it/s]


 68%|█████████████████████████████████████████████████▎                       | 177239/262326 [10:32<06:52, 206.14it/s]


 68%|█████████████████████████████████████████████████▎                       | 177265/262326 [10:32<06:28, 218.84it/s]


 68%|█████████████████████████████████████████████████▎                       | 177293/262326 [10:32<06:04, 233.17it/s]


 68%|█████████████████████████████████████████████████▎                       | 177320/262326 [10:32<05:52, 241.34it/s]


 68%|█████████████████████████████████████████████████▎                       | 177353/262326 [10:32<05:32, 255.32it/s]


 68%|█████████████████████████████████████████████████▎                       | 177386/262326 [10:33<05:11, 272.94it/s]


 68%|█████████████████████████████████████████████████▎                       | 177415/262326 [10:33<05:07, 275.69it/s]


 68%|█████████████████████████████████████████████████▍                       | 177444/262326 [10:33<05:12, 271.40it/s]


 68%|█████████████████████████████████████████████████▍                       | 177472/262326 [10:33<05:21, 263.79it/s]


 68%|█████████████████████████████████████████████████▍                       | 177503/262326 [10:33<05:13, 270.95it/s]


 68%|█████████████████████████████████████████████████▍                       | 177531/262326 [10:33<05:11, 272.63it/s]


 68%|█████████████████████████████████████████████████▍                       | 177559/262326 [10:33<05:43, 247.13it/s]


 68%|█████████████████████████████████████████████████▍                       | 177594/262326 [10:33<05:21, 263.85it/s]


 68%|█████████████████████████████████████████████████▍                       | 177629/262326 [10:33<05:04, 278.53it/s]


 68%|█████████████████████████████████████████████████▍                       | 177667/262326 [10:34<04:45, 296.17it/s]


 68%|█████████████████████████████████████████████████▍                       | 177706/262326 [10:34<04:31, 312.04it/s]


 68%|█████████████████████████████████████████████████▍                       | 177739/262326 [10:34<04:36, 306.41it/s]


 68%|█████████████████████████████████████████████████▍                       | 177776/262326 [10:34<04:29, 313.69it/s]


 68%|█████████████████████████████████████████████████▍                       | 177808/262326 [10:34<04:28, 314.74it/s]


 68%|█████████████████████████████████████████████████▍                       | 177840/262326 [10:34<05:48, 242.24it/s]


 68%|█████████████████████████████████████████████████▍                       | 177878/262326 [10:34<05:16, 266.45it/s]


 68%|█████████████████████████████████████████████████▌                       | 177909/262326 [10:34<05:11, 271.35it/s]


 68%|█████████████████████████████████████████████████▌                       | 177941/262326 [10:35<05:04, 277.40it/s]


 68%|█████████████████████████████████████████████████▌                       | 177977/262326 [10:35<04:49, 290.94it/s]


 68%|█████████████████████████████████████████████████▌                       | 178010/262326 [10:35<04:41, 300.01it/s]


 68%|█████████████████████████████████████████████████▌                       | 178049/262326 [10:35<04:31, 310.84it/s]


 68%|█████████████████████████████████████████████████▌                       | 178081/262326 [10:35<04:30, 311.80it/s]


 68%|█████████████████████████████████████████████████▌                       | 178113/262326 [10:35<04:30, 310.84it/s]


 68%|█████████████████████████████████████████████████▌                       | 178145/262326 [10:35<04:36, 304.81it/s]


 68%|█████████████████████████████████████████████████▌                       | 178176/262326 [10:35<04:45, 294.41it/s]


 68%|█████████████████████████████████████████████████▌                       | 178206/262326 [10:35<04:45, 294.43it/s]


 68%|█████████████████████████████████████████████████▌                       | 178236/262326 [10:36<05:08, 272.16it/s]


 68%|█████████████████████████████████████████████████▌                       | 178264/262326 [10:36<05:11, 269.93it/s]


 68%|█████████████████████████████████████████████████▌                       | 178292/262326 [10:36<06:41, 209.52it/s]


 68%|█████████████████████████████████████████████████▌                       | 178316/262326 [10:36<06:56, 201.54it/s]


 68%|█████████████████████████████████████████████████▋                       | 178341/262326 [10:36<06:34, 213.04it/s]


 68%|█████████████████████████████████████████████████▋                       | 178364/262326 [10:36<06:48, 205.77it/s]


 68%|█████████████████████████████████████████████████▋                       | 178390/262326 [10:36<06:24, 218.54it/s]


 68%|█████████████████████████████████████████████████▋                       | 178413/262326 [10:36<07:14, 193.04it/s]


 68%|█████████████████████████████████████████████████▋                       | 178434/262326 [10:37<07:36, 183.97it/s]


 68%|█████████████████████████████████████████████████▋                       | 178454/262326 [10:37<07:39, 182.47it/s]


 68%|█████████████████████████████████████████████████▋                       | 178479/262326 [10:37<07:06, 196.81it/s]


 68%|█████████████████████████████████████████████████▋                       | 178500/262326 [10:37<08:31, 163.75it/s]


 68%|█████████████████████████████████████████████████▋                       | 178528/262326 [10:37<07:29, 186.39it/s]


 68%|█████████████████████████████████████████████████▋                       | 178549/262326 [10:37<07:46, 179.71it/s]


 68%|█████████████████████████████████████████████████▋                       | 178574/262326 [10:37<07:07, 195.91it/s]


 68%|█████████████████████████████████████████████████▋                       | 178599/262326 [10:37<06:41, 208.60it/s]


 68%|█████████████████████████████████████████████████▋                       | 178623/262326 [10:37<06:27, 216.13it/s]


 68%|█████████████████████████████████████████████████▋                       | 178651/262326 [10:38<06:01, 231.57it/s]


 68%|█████████████████████████████████████████████████▋                       | 178682/262326 [10:38<05:35, 248.94it/s]


 68%|█████████████████████████████████████████████████▋                       | 178708/262326 [10:38<05:32, 251.19it/s]


 68%|█████████████████████████████████████████████████▋                       | 178737/262326 [10:38<05:21, 260.18it/s]


 68%|█████████████████████████████████████████████████▋                       | 178764/262326 [10:38<05:26, 256.32it/s]


 68%|█████████████████████████████████████████████████▊                       | 178793/262326 [10:38<05:16, 263.60it/s]


 68%|█████████████████████████████████████████████████▊                       | 178822/262326 [10:38<05:09, 269.90it/s]


 68%|█████████████████████████████████████████████████▊                       | 178850/262326 [10:38<05:20, 260.84it/s]


 68%|█████████████████████████████████████████████████▊                       | 178879/262326 [10:38<05:12, 266.81it/s]


 68%|█████████████████████████████████████████████████▊                       | 178908/262326 [10:39<05:15, 264.61it/s]


 68%|█████████████████████████████████████████████████▊                       | 178938/262326 [10:39<05:15, 264.10it/s]


 68%|█████████████████████████████████████████████████▊                       | 178965/262326 [10:39<05:16, 263.69it/s]


 68%|█████████████████████████████████████████████████▊                       | 178992/262326 [10:39<05:14, 265.14it/s]


 68%|█████████████████████████████████████████████████▊                       | 179019/262326 [10:39<05:13, 265.68it/s]


 68%|█████████████████████████████████████████████████▊                       | 179046/262326 [10:39<05:15, 264.24it/s]


 68%|█████████████████████████████████████████████████▊                       | 179078/262326 [10:39<05:19, 260.75it/s]


 68%|█████████████████████████████████████████████████▊                       | 179107/262326 [10:39<05:10, 268.11it/s]


 68%|█████████████████████████████████████████████████▊                       | 179137/262326 [10:39<05:00, 276.85it/s]


 68%|█████████████████████████████████████████████████▊                       | 179166/262326 [10:39<04:56, 280.08it/s]


 68%|█████████████████████████████████████████████████▊                       | 179196/262326 [10:40<04:52, 283.73it/s]


 68%|█████████████████████████████████████████████████▉                       | 179232/262326 [10:40<04:43, 292.88it/s]


 68%|█████████████████████████████████████████████████▉                       | 179262/262326 [10:40<05:05, 271.45it/s]


 68%|█████████████████████████████████████████████████▉                       | 179291/262326 [10:40<05:05, 272.06it/s]


 68%|█████████████████████████████████████████████████▉                       | 179319/262326 [10:40<05:14, 263.55it/s]


 68%|█████████████████████████████████████████████████▉                       | 179346/262326 [10:40<05:16, 262.58it/s]


 68%|█████████████████████████████████████████████████▉                       | 179373/262326 [10:40<05:28, 252.43it/s]


 68%|█████████████████████████████████████████████████▉                       | 179401/262326 [10:40<05:46, 239.62it/s]


 68%|█████████████████████████████████████████████████▉                       | 179432/262326 [10:40<05:22, 256.66it/s]


 68%|█████████████████████████████████████████████████▉                       | 179459/262326 [10:41<05:26, 253.79it/s]


 68%|█████████████████████████████████████████████████▉                       | 179485/262326 [10:41<05:28, 252.37it/s]


 68%|█████████████████████████████████████████████████▉                       | 179511/262326 [10:41<05:26, 253.81it/s]


 68%|█████████████████████████████████████████████████▉                       | 179538/262326 [10:41<05:29, 251.40it/s]


 68%|█████████████████████████████████████████████████▉                       | 179565/262326 [10:41<05:23, 255.44it/s]


 68%|█████████████████████████████████████████████████▉                       | 179591/262326 [10:41<05:48, 237.54it/s]


 68%|█████████████████████████████████████████████████▉                       | 179616/262326 [10:41<05:46, 238.65it/s]


 68%|█████████████████████████████████████████████████▉                       | 179645/262326 [10:41<05:30, 250.22it/s]


 68%|█████████████████████████████████████████████████▉                       | 179673/262326 [10:41<05:21, 257.16it/s]


 69%|██████████████████████████████████████████████████                       | 179705/262326 [10:42<05:04, 271.37it/s]


 69%|██████████████████████████████████████████████████                       | 179736/262326 [10:42<04:54, 280.62it/s]


 69%|██████████████████████████████████████████████████                       | 179765/262326 [10:42<05:00, 274.75it/s]


 69%|██████████████████████████████████████████████████                       | 179796/262326 [10:42<04:55, 279.30it/s]


 69%|██████████████████████████████████████████████████                       | 179825/262326 [10:42<04:53, 281.38it/s]


 69%|██████████████████████████████████████████████████                       | 179855/262326 [10:42<04:49, 284.69it/s]


 69%|██████████████████████████████████████████████████                       | 179884/262326 [10:42<04:48, 286.20it/s]


 69%|██████████████████████████████████████████████████                       | 179913/262326 [10:42<04:47, 287.01it/s]


 69%|██████████████████████████████████████████████████                       | 179943/262326 [10:42<05:07, 267.49it/s]


 69%|██████████████████████████████████████████████████                       | 179972/262326 [10:43<05:02, 272.43it/s]


 69%|██████████████████████████████████████████████████                       | 180001/262326 [10:43<05:11, 264.38it/s]


 69%|██████████████████████████████████████████████████                       | 180029/262326 [10:43<05:07, 267.55it/s]


 69%|██████████████████████████████████████████████████                       | 180056/262326 [10:43<05:41, 240.99it/s]


 69%|██████████████████████████████████████████████████                       | 180084/262326 [10:43<05:30, 248.65it/s]


 69%|██████████████████████████████████████████████████                       | 180112/262326 [10:43<05:20, 256.78it/s]


 69%|██████████████████████████████████████████████████▏                      | 180147/262326 [10:43<05:09, 265.30it/s]


 69%|██████████████████████████████████████████████████▏                      | 180177/262326 [10:43<05:00, 273.56it/s]


 69%|██████████████████████████████████████████████████▏                      | 180205/262326 [10:43<05:17, 258.90it/s]


 69%|██████████████████████████████████████████████████▏                      | 180233/262326 [10:44<05:13, 261.95it/s]


 69%|██████████████████████████████████████████████████▏                      | 180260/262326 [10:44<05:17, 258.09it/s]


 69%|██████████████████████████████████████████████████▏                      | 180287/262326 [10:44<05:31, 247.39it/s]


 69%|██████████████████████████████████████████████████▏                      | 180315/262326 [10:44<05:20, 255.89it/s]


 69%|██████████████████████████████████████████████████▏                      | 180341/262326 [10:44<05:29, 248.53it/s]


 69%|██████████████████████████████████████████████████▏                      | 180371/262326 [10:44<05:13, 261.82it/s]


 69%|██████████████████████████████████████████████████▏                      | 180400/262326 [10:44<05:05, 268.32it/s]


 69%|██████████████████████████████████████████████████▏                      | 180432/262326 [10:44<05:02, 270.87it/s]


 69%|██████████████████████████████████████████████████▏                      | 180463/262326 [10:44<05:04, 269.09it/s]


 69%|██████████████████████████████████████████████████▏                      | 180500/262326 [10:45<04:49, 283.03it/s]


 69%|██████████████████████████████████████████████████▏                      | 180529/262326 [10:45<04:47, 284.16it/s]


 69%|██████████████████████████████████████████████████▏                      | 180558/262326 [10:45<04:57, 275.01it/s]


 69%|██████████████████████████████████████████████████▎                      | 180589/262326 [10:45<04:49, 281.93it/s]


 69%|██████████████████████████████████████████████████▎                      | 180618/262326 [10:45<04:47, 284.18it/s]


 69%|██████████████████████████████████████████████████▎                      | 180647/262326 [10:45<04:57, 275.00it/s]


 69%|██████████████████████████████████████████████████▎                      | 180675/262326 [10:45<05:02, 269.59it/s]


 69%|██████████████████████████████████████████████████▎                      | 180707/262326 [10:45<04:56, 275.37it/s]


 69%|██████████████████████████████████████████████████▎                      | 180737/262326 [10:45<04:50, 281.32it/s]


 69%|██████████████████████████████████████████████████▎                      | 180766/262326 [10:45<04:48, 282.41it/s]


 69%|██████████████████████████████████████████████████▎                      | 180799/262326 [10:46<04:46, 284.07it/s]


 69%|██████████████████████████████████████████████████▎                      | 180828/262326 [10:46<04:46, 284.94it/s]


 69%|██████████████████████████████████████████████████▎                      | 180858/262326 [10:46<04:43, 287.41it/s]


 69%|██████████████████████████████████████████████████▎                      | 180893/262326 [10:46<04:37, 292.95it/s]


 69%|██████████████████████████████████████████████████▎                      | 180923/262326 [10:46<04:36, 294.68it/s]


 69%|██████████████████████████████████████████████████▎                      | 180953/262326 [10:46<04:34, 296.00it/s]


 69%|██████████████████████████████████████████████████▎                      | 180983/262326 [10:46<04:34, 296.28it/s]


 69%|██████████████████████████████████████████████████▎                      | 181016/262326 [10:46<04:36, 293.71it/s]


 69%|██████████████████████████████████████████████████▍                      | 181046/262326 [10:46<04:35, 295.20it/s]


 69%|██████████████████████████████████████████████████▍                      | 181081/262326 [10:47<04:33, 297.59it/s]


 69%|██████████████████████████████████████████████████▍                      | 181113/262326 [10:47<04:29, 301.31it/s]


 69%|██████████████████████████████████████████████████▍                      | 181144/262326 [10:47<05:31, 244.64it/s]


 69%|██████████████████████████████████████████████████▍                      | 181171/262326 [10:47<05:22, 251.29it/s]


 69%|██████████████████████████████████████████████████▍                      | 181201/262326 [10:47<05:07, 264.01it/s]


 69%|██████████████████████████████████████████████████▍                      | 181235/262326 [10:47<04:56, 273.06it/s]


 69%|██████████████████████████████████████████████████▍                      | 181266/262326 [10:47<04:47, 282.23it/s]


 69%|██████████████████████████████████████████████████▍                      | 181296/262326 [10:47<04:51, 278.34it/s]


 69%|██████████████████████████████████████████████████▍                      | 181327/262326 [10:47<04:43, 286.04it/s]


 69%|██████████████████████████████████████████████████▍                      | 181358/262326 [10:48<04:36, 292.79it/s]


 69%|██████████████████████████████████████████████████▍                      | 181391/262326 [10:48<04:27, 302.38it/s]


 69%|██████████████████████████████████████████████████▍                      | 181425/262326 [10:48<04:19, 311.46it/s]


 69%|██████████████████████████████████████████████████▍                      | 181458/262326 [10:48<04:16, 315.58it/s]


 69%|██████████████████████████████████████████████████▌                      | 181490/262326 [10:48<04:40, 288.26it/s]


 69%|██████████████████████████████████████████████████▌                      | 181520/262326 [10:48<04:39, 289.47it/s]


 69%|██████████████████████████████████████████████████▌                      | 181550/262326 [10:48<04:48, 280.08it/s]


 69%|██████████████████████████████████████████████████▌                      | 181587/262326 [10:48<04:37, 290.93it/s]


 69%|██████████████████████████████████████████████████▌                      | 181618/262326 [10:48<04:32, 296.25it/s]


 69%|██████████████████████████████████████████████████▌                      | 181648/262326 [10:49<04:32, 295.76it/s]


 69%|██████████████████████████████████████████████████▌                      | 181685/262326 [10:49<04:26, 302.91it/s]


 69%|██████████████████████████████████████████████████▌                      | 181716/262326 [10:49<04:34, 293.33it/s]


 69%|██████████████████████████████████████████████████▌                      | 181747/262326 [10:49<04:33, 294.60it/s]


 69%|██████████████████████████████████████████████████▌                      | 181777/262326 [10:49<04:33, 294.69it/s]


 69%|██████████████████████████████████████████████████▌                      | 181807/262326 [10:49<04:34, 293.11it/s]


 69%|██████████████████████████████████████████████████▌                      | 181841/262326 [10:49<04:43, 284.34it/s]


 69%|██████████████████████████████████████████████████▌                      | 181871/262326 [10:49<04:38, 288.69it/s]


 69%|██████████████████████████████████████████████████▌                      | 181901/262326 [10:49<04:35, 291.51it/s]


 69%|██████████████████████████████████████████████████▋                      | 181931/262326 [10:49<04:34, 293.09it/s]


 69%|██████████████████████████████████████████████████▋                      | 181966/262326 [10:50<04:31, 296.02it/s]


 69%|██████████████████████████████████████████████████▋                      | 181997/262326 [10:50<04:28, 299.71it/s]


 69%|██████████████████████████████████████████████████▋                      | 182028/262326 [10:50<04:36, 290.36it/s]


 69%|██████████████████████████████████████████████████▋                      | 182058/262326 [10:50<04:44, 281.73it/s]


 69%|██████████████████████████████████████████████████▋                      | 182089/262326 [10:50<04:42, 284.37it/s]


 69%|██████████████████████████████████████████████████▋                      | 182121/262326 [10:50<04:43, 282.52it/s]


 69%|██████████████████████████████████████████████████▋                      | 182158/262326 [10:50<04:33, 293.15it/s]


 69%|██████████████████████████████████████████████████▋                      | 182189/262326 [10:50<04:30, 296.05it/s]


 69%|██████████████████████████████████████████████████▋                      | 182220/262326 [10:50<04:27, 298.96it/s]


 69%|██████████████████████████████████████████████████▋                      | 182250/262326 [10:51<04:28, 298.46it/s]


 69%|██████████████████████████████████████████████████▋                      | 182285/262326 [10:51<04:34, 291.82it/s]


 69%|██████████████████████████████████████████████████▋                      | 182315/262326 [10:51<04:34, 291.68it/s]


 70%|██████████████████████████████████████████████████▋                      | 182345/262326 [10:51<04:36, 288.78it/s]


 70%|██████████████████████████████████████████████████▊                      | 182375/262326 [10:51<04:44, 281.11it/s]


 70%|██████████████████████████████████████████████████▊                      | 182405/262326 [10:51<04:40, 285.31it/s]


 70%|██████████████████████████████████████████████████▊                      | 182442/262326 [10:51<04:30, 294.98it/s]


 70%|██████████████████████████████████████████████████▊                      | 182473/262326 [10:51<04:27, 298.48it/s]


 70%|██████████████████████████████████████████████████▊                      | 182503/262326 [10:51<04:32, 292.54it/s]


 70%|██████████████████████████████████████████████████▊                      | 182537/262326 [10:52<04:27, 297.74it/s]


 70%|██████████████████████████████████████████████████▊                      | 182567/262326 [10:52<04:27, 298.37it/s]


 70%|██████████████████████████████████████████████████▊                      | 182597/262326 [10:52<04:37, 287.71it/s]


 70%|██████████████████████████████████████████████████▊                      | 182628/262326 [10:52<04:33, 291.15it/s]


 70%|██████████████████████████████████████████████████▊                      | 182659/262326 [10:52<04:28, 296.51it/s]


 70%|██████████████████████████████████████████████████▊                      | 182689/262326 [10:52<04:29, 295.79it/s]


 70%|██████████████████████████████████████████████████▊                      | 182722/262326 [10:52<04:31, 293.16it/s]


 70%|██████████████████████████████████████████████████▊                      | 182752/262326 [10:52<06:00, 220.63it/s]


 70%|██████████████████████████████████████████████████▊                      | 182783/262326 [10:53<05:31, 239.61it/s]


 70%|██████████████████████████████████████████████████▉                      | 182820/262326 [10:53<05:06, 259.56it/s]


 70%|██████████████████████████████████████████████████▉                      | 182849/262326 [10:53<05:00, 264.41it/s]


 70%|██████████████████████████████████████████████████▉                      | 182882/262326 [10:53<04:51, 272.84it/s]


 70%|██████████████████████████████████████████████████▉                      | 182911/262326 [10:53<04:46, 276.98it/s]


 70%|██████████████████████████████████████████████████▉                      | 182940/262326 [10:53<04:58, 265.84it/s]


 70%|██████████████████████████████████████████████████▉                      | 182969/262326 [10:53<04:51, 272.17it/s]


 70%|██████████████████████████████████████████████████▉                      | 183004/262326 [10:53<04:41, 282.07it/s]


 70%|██████████████████████████████████████████████████▉                      | 183035/262326 [10:53<04:33, 289.51it/s]


 70%|██████████████████████████████████████████████████▉                      | 183065/262326 [10:53<04:31, 291.97it/s]


 70%|██████████████████████████████████████████████████▉                      | 183102/262326 [10:54<04:24, 300.06it/s]


 70%|██████████████████████████████████████████████████▉                      | 183133/262326 [10:54<04:21, 302.94it/s]


 70%|██████████████████████████████████████████████████▉                      | 183164/262326 [10:54<04:21, 302.71it/s]


 70%|██████████████████████████████████████████████████▉                      | 183200/262326 [10:54<04:19, 305.38it/s]


 70%|██████████████████████████████████████████████████▉                      | 183236/262326 [10:54<04:16, 307.84it/s]


 70%|██████████████████████████████████████████████████▉                      | 183267/262326 [10:54<04:16, 307.63it/s]


 70%|███████████████████████████████████████████████████                      | 183304/262326 [10:54<04:23, 299.52it/s]


 70%|███████████████████████████████████████████████████                      | 183336/262326 [10:54<04:21, 302.05it/s]


 70%|███████████████████████████████████████████████████                      | 183367/262326 [10:54<04:19, 304.23it/s]


 70%|███████████████████████████████████████████████████                      | 183400/262326 [10:55<04:24, 298.59it/s]


 70%|███████████████████████████████████████████████████                      | 183430/262326 [10:55<04:23, 298.85it/s]


 70%|███████████████████████████████████████████████████                      | 183460/262326 [10:55<04:25, 297.08it/s]


 70%|███████████████████████████████████████████████████                      | 183490/262326 [10:55<04:24, 297.53it/s]


 70%|███████████████████████████████████████████████████                      | 183525/262326 [10:55<04:21, 301.15it/s]


 70%|███████████████████████████████████████████████████                      | 183556/262326 [10:55<04:21, 301.69it/s]


 70%|███████████████████████████████████████████████████                      | 183587/262326 [10:55<04:19, 302.87it/s]


 70%|███████████████████████████████████████████████████                      | 183618/262326 [10:55<04:18, 304.75it/s]


 70%|███████████████████████████████████████████████████                      | 183653/262326 [10:55<04:29, 292.00it/s]


 70%|███████████████████████████████████████████████████                      | 183683/262326 [10:56<04:27, 293.63it/s]


 70%|███████████████████████████████████████████████████▏                     | 183719/262326 [10:56<04:22, 299.09it/s]


 70%|███████████████████████████████████████████████████▏                     | 183749/262326 [10:56<04:23, 298.74it/s]


 70%|███████████████████████████████████████████████████▏                     | 183782/262326 [10:56<04:25, 295.28it/s]


 70%|███████████████████████████████████████████████████▏                     | 183812/262326 [10:56<04:26, 294.22it/s]


 70%|███████████████████████████████████████████████████▏                     | 183842/262326 [10:56<04:49, 270.89it/s]


 70%|███████████████████████████████████████████████████▏                     | 183871/262326 [10:56<04:46, 273.80it/s]


 70%|███████████████████████████████████████████████████▏                     | 183905/262326 [10:56<04:40, 279.80it/s]


 70%|███████████████████████████████████████████████████▏                     | 183935/262326 [10:56<04:34, 285.13it/s]


 70%|███████████████████████████████████████████████████▏                     | 183969/262326 [10:57<04:31, 288.45it/s]


 70%|███████████████████████████████████████████████████▏                     | 184000/262326 [10:57<04:28, 291.38it/s]


 70%|███████████████████████████████████████████████████▏                     | 184030/262326 [10:57<04:37, 281.95it/s]


 70%|███████████████████████████████████████████████████▏                     | 184059/262326 [10:57<04:35, 284.17it/s]


 70%|███████████████████████████████████████████████████▏                     | 184088/262326 [10:57<04:35, 283.99it/s]


 70%|███████████████████████████████████████████████████▏                     | 184117/262326 [10:57<04:46, 272.90it/s]


 70%|███████████████████████████████████████████████████▏                     | 184145/262326 [10:57<04:44, 274.79it/s]


 70%|███████████████████████████████████████████████████▎                     | 184177/262326 [10:57<04:42, 276.16it/s]


 70%|███████████████████████████████████████████████████▎                     | 184206/262326 [10:57<04:41, 277.97it/s]


 70%|███████████████████████████████████████████████████▎                     | 184241/262326 [10:57<04:33, 285.40it/s]


 70%|███████████████████████████████████████████████████▎                     | 184270/262326 [10:58<04:33, 285.86it/s]


 70%|███████████████████████████████████████████████████▎                     | 184301/262326 [10:58<04:26, 292.65it/s]


 70%|███████████████████████████████████████████████████▎                     | 184331/262326 [10:58<04:29, 289.79it/s]


 70%|███████████████████████████████████████████████████▎                     | 184361/262326 [10:58<05:01, 258.36it/s]


 70%|███████████████████████████████████████████████████▎                     | 184395/262326 [10:58<04:50, 268.44it/s]


 70%|███████████████████████████████████████████████████▎                     | 184423/262326 [10:58<04:47, 271.18it/s]


 70%|███████████████████████████████████████████████████▎                     | 184458/262326 [10:58<04:37, 280.31it/s]


 70%|███████████████████████████████████████████████████▎                     | 184489/262326 [10:58<04:32, 286.16it/s]


 70%|███████████████████████████████████████████████████▎                     | 184518/262326 [10:58<04:42, 275.63it/s]


 70%|███████████████████████████████████████████████████▎                     | 184547/262326 [10:59<04:38, 279.31it/s]


 70%|███████████████████████████████████████████████████▎                     | 184576/262326 [10:59<05:00, 258.34it/s]


 70%|███████████████████████████████████████████████████▎                     | 184603/262326 [10:59<05:13, 247.83it/s]


 70%|███████████████████████████████████████████████████▍                     | 184635/262326 [10:59<05:03, 256.01it/s]


 70%|███████████████████████████████████████████████████▍                     | 184665/262326 [10:59<04:50, 267.03it/s]


 70%|███████████████████████████████████████████████████▍                     | 184699/262326 [10:59<04:42, 274.63it/s]


 70%|███████████████████████████████████████████████████▍                     | 184727/262326 [10:59<04:41, 275.71it/s]


 70%|███████████████████████████████████████████████████▍                     | 184756/262326 [10:59<04:38, 278.06it/s]


 70%|███████████████████████████████████████████████████▍                     | 184790/262326 [10:59<04:33, 283.52it/s]


 70%|███████████████████████████████████████████████████▍                     | 184819/262326 [11:00<04:45, 271.92it/s]


 70%|███████████████████████████████████████████████████▍                     | 184847/262326 [11:00<05:15, 245.23it/s]


 70%|███████████████████████████████████████████████████▍                     | 184880/262326 [11:00<04:58, 259.10it/s]


 70%|███████████████████████████████████████████████████▍                     | 184909/262326 [11:00<04:49, 267.27it/s]


 71%|███████████████████████████████████████████████████▍                     | 184943/262326 [11:00<04:41, 274.85it/s]


 71%|███████████████████████████████████████████████████▍                     | 184972/262326 [11:00<04:37, 278.81it/s]


 71%|███████████████████████████████████████████████████▍                     | 185001/262326 [11:00<04:48, 268.06it/s]


 71%|███████████████████████████████████████████████████▍                     | 185029/262326 [11:00<04:45, 270.74it/s]


 71%|███████████████████████████████████████████████████▍                     | 185057/262326 [11:01<04:54, 262.06it/s]


 71%|███████████████████████████████████████████████████▌                     | 185084/262326 [11:01<04:54, 261.99it/s]


 71%|███████████████████████████████████████████████████▌                     | 185111/262326 [11:01<05:28, 235.03it/s]


 71%|███████████████████████████████████████████████████▌                     | 185142/262326 [11:01<05:08, 250.46it/s]


 71%|███████████████████████████████████████████████████▌                     | 185168/262326 [11:01<05:04, 253.08it/s]


 71%|███████████████████████████████████████████████████▌                     | 185194/262326 [11:01<05:02, 254.85it/s]


 71%|███████████████████████████████████████████████████▌                     | 185222/262326 [11:01<04:54, 261.52it/s]


 71%|███████████████████████████████████████████████████▌                     | 185258/262326 [11:01<04:39, 275.80it/s]


 71%|███████████████████████████████████████████████████▌                     | 185286/262326 [11:01<05:18, 242.24it/s]


 71%|███████████████████████████████████████████████████▌                     | 185312/262326 [11:02<06:37, 193.86it/s]


 71%|███████████████████████████████████████████████████▌                     | 185343/262326 [11:02<05:54, 217.21it/s]


 71%|███████████████████████████████████████████████████▌                     | 185368/262326 [11:02<05:57, 215.41it/s]


 71%|███████████████████████████████████████████████████▌                     | 185398/262326 [11:02<05:29, 233.82it/s]


 71%|███████████████████████████████████████████████████▌                     | 185426/262326 [11:02<05:12, 245.89it/s]


 71%|███████████████████████████████████████████████████▌                     | 185458/262326 [11:02<05:01, 254.67it/s]


 71%|███████████████████████████████████████████████████▌                     | 185489/262326 [11:02<04:47, 267.10it/s]


 71%|███████████████████████████████████████████████████▋                     | 185521/262326 [11:02<04:43, 270.68it/s]


 71%|███████████████████████████████████████████████████▋                     | 185551/262326 [11:02<04:36, 277.77it/s]


 71%|███████████████████████████████████████████████████▋                     | 185583/262326 [11:03<04:26, 288.35it/s]


 71%|███████████████████████████████████████████████████▋                     | 185613/262326 [11:03<04:34, 279.97it/s]


 71%|███████████████████████████████████████████████████▋                     | 185642/262326 [11:03<04:32, 281.29it/s]


 71%|███████████████████████████████████████████████████▋                     | 185671/262326 [11:03<04:43, 270.09it/s]


 71%|███████████████████████████████████████████████████▋                     | 185701/262326 [11:03<04:35, 278.29it/s]


 71%|███████████████████████████████████████████████████▋                     | 185735/262326 [11:03<04:30, 283.04it/s]


 71%|███████████████████████████████████████████████████▋                     | 185764/262326 [11:03<04:29, 284.21it/s]


 71%|███████████████████████████████████████████████████▋                     | 185794/262326 [11:03<04:26, 287.32it/s]


 71%|███████████████████████████████████████████████████▋                     | 185824/262326 [11:03<04:24, 289.14it/s]


 71%|███████████████████████████████████████████████████▋                     | 185853/262326 [11:04<05:14, 243.44it/s]


 71%|███████████████████████████████████████████████████▋                     | 185888/262326 [11:04<04:56, 257.42it/s]


 71%|███████████████████████████████████████████████████▋                     | 185915/262326 [11:04<04:53, 259.96it/s]


 71%|███████████████████████████████████████████████████▋                     | 185951/262326 [11:04<04:38, 273.75it/s]


 71%|███████████████████████████████████████████████████▊                     | 185986/262326 [11:04<04:30, 281.98it/s]


 71%|███████████████████████████████████████████████████▊                     | 186021/262326 [11:04<04:24, 288.14it/s]


 71%|███████████████████████████████████████████████████▊                     | 186051/262326 [11:04<04:22, 290.66it/s]


 71%|███████████████████████████████████████████████████▊                     | 186082/262326 [11:04<04:18, 294.60it/s]


 71%|███████████████████████████████████████████████████▊                     | 186112/262326 [11:04<04:17, 296.15it/s]


 71%|███████████████████████████████████████████████████▊                     | 186146/262326 [11:05<04:17, 295.84it/s]


 71%|███████████████████████████████████████████████████▊                     | 186176/262326 [11:05<04:17, 295.85it/s]


 71%|███████████████████████████████████████████████████▊                     | 186207/262326 [11:05<04:14, 298.80it/s]


 71%|███████████████████████████████████████████████████▊                     | 186242/262326 [11:05<04:12, 301.18it/s]


 71%|███████████████████████████████████████████████████▊                     | 186273/262326 [11:05<04:11, 302.79it/s]


 71%|███████████████████████████████████████████████████▊                     | 186304/262326 [11:05<04:09, 304.11it/s]


 71%|███████████████████████████████████████████████████▊                     | 186335/262326 [11:05<04:09, 304.73it/s]


 71%|███████████████████████████████████████████████████▊                     | 186366/262326 [11:05<04:08, 306.23it/s]


 71%|███████████████████████████████████████████████████▊                     | 186397/262326 [11:05<04:17, 294.86it/s]


 71%|███████████████████████████████████████████████████▉                     | 186427/262326 [11:06<04:28, 282.20it/s]


 71%|███████████████████████████████████████████████████▉                     | 186458/262326 [11:06<04:21, 289.58it/s]


 71%|███████████████████████████████████████████████████▉                     | 186488/262326 [11:06<04:22, 289.24it/s]


 71%|███████████████████████████████████████████████████▉                     | 186518/262326 [11:06<04:20, 290.80it/s]


 71%|███████████████████████████████████████████████████▉                     | 186548/262326 [11:06<04:21, 290.33it/s]


 71%|███████████████████████████████████████████████████▉                     | 186579/262326 [11:06<04:21, 290.01it/s]


 71%|███████████████████████████████████████████████████▉                     | 186610/262326 [11:06<04:17, 294.49it/s]


 71%|███████████████████████████████████████████████████▉                     | 186640/262326 [11:06<04:16, 295.56it/s]


 71%|███████████████████████████████████████████████████▉                     | 186674/262326 [11:06<04:15, 296.37it/s]


 71%|███████████████████████████████████████████████████▉                     | 186704/262326 [11:06<04:16, 294.52it/s]


 71%|███████████████████████████████████████████████████▉                     | 186737/262326 [11:07<04:18, 292.40it/s]


 71%|███████████████████████████████████████████████████▉                     | 186767/262326 [11:07<04:16, 294.43it/s]


 71%|███████████████████████████████████████████████████▉                     | 186797/262326 [11:07<04:15, 295.50it/s]


 71%|███████████████████████████████████████████████████▉                     | 186827/262326 [11:07<04:25, 284.08it/s]


 71%|███████████████████████████████████████████████████▉                     | 186856/262326 [11:07<04:25, 284.45it/s]


 71%|████████████████████████████████████████████████████                     | 186890/262326 [11:07<04:22, 287.50it/s]


 71%|████████████████████████████████████████████████████                     | 186920/262326 [11:07<04:20, 289.93it/s]


 71%|████████████████████████████████████████████████████                     | 186951/262326 [11:07<04:15, 295.07it/s]


 71%|████████████████████████████████████████████████████                     | 186981/262326 [11:07<04:20, 289.28it/s]


 71%|████████████████████████████████████████████████████                     | 187011/262326 [11:08<04:18, 290.92it/s]


 71%|████████████████████████████████████████████████████                     | 187041/262326 [11:08<04:21, 288.29it/s]


 71%|████████████████████████████████████████████████████                     | 187070/262326 [11:08<04:24, 284.36it/s]


 71%|████████████████████████████████████████████████████                     | 187104/262326 [11:08<04:18, 291.31it/s]


 71%|████████████████████████████████████████████████████                     | 187134/262326 [11:08<04:17, 292.33it/s]


 71%|████████████████████████████████████████████████████                     | 187164/262326 [11:08<04:15, 294.15it/s]


 71%|████████████████████████████████████████████████████                     | 187194/262326 [11:08<04:14, 294.91it/s]


 71%|████████████████████████████████████████████████████                     | 187224/262326 [11:08<04:13, 295.73it/s]


 71%|████████████████████████████████████████████████████                     | 187261/262326 [11:08<04:07, 303.73it/s]


 71%|████████████████████████████████████████████████████                     | 187293/262326 [11:08<04:13, 295.58it/s]


 71%|████████████████████████████████████████████████████▏                    | 187324/262326 [11:09<04:10, 299.02it/s]


 71%|████████████████████████████████████████████████████▏                    | 187355/262326 [11:09<04:08, 302.13it/s]


 71%|████████████████████████████████████████████████████▏                    | 187386/262326 [11:09<04:07, 302.27it/s]


 71%|████████████████████████████████████████████████████▏                    | 187422/262326 [11:09<04:04, 306.40it/s]


 71%|████████████████████████████████████████████████████▏                    | 187453/262326 [11:09<04:04, 306.57it/s]


 71%|████████████████████████████████████████████████████▏                    | 187484/262326 [11:09<04:10, 298.85it/s]


 71%|████████████████████████████████████████████████████▏                    | 187518/262326 [11:09<04:06, 303.36it/s]


 71%|████████████████████████████████████████████████████▏                    | 187554/262326 [11:09<04:04, 306.21it/s]


 72%|████████████████████████████████████████████████████▏                    | 187585/262326 [11:09<04:03, 306.74it/s]


 72%|████████████████████████████████████████████████████▏                    | 187620/262326 [11:10<04:03, 306.27it/s]


 72%|████████████████████████████████████████████████████▏                    | 187652/262326 [11:10<04:03, 306.60it/s]


 72%|████████████████████████████████████████████████████▏                    | 187683/262326 [11:10<04:06, 302.56it/s]


 72%|████████████████████████████████████████████████████▏                    | 187717/262326 [11:10<04:06, 303.26it/s]


 72%|████████████████████████████████████████████████████▏                    | 187751/262326 [11:10<04:06, 301.95it/s]


 72%|████████████████████████████████████████████████████▎                    | 187783/262326 [11:10<04:04, 304.59it/s]


 72%|████████████████████████████████████████████████████▎                    | 187818/262326 [11:10<04:05, 304.07it/s]


 72%|████████████████████████████████████████████████████▎                    | 187855/262326 [11:10<04:01, 308.86it/s]


 72%|████████████████████████████████████████████████████▎                    | 187886/262326 [11:10<04:02, 307.06it/s]


 72%|████████████████████████████████████████████████████▎                    | 187917/262326 [11:11<04:01, 307.60it/s]


 72%|████████████████████████████████████████████████████▎                    | 187948/262326 [11:11<04:05, 303.15it/s]


 72%|████████████████████████████████████████████████████▎                    | 187979/262326 [11:11<04:04, 303.65it/s]


 72%|████████████████████████████████████████████████████▎                    | 188011/262326 [11:11<04:06, 301.13it/s]


 72%|████████████████████████████████████████████████████▎                    | 188046/262326 [11:11<04:05, 302.03it/s]


 72%|████████████████████████████████████████████████████▎                    | 188077/262326 [11:11<04:05, 302.68it/s]


 72%|████████████████████████████████████████████████████▎                    | 188108/262326 [11:11<04:04, 304.14it/s]


 72%|████████████████████████████████████████████████████▎                    | 188139/262326 [11:11<04:15, 290.89it/s]


 72%|████████████████████████████████████████████████████▎                    | 188169/262326 [11:11<04:12, 293.39it/s]


 72%|████████████████████████████████████████████████████▎                    | 188199/262326 [11:11<04:11, 295.23it/s]


 72%|████████████████████████████████████████████████████▍                    | 188233/262326 [11:12<04:11, 295.15it/s]


 72%|████████████████████████████████████████████████████▍                    | 188265/262326 [11:12<04:06, 300.85it/s]


 72%|████████████████████████████████████████████████████▍                    | 188296/262326 [11:12<04:07, 298.78it/s]


 72%|████████████████████████████████████████████████████▍                    | 188328/262326 [11:12<04:10, 295.62it/s]


 72%|████████████████████████████████████████████████████▍                    | 188364/262326 [11:12<04:06, 300.46it/s]


 72%|████████████████████████████████████████████████████▍                    | 188395/262326 [11:12<04:05, 300.84it/s]


 72%|████████████████████████████████████████████████████▍                    | 188426/262326 [11:12<04:11, 293.56it/s]


 72%|████████████████████████████████████████████████████▍                    | 188457/262326 [11:12<04:09, 295.98it/s]


 72%|████████████████████████████████████████████████████▍                    | 188487/262326 [11:12<04:09, 295.89it/s]


 72%|████████████████████████████████████████████████████▍                    | 188517/262326 [11:13<04:08, 296.73it/s]


 72%|████████████████████████████████████████████████████▍                    | 188549/262326 [11:13<04:13, 290.47it/s]


 72%|████████████████████████████████████████████████████▍                    | 188579/262326 [11:13<04:13, 291.13it/s]


 72%|████████████████████████████████████████████████████▍                    | 188613/262326 [11:13<04:11, 293.14it/s]


 72%|████████████████████████████████████████████████████▍                    | 188643/262326 [11:13<04:10, 294.15it/s]


 72%|████████████████████████████████████████████████████▌                    | 188673/262326 [11:13<04:16, 286.80it/s]


 72%|████████████████████████████████████████████████████▌                    | 188705/262326 [11:13<04:13, 290.98it/s]


 72%|████████████████████████████████████████████████████▌                    | 188737/262326 [11:13<04:07, 297.83it/s]


 72%|████████████████████████████████████████████████████▌                    | 188767/262326 [11:13<04:06, 298.40it/s]


 72%|████████████████████████████████████████████████████▌                    | 188797/262326 [11:14<04:17, 285.55it/s]


 72%|████████████████████████████████████████████████████▌                    | 188832/262326 [11:14<04:12, 291.03it/s]


 72%|████████████████████████████████████████████████████▌                    | 188862/262326 [11:14<04:24, 277.77it/s]


 72%|████████████████████████████████████████████████████▌                    | 188890/262326 [11:14<04:26, 275.37it/s]


 72%|████████████████████████████████████████████████████▌                    | 188921/262326 [11:14<04:26, 275.73it/s]


 72%|████████████████████████████████████████████████████▌                    | 188952/262326 [11:14<04:34, 267.24it/s]


 72%|████████████████████████████████████████████████████▌                    | 188982/262326 [11:14<04:32, 269.37it/s]


 72%|████████████████████████████████████████████████████▌                    | 189015/262326 [11:14<04:27, 274.33it/s]


 72%|████████████████████████████████████████████████████▌                    | 189045/262326 [11:14<04:21, 280.21it/s]


 72%|████████████████████████████████████████████████████▌                    | 189074/262326 [11:15<04:26, 274.51it/s]


 72%|████████████████████████████████████████████████████▌                    | 189106/262326 [11:15<04:19, 282.10it/s]


 72%|████████████████████████████████████████████████████▋                    | 189135/262326 [11:15<04:50, 251.55it/s]


 72%|████████████████████████████████████████████████████▋                    | 189163/262326 [11:15<04:46, 255.56it/s]


 72%|████████████████████████████████████████████████████▋                    | 189193/262326 [11:15<04:34, 266.51it/s]


 72%|████████████████████████████████████████████████████▋                    | 189223/262326 [11:15<04:25, 275.17it/s]


 72%|████████████████████████████████████████████████████▋                    | 189258/262326 [11:15<04:17, 283.91it/s]


 72%|████████████████████████████████████████████████████▋                    | 189289/262326 [11:15<04:11, 290.23it/s]


 72%|████████████████████████████████████████████████████▋                    | 189319/262326 [11:15<04:09, 292.76it/s]


 72%|████████████████████████████████████████████████████▋                    | 189352/262326 [11:16<04:12, 288.81it/s]


 72%|████████████████████████████████████████████████████▋                    | 189389/262326 [11:16<04:04, 298.83it/s]


 72%|████████████████████████████████████████████████████▋                    | 189420/262326 [11:16<04:10, 291.59it/s]


 72%|████████████████████████████████████████████████████▋                    | 189450/262326 [11:16<04:12, 288.52it/s]


 72%|████████████████████████████████████████████████████▋                    | 189481/262326 [11:16<04:09, 292.21it/s]


 72%|████████████████████████████████████████████████████▋                    | 189512/262326 [11:16<04:06, 295.01it/s]


 72%|████████████████████████████████████████████████████▋                    | 189542/262326 [11:16<04:07, 294.12it/s]


 72%|████████████████████████████████████████████████████▊                    | 189574/262326 [11:16<04:02, 300.06it/s]


 72%|████████████████████████████████████████████████████▊                    | 189605/262326 [11:16<04:01, 301.43it/s]


 72%|████████████████████████████████████████████████████▊                    | 189636/262326 [11:16<04:05, 296.38it/s]


 72%|████████████████████████████████████████████████████▊                    | 189666/262326 [11:17<04:05, 295.68it/s]


 72%|████████████████████████████████████████████████████▊                    | 189697/262326 [11:17<04:03, 298.31it/s]


 72%|████████████████████████████████████████████████████▊                    | 189727/262326 [11:17<04:19, 280.00it/s]


 72%|████████████████████████████████████████████████████▊                    | 189756/262326 [11:17<04:18, 280.67it/s]


 72%|████████████████████████████████████████████████████▊                    | 189787/262326 [11:17<04:12, 287.66it/s]


 72%|████████████████████████████████████████████████████▊                    | 189819/262326 [11:17<04:06, 294.17it/s]


 72%|████████████████████████████████████████████████████▊                    | 189850/262326 [11:17<04:02, 298.38it/s]


 72%|████████████████████████████████████████████████████▊                    | 189880/262326 [11:17<04:17, 281.52it/s]


 72%|████████████████████████████████████████████████████▊                    | 189909/262326 [11:17<04:24, 273.51it/s]


 72%|████████████████████████████████████████████████████▊                    | 189939/262326 [11:18<04:18, 279.58it/s]


 72%|████████████████████████████████████████████████████▊                    | 189968/262326 [11:18<04:24, 273.51it/s]


 72%|████████████████████████████████████████████████████▊                    | 189996/262326 [11:18<04:33, 263.98it/s]


 72%|████████████████████████████████████████████████████▉                    | 190024/262326 [11:18<04:31, 266.50it/s]


 72%|████████████████████████████████████████████████████▉                    | 190054/262326 [11:18<04:22, 275.61it/s]


 72%|████████████████████████████████████████████████████▉                    | 190083/262326 [11:18<04:29, 268.10it/s]


 72%|████████████████████████████████████████████████████▉                    | 190114/262326 [11:18<04:19, 278.47it/s]


 72%|████████████████████████████████████████████████████▉                    | 190150/262326 [11:18<04:10, 287.63it/s]


 72%|████████████████████████████████████████████████████▉                    | 190179/262326 [11:18<04:11, 286.54it/s]


 73%|████████████████████████████████████████████████████▉                    | 190208/262326 [11:19<04:21, 275.33it/s]


 73%|████████████████████████████████████████████████████▉                    | 190238/262326 [11:19<04:16, 281.01it/s]


 73%|████████████████████████████████████████████████████▉                    | 190267/262326 [11:19<04:15, 282.42it/s]


 73%|████████████████████████████████████████████████████▉                    | 190301/262326 [11:19<04:11, 286.21it/s]


 73%|████████████████████████████████████████████████████▉                    | 190330/262326 [11:19<04:10, 287.03it/s]


 73%|████████████████████████████████████████████████████▉                    | 190362/262326 [11:19<04:23, 272.86it/s]


 73%|████████████████████████████████████████████████████▉                    | 190390/262326 [11:19<04:23, 272.74it/s]


 73%|████████████████████████████████████████████████████▉                    | 190419/262326 [11:19<04:19, 277.62it/s]


 73%|████████████████████████████████████████████████████▉                    | 190450/262326 [11:19<04:10, 286.39it/s]


 73%|█████████████████████████████████████████████████████                    | 190479/262326 [11:19<04:09, 287.44it/s]


 73%|█████████████████████████████████████████████████████                    | 190508/262326 [11:20<04:10, 287.10it/s]


 73%|█████████████████████████████████████████████████████                    | 190541/262326 [11:20<04:10, 286.80it/s]


 73%|█████████████████████████████████████████████████████                    | 190570/262326 [11:20<04:11, 285.22it/s]


 73%|█████████████████████████████████████████████████████                    | 190605/262326 [11:20<04:05, 292.07it/s]


 73%|█████████████████████████████████████████████████████                    | 190635/262326 [11:20<04:04, 293.63it/s]


 73%|█████████████████████████████████████████████████████                    | 190665/262326 [11:20<04:04, 293.39it/s]


 73%|█████████████████████████████████████████████████████                    | 190695/262326 [11:20<04:12, 283.41it/s]


 73%|█████████████████████████████████████████████████████                    | 190724/262326 [11:20<04:17, 278.30it/s]


 73%|█████████████████████████████████████████████████████                    | 190754/262326 [11:20<04:17, 277.78it/s]


 73%|█████████████████████████████████████████████████████                    | 190790/262326 [11:21<04:18, 276.94it/s]


 73%|█████████████████████████████████████████████████████                    | 190821/262326 [11:21<04:11, 284.34it/s]


 73%|█████████████████████████████████████████████████████                    | 190851/262326 [11:21<04:08, 287.24it/s]


 73%|█████████████████████████████████████████████████████                    | 190885/262326 [11:21<04:06, 290.36it/s]


 73%|█████████████████████████████████████████████████████▏                   | 190915/262326 [11:21<04:04, 292.48it/s]


 73%|█████████████████████████████████████████████████████▏                   | 190949/262326 [11:21<04:03, 293.44it/s]


 73%|█████████████████████████████████████████████████████▏                   | 190979/262326 [11:21<04:02, 293.63it/s]


 73%|█████████████████████████████████████████████████████▏                   | 191009/262326 [11:21<04:02, 293.89it/s]


 73%|█████████████████████████████████████████████████████▏                   | 191044/262326 [11:21<03:59, 297.61it/s]


 73%|█████████████████████████████████████████████████████▏                   | 191074/262326 [11:22<04:00, 296.82it/s]


 73%|█████████████████████████████████████████████████████▏                   | 191104/262326 [11:22<03:59, 297.57it/s]


 73%|█████████████████████████████████████████████████████▏                   | 191134/262326 [11:22<04:06, 288.44it/s]


 73%|█████████████████████████████████████████████████████▏                   | 191164/262326 [11:22<04:07, 288.05it/s]


 73%|█████████████████████████████████████████████████████▏                   | 191193/262326 [11:22<05:06, 232.11it/s]


 73%|█████████████████████████████████████████████████████▏                   | 191218/262326 [11:22<05:03, 234.52it/s]


 73%|█████████████████████████████████████████████████████▏                   | 191248/262326 [11:22<04:44, 250.27it/s]


 73%|█████████████████████████████████████████████████████▏                   | 191282/262326 [11:22<04:30, 262.59it/s]


 73%|█████████████████████████████████████████████████████▏                   | 191316/262326 [11:22<04:21, 271.84it/s]


 73%|█████████████████████████████████████████████████████▏                   | 191345/262326 [11:23<04:16, 276.23it/s]


 73%|█████████████████████████████████████████████████████▎                   | 191375/262326 [11:23<04:12, 280.79it/s]


 73%|█████████████████████████████████████████████████████▎                   | 191405/262326 [11:23<04:11, 281.68it/s]


 73%|█████████████████████████████████████████████████████▎                   | 191438/262326 [11:23<04:05, 288.34it/s]


 73%|█████████████████████████████████████████████████████▎                   | 191468/262326 [11:23<04:03, 291.50it/s]


 73%|█████████████████████████████████████████████████████▎                   | 191498/262326 [11:23<04:12, 280.70it/s]


 73%|█████████████████████████████████████████████████████▎                   | 191527/262326 [11:23<07:02, 167.61it/s]


 73%|█████████████████████████████████████████████████████▎                   | 191554/262326 [11:24<06:16, 187.96it/s]


 73%|█████████████████████████████████████████████████████▎                   | 191589/262326 [11:24<05:31, 213.17it/s]


 73%|█████████████████████████████████████████████████████▎                   | 191616/262326 [11:24<05:13, 225.40it/s]


 73%|█████████████████████████████████████████████████████▎                   | 191649/262326 [11:24<04:51, 242.64it/s]


 73%|█████████████████████████████████████████████████████▎                   | 191678/262326 [11:24<04:38, 254.12it/s]


 73%|█████████████████████████████████████████████████████▎                   | 191712/262326 [11:24<04:26, 265.15it/s]


 73%|█████████████████████████████████████████████████████▎                   | 191741/262326 [11:24<04:20, 271.34it/s]


 73%|█████████████████████████████████████████████████████▎                   | 191771/262326 [11:24<04:13, 278.78it/s]


 73%|█████████████████████████████████████████████████████▎                   | 191800/262326 [11:24<04:10, 281.28it/s]


 73%|█████████████████████████████████████████████████████▍                   | 191832/262326 [11:24<04:11, 280.83it/s]


 73%|█████████████████████████████████████████████████████▍                   | 191863/262326 [11:25<04:05, 287.03it/s]


 73%|█████████████████████████████████████████████████████▍                   | 191898/262326 [11:25<04:00, 292.42it/s]


 73%|█████████████████████████████████████████████████████▍                   | 191930/262326 [11:25<04:12, 279.02it/s]


 73%|█████████████████████████████████████████████████████▍                   | 191963/262326 [11:25<04:05, 286.98it/s]


 73%|█████████████████████████████████████████████████████▍                   | 191993/262326 [11:25<04:03, 289.43it/s]


 73%|█████████████████████████████████████████████████████▍                   | 192023/262326 [11:25<04:03, 289.10it/s]


 73%|█████████████████████████████████████████████████████▍                   | 192058/262326 [11:25<03:56, 296.67it/s]


 73%|█████████████████████████████████████████████████████▍                   | 192089/262326 [11:25<04:05, 286.20it/s]


 73%|█████████████████████████████████████████████████████▍                   | 192119/262326 [11:25<04:02, 289.64it/s]


 73%|█████████████████████████████████████████████████████▍                   | 192154/262326 [11:26<03:58, 293.65it/s]


 73%|█████████████████████████████████████████████████████▍                   | 192184/262326 [11:26<03:58, 293.85it/s]


 73%|█████████████████████████████████████████████████████▍                   | 192214/262326 [11:26<04:05, 285.75it/s]


 73%|█████████████████████████████████████████████████████▍                   | 192243/262326 [11:26<05:09, 226.56it/s]


 73%|█████████████████████████████████████████████████████▌                   | 192268/262326 [11:26<05:00, 232.78it/s]


 73%|█████████████████████████████████████████████████████▌                   | 192297/262326 [11:26<04:43, 247.11it/s]


 73%|█████████████████████████████████████████████████████▌                   | 192331/262326 [11:26<04:38, 251.31it/s]


 73%|█████████████████████████████████████████████████████▌                   | 192362/262326 [11:26<04:23, 265.04it/s]


 73%|█████████████████████████████████████████████████████▌                   | 192392/262326 [11:27<04:14, 274.33it/s]


 73%|█████████████████████████████████████████████████████▌                   | 192423/262326 [11:27<04:07, 282.88it/s]


 73%|█████████████████████████████████████████████████████▌                   | 192452/262326 [11:27<04:08, 281.58it/s]


 73%|█████████████████████████████████████████████████████▌                   | 192481/262326 [11:27<04:13, 275.05it/s]


 73%|█████████████████████████████████████████████████████▌                   | 192509/262326 [11:27<04:37, 251.91it/s]


 73%|█████████████████████████████████████████████████████▌                   | 192535/262326 [11:27<04:35, 252.98it/s]


 73%|█████████████████████████████████████████████████████▌                   | 192562/262326 [11:27<04:31, 257.34it/s]


 73%|█████████████████████████████████████████████████████▌                   | 192600/262326 [11:27<04:13, 275.35it/s]


 73%|█████████████████████████████████████████████████████▌                   | 192630/262326 [11:27<04:17, 270.63it/s]


 73%|█████████████████████████████████████████████████████▌                   | 192660/262326 [11:28<04:10, 277.72it/s]


 73%|█████████████████████████████████████████████████████▌                   | 192692/262326 [11:28<04:09, 278.55it/s]


 73%|█████████████████████████████████████████████████████▋                   | 192722/262326 [11:28<04:04, 284.27it/s]


 73%|█████████████████████████████████████████████████████▋                   | 192752/262326 [11:28<04:03, 285.95it/s]


 73%|█████████████████████████████████████████████████████▋                   | 192785/262326 [11:28<04:02, 286.99it/s]


 74%|█████████████████████████████████████████████████████▋                   | 192814/262326 [11:28<04:13, 273.98it/s]


 74%|█████████████████████████████████████████████████████▋                   | 192844/262326 [11:28<04:08, 280.05it/s]


 74%|█████████████████████████████████████████████████████▋                   | 192873/262326 [11:28<04:06, 282.13it/s]


 74%|█████████████████████████████████████████████████████▋                   | 192902/262326 [11:28<04:04, 284.38it/s]


 74%|█████████████████████████████████████████████████████▋                   | 192935/262326 [11:28<04:03, 285.40it/s]


 74%|█████████████████████████████████████████████████████▋                   | 192964/262326 [11:29<04:36, 251.03it/s]


 74%|█████████████████████████████████████████████████████▋                   | 192990/262326 [11:29<04:42, 245.26it/s]


 74%|█████████████████████████████████████████████████████▋                   | 193020/262326 [11:29<04:32, 254.74it/s]


 74%|█████████████████████████████████████████████████████▋                   | 193048/262326 [11:29<04:25, 261.13it/s]


 74%|█████████████████████████████████████████████████████▋                   | 193075/262326 [11:29<04:30, 255.76it/s]


 74%|█████████████████████████████████████████████████████▋                   | 193106/262326 [11:29<04:20, 265.43it/s]


 74%|█████████████████████████████████████████████████████▋                   | 193134/262326 [11:29<04:27, 258.18it/s]


 74%|█████████████████████████████████████████████████████▊                   | 193163/262326 [11:29<04:21, 264.82it/s]


 74%|█████████████████████████████████████████████████████▊                   | 193198/262326 [11:29<04:11, 275.14it/s]


 74%|█████████████████████████████████████████████████████▊                   | 193226/262326 [11:30<04:21, 264.37it/s]


 74%|█████████████████████████████████████████████████████▊                   | 193254/262326 [11:30<04:19, 266.20it/s]


 74%|█████████████████████████████████████████████████████▊                   | 193281/262326 [11:30<04:39, 247.06it/s]


 74%|█████████████████████████████████████████████████████▊                   | 193310/262326 [11:30<04:28, 256.64it/s]


 74%|█████████████████████████████████████████████████████▊                   | 193337/262326 [11:30<04:25, 260.12it/s]


 74%|█████████████████████████████████████████████████████▊                   | 193364/262326 [11:30<04:35, 250.68it/s]


 74%|█████████████████████████████████████████████████████▊                   | 193395/262326 [11:30<04:19, 265.70it/s]


 74%|█████████████████████████████████████████████████████▊                   | 193424/262326 [11:30<04:13, 271.39it/s]


 74%|█████████████████████████████████████████████████████▊                   | 193454/262326 [11:30<04:16, 268.52it/s]


 74%|█████████████████████████████████████████████████████▊                   | 193489/262326 [11:31<04:07, 278.13it/s]


 74%|█████████████████████████████████████████████████████▊                   | 193520/262326 [11:31<04:01, 285.13it/s]


 74%|█████████████████████████████████████████████████████▊                   | 193549/262326 [11:31<04:25, 258.81it/s]


 74%|█████████████████████████████████████████████████████▊                   | 193576/262326 [11:31<04:32, 252.69it/s]


 74%|█████████████████████████████████████████████████████▉                   | 193602/262326 [11:31<04:30, 253.63it/s]


 74%|█████████████████████████████████████████████████████▉                   | 193631/262326 [11:31<04:31, 252.83it/s]


 74%|█████████████████████████████████████████████████████▉                   | 193668/262326 [11:31<04:14, 269.92it/s]


 74%|█████████████████████████████████████████████████████▉                   | 193699/262326 [11:31<04:05, 280.00it/s]


 74%|█████████████████████████████████████████████████████▉                   | 193728/262326 [11:31<04:03, 281.88it/s]


 74%|█████████████████████████████████████████████████████▉                   | 193757/262326 [11:32<04:02, 283.21it/s]


 74%|█████████████████████████████████████████████████████▉                   | 193791/262326 [11:32<03:59, 286.40it/s]


 74%|█████████████████████████████████████████████████████▉                   | 193820/262326 [11:32<04:01, 283.79it/s]


 74%|█████████████████████████████████████████████████████▉                   | 193849/262326 [11:32<04:08, 275.21it/s]


 74%|█████████████████████████████████████████████████████▉                   | 193883/262326 [11:32<04:03, 281.02it/s]


 74%|█████████████████████████████████████████████████████▉                   | 193913/262326 [11:32<03:59, 285.98it/s]


 74%|█████████████████████████████████████████████████████▉                   | 193945/262326 [11:32<03:53, 293.09it/s]


 74%|█████████████████████████████████████████████████████▉                   | 193976/262326 [11:32<03:54, 290.88it/s]


 74%|█████████████████████████████████████████████████████▉                   | 194007/262326 [11:32<03:53, 292.25it/s]


 74%|█████████████████████████████████████████████████████▉                   | 194039/262326 [11:33<03:59, 285.55it/s]


 74%|██████████████████████████████████████████████████████                   | 194070/262326 [11:33<03:54, 290.70it/s]


 74%|██████████████████████████████████████████████████████                   | 194100/262326 [11:33<03:52, 293.22it/s]


 74%|██████████████████████████████████████████████████████                   | 194135/262326 [11:33<03:49, 297.17it/s]


 74%|██████████████████████████████████████████████████████                   | 194165/262326 [11:33<03:59, 284.77it/s]


 74%|██████████████████████████████████████████████████████                   | 194195/262326 [11:33<03:58, 285.99it/s]


 74%|██████████████████████████████████████████████████████                   | 194225/262326 [11:33<03:55, 289.61it/s]


 74%|██████████████████████████████████████████████████████                   | 194259/262326 [11:33<03:52, 292.79it/s]


 74%|██████████████████████████████████████████████████████                   | 194291/262326 [11:33<03:47, 298.73it/s]


 74%|██████████████████████████████████████████████████████                   | 194321/262326 [11:34<03:58, 285.31it/s]


 74%|██████████████████████████████████████████████████████                   | 194353/262326 [11:34<03:51, 294.11it/s]


 74%|██████████████████████████████████████████████████████                   | 194383/262326 [11:34<03:50, 294.14it/s]


 74%|██████████████████████████████████████████████████████                   | 194413/262326 [11:34<03:52, 292.72it/s]


 74%|██████████████████████████████████████████████████████                   | 194443/262326 [11:34<03:53, 290.54it/s]


 74%|██████████████████████████████████████████████████████                   | 194475/262326 [11:34<03:50, 294.66it/s]


 74%|██████████████████████████████████████████████████████▏                  | 194505/262326 [11:34<03:50, 293.87it/s]


 74%|██████████████████████████████████████████████████████▏                  | 194540/262326 [11:34<03:47, 297.49it/s]


 74%|██████████████████████████████████████████████████████▏                  | 194570/262326 [11:34<03:48, 296.60it/s]


 74%|██████████████████████████████████████████████████████▏                  | 194606/262326 [11:34<03:45, 300.87it/s]


 74%|██████████████████████████████████████████████████████▏                  | 194637/262326 [11:35<03:43, 302.91it/s]


 74%|██████████████████████████████████████████████████████▏                  | 194668/262326 [11:35<04:11, 268.95it/s]


 74%|██████████████████████████████████████████████████████▏                  | 194699/262326 [11:35<04:04, 276.22it/s]


 74%|██████████████████████████████████████████████████████▏                  | 194735/262326 [11:35<03:56, 286.37it/s]


 74%|██████████████████████████████████████████████████████▏                  | 194766/262326 [11:35<03:51, 291.64it/s]


 74%|██████████████████████████████████████████████████████▏                  | 194796/262326 [11:35<04:00, 281.19it/s]


 74%|██████████████████████████████████████████████████████▏                  | 194825/262326 [11:35<03:58, 283.32it/s]


 74%|██████████████████████████████████████████████████████▏                  | 194854/262326 [11:35<03:57, 284.44it/s]


 74%|██████████████████████████████████████████████████████▏                  | 194887/262326 [11:35<03:56, 285.20it/s]


 74%|██████████████████████████████████████████████████████▏                  | 194917/262326 [11:36<04:04, 275.26it/s]


 74%|██████████████████████████████████████████████████████▎                  | 194949/262326 [11:36<03:54, 287.25it/s]


 74%|██████████████████████████████████████████████████████▎                  | 194981/262326 [11:36<03:56, 284.59it/s]


 74%|██████████████████████████████████████████████████████▎                  | 195010/262326 [11:36<03:56, 284.35it/s]


 74%|██████████████████████████████████████████████████████▎                  | 195039/262326 [11:36<03:55, 285.82it/s]


 74%|██████████████████████████████████████████████████████▎                  | 195068/262326 [11:36<03:55, 285.88it/s]


 74%|██████████████████████████████████████████████████████▎                  | 195097/262326 [11:36<03:54, 286.45it/s]


 74%|██████████████████████████████████████████████████████▎                  | 195127/262326 [11:36<03:52, 288.53it/s]


 74%|██████████████████████████████████████████████████████▎                  | 195157/262326 [11:36<03:59, 280.96it/s]


 74%|██████████████████████████████████████████████████████▎                  | 195193/262326 [11:37<03:51, 289.83it/s]


 74%|██████████████████████████████████████████████████████▎                  | 195223/262326 [11:37<03:50, 291.20it/s]


 74%|██████████████████████████████████████████████████████▎                  | 195253/262326 [11:37<04:01, 277.75it/s]


 74%|██████████████████████████████████████████████████████▎                  | 195286/262326 [11:37<03:57, 282.51it/s]


 74%|██████████████████████████████████████████████████████▎                  | 195316/262326 [11:37<03:53, 286.84it/s]


 74%|██████████████████████████████████████████████████████▎                  | 195346/262326 [11:37<03:50, 290.25it/s]


 74%|██████████████████████████████████████████████████████▎                  | 195376/262326 [11:37<04:40, 238.60it/s]


 74%|██████████████████████████████████████████████████████▍                  | 195409/262326 [11:37<04:20, 256.75it/s]


 75%|██████████████████████████████████████████████████████▍                  | 195439/262326 [11:37<04:10, 267.19it/s]


 75%|██████████████████████████████████████████████████████▍                  | 195475/262326 [11:38<03:58, 279.94it/s]


 75%|██████████████████████████████████████████████████████▍                  | 195504/262326 [11:38<03:57, 281.66it/s]


 75%|██████████████████████████████████████████████████████▍                  | 195533/262326 [11:38<04:01, 277.10it/s]


 75%|██████████████████████████████████████████████████████▍                  | 195565/262326 [11:38<03:55, 283.74it/s]


 75%|██████████████████████████████████████████████████████▍                  | 195596/262326 [11:38<03:49, 290.84it/s]


 75%|██████████████████████████████████████████████████████▍                  | 195626/262326 [11:38<03:47, 293.29it/s]


 75%|██████████████████████████████████████████████████████▍                  | 195656/262326 [11:38<03:46, 294.32it/s]


 75%|██████████████████████████████████████████████████████▍                  | 195686/262326 [11:38<03:45, 294.91it/s]


 75%|██████████████████████████████████████████████████████▍                  | 195719/262326 [11:38<03:47, 292.88it/s]


 75%|██████████████████████████████████████████████████████▍                  | 195750/262326 [11:39<03:44, 296.62it/s]


 75%|██████████████████████████████████████████████████████▍                  | 195785/262326 [11:39<03:42, 299.26it/s]


 75%|██████████████████████████████████████████████████████▍                  | 195815/262326 [11:39<03:42, 298.65it/s]


 75%|██████████████████████████████████████████████████████▍                  | 195845/262326 [11:39<03:42, 298.90it/s]


 75%|██████████████████████████████████████████████████████▌                  | 195880/262326 [11:39<03:41, 300.59it/s]


 75%|██████████████████████████████████████████████████████▌                  | 195912/262326 [11:39<03:38, 303.41it/s]


 75%|██████████████████████████████████████████████████████▌                  | 195946/262326 [11:39<03:40, 301.52it/s]


 75%|██████████████████████████████████████████████████████▌                  | 195978/262326 [11:39<03:36, 305.94it/s]


 75%|██████████████████████████████████████████████████████▌                  | 196010/262326 [11:39<03:34, 309.39it/s]


 75%|██████████████████████████████████████████████████████▌                  | 196041/262326 [11:39<03:44, 295.10it/s]


 75%|██████████████████████████████████████████████████████▌                  | 196071/262326 [11:40<04:04, 270.69it/s]


 75%|██████████████████████████████████████████████████████▌                  | 196099/262326 [11:40<04:12, 261.89it/s]


 75%|██████████████████████████████████████████████████████▌                  | 196134/262326 [11:40<04:01, 273.97it/s]


 75%|██████████████████████████████████████████████████████▌                  | 196166/262326 [11:40<03:54, 281.90it/s]


 75%|██████████████████████████████████████████████████████▌                  | 196197/262326 [11:40<03:49, 288.50it/s]


 75%|██████████████████████████████████████████████████████▌                  | 196230/262326 [11:40<03:49, 287.91it/s]


 75%|██████████████████████████████████████████████████████▌                  | 196262/262326 [11:40<03:43, 296.21it/s]


 75%|██████████████████████████████████████████████████████▌                  | 196292/262326 [11:40<03:42, 296.84it/s]


 75%|██████████████████████████████████████████████████████▋                  | 196323/262326 [11:40<03:40, 299.59it/s]


 75%|██████████████████████████████████████████████████████▋                  | 196358/262326 [11:41<03:38, 302.20it/s]


 75%|██████████████████████████████████████████████████████▋                  | 196389/262326 [11:41<03:37, 302.66it/s]


 75%|██████████████████████████████████████████████████████▋                  | 196420/262326 [11:41<03:44, 294.14it/s]


 75%|██████████████████████████████████████████████████████▋                  | 196450/262326 [11:41<04:05, 267.89it/s]


 75%|██████████████████████████████████████████████████████▋                  | 196479/262326 [11:41<04:02, 271.73it/s]


 75%|██████████████████████████████████████████████████████▋                  | 196508/262326 [11:41<03:58, 275.54it/s]


 75%|██████████████████████████████████████████████████████▋                  | 196543/262326 [11:41<04:00, 273.58it/s]


 75%|██████████████████████████████████████████████████████▋                  | 196571/262326 [11:41<04:10, 262.87it/s]


 75%|██████████████████████████████████████████████████████▋                  | 196602/262326 [11:41<04:00, 273.17it/s]


 75%|██████████████████████████████████████████████████████▋                  | 196632/262326 [11:42<04:03, 269.62it/s]


 75%|██████████████████████████████████████████████████████▋                  | 196663/262326 [11:42<03:54, 280.01it/s]


 75%|██████████████████████████████████████████████████████▋                  | 196696/262326 [11:42<03:51, 283.95it/s]


 75%|██████████████████████████████████████████████████████▋                  | 196725/262326 [11:42<03:49, 285.64it/s]


 75%|██████████████████████████████████████████████████████▊                  | 196756/262326 [11:42<03:46, 289.11it/s]


 75%|██████████████████████████████████████████████████████▊                  | 196786/262326 [11:42<03:44, 291.47it/s]


 75%|██████████████████████████████████████████████████████▊                  | 196816/262326 [11:42<03:43, 293.73it/s]


 75%|██████████████████████████████████████████████████████▊                  | 196847/262326 [11:42<03:39, 297.93it/s]


 75%|██████████████████████████████████████████████████████▊                  | 196877/262326 [11:42<03:39, 297.85it/s]


 75%|██████████████████████████████████████████████████████▊                  | 196910/262326 [11:43<03:41, 295.19it/s]


 75%|██████████████████████████████████████████████████████▊                  | 196940/262326 [11:43<03:50, 283.16it/s]


 75%|██████████████████████████████████████████████████████▊                  | 196970/262326 [11:43<03:46, 287.94it/s]


 75%|██████████████████████████████████████████████████████▊                  | 197001/262326 [11:43<03:43, 292.18it/s]


 75%|██████████████████████████████████████████████████████▊                  | 197032/262326 [11:43<03:39, 296.98it/s]


 75%|██████████████████████████████████████████████████████▊                  | 197068/262326 [11:43<03:36, 301.63it/s]


 75%|██████████████████████████████████████████████████████▊                  | 197099/262326 [11:43<03:35, 302.84it/s]


 75%|██████████████████████████████████████████████████████▊                  | 197130/262326 [11:43<03:54, 278.32it/s]


 75%|██████████████████████████████████████████████████████▊                  | 197159/262326 [11:43<03:53, 279.56it/s]


 75%|██████████████████████████████████████████████████████▊                  | 197189/262326 [11:44<03:49, 283.92it/s]


 75%|██████████████████████████████████████████████████████▉                  | 197224/262326 [11:44<03:44, 290.39it/s]


 75%|██████████████████████████████████████████████████████▉                  | 197254/262326 [11:44<03:49, 283.38it/s]


 75%|██████████████████████████████████████████████████████▉                  | 197286/262326 [11:44<03:44, 289.86it/s]


 75%|██████████████████████████████████████████████████████▉                  | 197316/262326 [11:44<03:42, 291.67it/s]


 75%|██████████████████████████████████████████████████████▉                  | 197352/262326 [11:44<03:37, 298.08it/s]


 75%|██████████████████████████████████████████████████████▉                  | 197382/262326 [11:44<03:38, 297.11it/s]


 75%|██████████████████████████████████████████████████████▉                  | 197412/262326 [11:44<03:38, 297.34it/s]


 75%|██████████████████████████████████████████████████████▉                  | 197444/262326 [11:44<03:42, 291.03it/s]


 75%|██████████████████████████████████████████████████████▉                  | 197476/262326 [11:44<03:37, 298.41it/s]


 75%|██████████████████████████████████████████████████████▉                  | 197506/262326 [11:45<03:37, 298.29it/s]


 75%|██████████████████████████████████████████████████████▉                  | 197542/262326 [11:45<03:34, 302.64it/s]


 75%|██████████████████████████████████████████████████████▉                  | 197573/262326 [11:45<03:38, 296.41it/s]


 75%|██████████████████████████████████████████████████████▉                  | 197606/262326 [11:45<03:37, 297.55it/s]


 75%|██████████████████████████████████████████████████████▉                  | 197636/262326 [11:45<03:43, 289.04it/s]


 75%|███████████████████████████████████████████████████████                  | 197665/262326 [11:45<03:47, 284.59it/s]


 75%|███████████████████████████████████████████████████████                  | 197697/262326 [11:45<03:48, 282.85it/s]


 75%|███████████████████████████████████████████████████████                  | 197729/262326 [11:45<03:41, 292.05it/s]


 75%|███████████████████████████████████████████████████████                  | 197763/262326 [11:45<03:39, 294.14it/s]


 75%|███████████████████████████████████████████████████████                  | 197793/262326 [11:46<03:39, 293.95it/s]


 75%|███████████████████████████████████████████████████████                  | 197823/262326 [11:46<03:38, 295.50it/s]


 75%|███████████████████████████████████████████████████████                  | 197853/262326 [11:46<03:44, 287.20it/s]


 75%|███████████████████████████████████████████████████████                  | 197884/262326 [11:46<03:42, 289.99it/s]


 75%|███████████████████████████████████████████████████████                  | 197914/262326 [11:46<03:40, 292.30it/s]


 75%|███████████████████████████████████████████████████████                  | 197945/262326 [11:46<03:37, 296.63it/s]


 75%|███████████████████████████████████████████████████████                  | 197975/262326 [11:46<03:45, 285.15it/s]


 75%|███████████████████████████████████████████████████████                  | 198004/262326 [11:46<03:45, 285.75it/s]


 75%|███████████████████████████████████████████████████████                  | 198033/262326 [11:46<03:44, 286.10it/s]


 76%|███████████████████████████████████████████████████████                  | 198063/262326 [11:47<03:52, 276.23it/s]


 76%|███████████████████████████████████████████████████████▏                 | 198098/262326 [11:47<03:45, 284.27it/s]


 76%|███████████████████████████████████████████████████████▏                 | 198127/262326 [11:47<03:46, 283.22it/s]


 76%|███████████████████████████████████████████████████████▏                 | 198158/262326 [11:47<03:42, 288.55it/s]


 76%|███████████████████████████████████████████████████████▏                 | 198194/262326 [11:47<03:34, 298.29it/s]


 76%|███████████████████████████████████████████████████████▏                 | 198226/262326 [11:47<03:31, 302.64it/s]


 76%|███████████████████████████████████████████████████████▏                 | 198261/262326 [11:47<03:30, 303.70it/s]


 76%|███████████████████████████████████████████████████████▏                 | 198292/262326 [11:47<03:30, 304.81it/s]


 76%|███████████████████████████████████████████████████████▏                 | 198323/262326 [11:47<03:29, 304.80it/s]


 76%|███████████████████████████████████████████████████████▏                 | 198358/262326 [11:47<03:29, 305.09it/s]


 76%|███████████████████████████████████████████████████████▏                 | 198390/262326 [11:48<03:27, 307.50it/s]


 76%|███████████████████████████████████████████████████████▏                 | 198422/262326 [11:48<03:26, 309.97it/s]


 76%|███████████████████████████████████████████████████████▏                 | 198454/262326 [11:48<04:02, 262.97it/s]


 76%|███████████████████████████████████████████████████████▏                 | 198482/262326 [11:48<03:59, 266.47it/s]


 76%|███████████████████████████████████████████████████████▏                 | 198514/262326 [11:48<03:56, 269.95it/s]


 76%|███████████████████████████████████████████████████████▎                 | 198544/262326 [11:48<03:49, 277.71it/s]


 76%|███████████████████████████████████████████████████████▎                 | 198579/262326 [11:48<03:43, 284.77it/s]


 76%|███████████████████████████████████████████████████████▎                 | 198610/262326 [11:48<03:39, 290.19it/s]


 76%|███████████████████████████████████████████████████████▎                 | 198640/262326 [11:48<03:46, 280.83it/s]


 76%|███████████████████████████████████████████████████████▎                 | 198670/262326 [11:49<03:43, 285.07it/s]


 76%|███████████████████████████████████████████████████████▎                 | 198702/262326 [11:49<03:35, 294.59it/s]


 76%|███████████████████████████████████████████████████████▎                 | 198732/262326 [11:49<03:37, 291.93it/s]


 76%|███████████████████████████████████████████████████████▎                 | 198764/262326 [11:49<03:39, 289.92it/s]


 76%|███████████████████████████████████████████████████████▎                 | 198794/262326 [11:49<04:19, 244.87it/s]


 76%|███████████████████████████████████████████████████████▎                 | 198820/262326 [11:49<04:14, 249.12it/s]


 76%|███████████████████████████████████████████████████████▎                 | 198855/262326 [11:49<04:01, 263.22it/s]


 76%|███████████████████████████████████████████████████████▎                 | 198886/262326 [11:49<03:50, 275.11it/s]


 76%|███████████████████████████████████████████████████████▎                 | 198915/262326 [11:50<03:58, 266.23it/s]


 76%|███████████████████████████████████████████████████████▎                 | 198950/262326 [11:50<03:49, 276.42it/s]


 76%|███████████████████████████████████████████████████████▎                 | 198979/262326 [11:50<03:46, 279.79it/s]


 76%|███████████████████████████████████████████████████████▍                 | 199009/262326 [11:50<03:48, 277.31it/s]


 76%|███████████████████████████████████████████████████████▍                 | 199039/262326 [11:50<03:43, 283.16it/s]


 76%|███████████████████████████████████████████████████████▍                 | 199071/262326 [11:50<03:38, 289.22it/s]


 76%|███████████████████████████████████████████████████████▍                 | 199101/262326 [11:50<03:38, 289.93it/s]


 76%|███████████████████████████████████████████████████████▍                 | 199133/262326 [11:50<03:40, 286.58it/s]


 76%|███████████████████████████████████████████████████████▍                 | 199164/262326 [11:50<03:36, 292.28it/s]


 76%|███████████████████████████████████████████████████████▍                 | 199195/262326 [11:50<03:32, 296.68it/s]


 76%|███████████████████████████████████████████████████████▍                 | 199230/262326 [11:51<03:30, 299.41it/s]


 76%|███████████████████████████████████████████████████████▍                 | 199261/262326 [11:51<03:29, 301.25it/s]


 76%|███████████████████████████████████████████████████████▍                 | 199292/262326 [11:51<03:33, 294.97it/s]


 76%|███████████████████████████████████████████████████████▍                 | 199324/262326 [11:51<03:31, 297.75it/s]


 76%|███████████████████████████████████████████████████████▍                 | 199354/262326 [11:51<03:32, 296.78it/s]


 76%|███████████████████████████████████████████████████████▍                 | 199384/262326 [11:51<03:31, 297.71it/s]


 76%|███████████████████████████████████████████████████████▍                 | 199414/262326 [11:51<03:31, 297.99it/s]


 76%|███████████████████████████████████████████████████████▌                 | 199450/262326 [11:51<03:28, 302.08it/s]


 76%|███████████████████████████████████████████████████████▌                 | 199481/262326 [11:51<03:37, 288.89it/s]


 76%|███████████████████████████████████████████████████████▌                 | 199512/262326 [11:52<03:34, 293.09it/s]


 76%|███████████████████████████████████████████████████████▌                 | 199548/262326 [11:52<03:29, 300.28it/s]


 76%|███████████████████████████████████████████████████████▌                 | 199579/262326 [11:52<03:47, 276.40it/s]


 76%|███████████████████████████████████████████████████████▌                 | 199610/262326 [11:52<03:40, 284.30it/s]


 76%|███████████████████████████████████████████████████████▌                 | 199640/262326 [11:52<03:37, 288.05it/s]


 76%|███████████████████████████████████████████████████████▌                 | 199670/262326 [11:52<03:34, 291.49it/s]


 76%|███████████████████████████████████████████████████████▌                 | 199704/262326 [11:52<03:34, 292.42it/s]


 76%|███████████████████████████████████████████████████████▌                 | 199742/262326 [11:52<03:28, 300.88it/s]


 76%|███████████████████████████████████████████████████████▌                 | 199773/262326 [11:52<03:35, 290.90it/s]


 76%|███████████████████████████████████████████████████████▌                 | 199803/262326 [11:53<03:33, 292.96it/s]


 76%|███████████████████████████████████████████████████████▌                 | 199837/262326 [11:53<03:32, 294.12it/s]


 76%|███████████████████████████████████████████████████████▌                 | 199867/262326 [11:53<03:49, 272.07it/s]


 76%|███████████████████████████████████████████████████████▋                 | 199895/262326 [11:53<03:51, 269.52it/s]


 76%|███████████████████████████████████████████████████████▋                 | 199923/262326 [11:53<03:49, 272.49it/s]


 76%|███████████████████████████████████████████████████████▋                 | 199951/262326 [11:53<03:47, 273.64it/s]


 76%|███████████████████████████████████████████████████████▋                 | 199979/262326 [11:53<03:47, 274.14it/s]


 76%|███████████████████████████████████████████████████████▋                 | 200013/262326 [11:53<03:42, 280.62it/s]


 76%|███████████████████████████████████████████████████████▋                 | 200048/262326 [11:53<03:36, 287.48it/s]


 76%|███████████████████████████████████████████████████████▋                 | 200079/262326 [11:54<03:33, 292.15it/s]


 76%|███████████████████████████████████████████████████████▋                 | 200109/262326 [11:54<03:31, 294.35it/s]


 76%|███████████████████████████████████████████████████████▋                 | 200139/262326 [11:54<03:31, 294.02it/s]


 76%|███████████████████████████████████████████████████████▋                 | 200172/262326 [11:54<03:32, 292.66it/s]


 76%|███████████████████████████████████████████████████████▋                 | 200204/262326 [11:54<03:28, 297.97it/s]


 76%|███████████████████████████████████████████████████████▋                 | 200240/262326 [11:54<03:25, 302.50it/s]


 76%|███████████████████████████████████████████████████████▋                 | 200271/262326 [11:54<03:23, 304.66it/s]


 76%|███████████████████████████████████████████████████████▋                 | 200302/262326 [11:54<03:32, 292.50it/s]


 76%|███████████████████████████████████████████████████████▋                 | 200333/262326 [11:54<03:38, 284.20it/s]


 76%|███████████████████████████████████████████████████████▊                 | 200362/262326 [11:55<03:57, 261.22it/s]


 76%|███████████████████████████████████████████████████████▊                 | 200391/262326 [11:55<03:52, 266.51it/s]


 76%|███████████████████████████████████████████████████████▊                 | 200419/262326 [11:55<04:08, 249.28it/s]


 76%|███████████████████████████████████████████████████████▊                 | 200449/262326 [11:55<03:57, 260.42it/s]


 76%|███████████████████████████████████████████████████████▊                 | 200479/262326 [11:55<03:48, 270.54it/s]


 76%|███████████████████████████████████████████████████████▊                 | 200509/262326 [11:55<03:51, 267.45it/s]


 76%|███████████████████████████████████████████████████████▊                 | 200539/262326 [11:55<03:44, 275.37it/s]


 76%|███████████████████████████████████████████████████████▊                 | 200568/262326 [11:55<03:41, 278.94it/s]


 76%|███████████████████████████████████████████████████████▊                 | 200604/262326 [11:55<03:34, 288.28it/s]


 76%|███████████████████████████████████████████████████████▊                 | 200636/262326 [11:55<03:28, 296.05it/s]


 76%|███████████████████████████████████████████████████████▊                 | 200672/262326 [11:56<03:25, 300.59it/s]


 77%|███████████████████████████████████████████████████████▊                 | 200703/262326 [11:56<03:38, 281.59it/s]


 77%|███████████████████████████████████████████████████████▊                 | 200736/262326 [11:56<03:33, 288.23it/s]


 77%|███████████████████████████████████████████████████████▊                 | 200766/262326 [11:56<03:31, 290.66it/s]


 77%|███████████████████████████████████████████████████████▉                 | 200799/262326 [11:56<03:32, 289.28it/s]


 77%|███████████████████████████████████████████████████████▉                 | 200833/262326 [11:56<03:31, 290.81it/s]


 77%|███████████████████████████████████████████████████████▉                 | 200864/262326 [11:56<03:27, 295.94it/s]


 77%|███████████████████████████████████████████████████████▉                 | 200894/262326 [11:56<03:28, 294.87it/s]


 77%|███████████████████████████████████████████████████████▉                 | 200924/262326 [11:56<03:27, 295.65it/s]


 77%|███████████████████████████████████████████████████████▉                 | 200955/262326 [11:57<03:33, 287.12it/s]


 77%|███████████████████████████████████████████████████████▉                 | 200984/262326 [11:57<03:42, 275.14it/s]


 77%|███████████████████████████████████████████████████████▉                 | 201013/262326 [11:57<03:49, 267.36it/s]


 77%|███████████████████████████████████████████████████████▉                 | 201044/262326 [11:57<03:41, 276.19it/s]


 77%|███████████████████████████████████████████████████████▉                 | 201079/262326 [11:57<03:37, 282.07it/s]


 77%|███████████████████████████████████████████████████████▉                 | 201108/262326 [11:57<03:44, 272.62it/s]


 77%|███████████████████████████████████████████████████████▉                 | 201145/262326 [11:57<03:42, 275.48it/s]


 77%|███████████████████████████████████████████████████████▉                 | 201177/262326 [11:57<03:34, 285.36it/s]


 77%|███████████████████████████████████████████████████████▉                 | 201212/262326 [11:58<03:30, 290.64it/s]


 77%|████████████████████████████████████████████████████████                 | 201243/262326 [11:58<03:26, 295.14it/s]


 77%|████████████████████████████████████████████████████████                 | 201273/262326 [11:58<03:25, 296.41it/s]


 77%|████████████████████████████████████████████████████████                 | 201303/262326 [11:58<03:42, 274.36it/s]


 77%|████████████████████████████████████████████████████████                 | 201334/262326 [11:58<03:35, 282.71it/s]


 77%|████████████████████████████████████████████████████████                 | 201365/262326 [11:58<03:31, 287.65it/s]


 77%|████████████████████████████████████████████████████████                 | 201395/262326 [11:58<03:29, 290.90it/s]


 77%|████████████████████████████████████████████████████████                 | 201425/262326 [11:58<03:27, 293.23it/s]


 77%|████████████████████████████████████████████████████████                 | 201458/262326 [11:58<03:28, 291.49it/s]


 77%|████████████████████████████████████████████████████████                 | 201488/262326 [11:58<03:28, 292.42it/s]


 77%|████████████████████████████████████████████████████████                 | 201518/262326 [11:59<03:26, 294.49it/s]


 77%|████████████████████████████████████████████████████████                 | 201548/262326 [11:59<03:27, 292.39it/s]


 77%|████████████████████████████████████████████████████████                 | 201578/262326 [11:59<03:29, 290.60it/s]


 77%|████████████████████████████████████████████████████████                 | 201608/262326 [11:59<03:41, 274.67it/s]


 77%|████████████████████████████████████████████████████████                 | 201636/262326 [11:59<04:00, 251.99it/s]


 77%|████████████████████████████████████████████████████████                 | 201662/262326 [11:59<04:00, 251.94it/s]


 77%|████████████████████████████████████████████████████████▏                | 201690/262326 [11:59<03:53, 259.72it/s]


 77%|████████████████████████████████████████████████████████▏                | 201722/262326 [11:59<03:48, 264.82it/s]


 77%|████████████████████████████████████████████████████████▏                | 201752/262326 [11:59<03:41, 273.73it/s]


 77%|████████████████████████████████████████████████████████▏                | 201782/262326 [12:00<03:36, 280.08it/s]


 77%|████████████████████████████████████████████████████████▏                | 201811/262326 [12:00<03:41, 273.37it/s]


 77%|████████████████████████████████████████████████████████▏                | 201839/262326 [12:00<03:47, 265.53it/s]


 77%|████████████████████████████████████████████████████████▏                | 201868/262326 [12:00<03:45, 267.52it/s]


 77%|████████████████████████████████████████████████████████▏                | 201895/262326 [12:00<04:16, 235.15it/s]


 77%|████████████████████████████████████████████████████████▏                | 201920/262326 [12:00<04:15, 236.60it/s]


 77%|████████████████████████████████████████████████████████▏                | 201948/262326 [12:00<04:03, 247.76it/s]


 77%|████████████████████████████████████████████████████████▏                | 201977/262326 [12:00<03:53, 258.40it/s]


 77%|████████████████████████████████████████████████████████▏                | 202013/262326 [12:00<03:40, 273.94it/s]


 77%|████████████████████████████████████████████████████████▏                | 202043/262326 [12:01<03:34, 280.95it/s]


 77%|████████████████████████████████████████████████████████▏                | 202072/262326 [12:01<03:43, 269.18it/s]


 77%|████████████████████████████████████████████████████████▏                | 202100/262326 [12:01<03:44, 267.93it/s]


 77%|████████████████████████████████████████████████████████▏                | 202133/262326 [12:01<03:37, 276.26it/s]


 77%|████████████████████████████████████████████████████████▎                | 202162/262326 [12:01<03:35, 279.01it/s]


 77%|████████████████████████████████████████████████████████▎                | 202198/262326 [12:01<03:28, 288.90it/s]


 77%|████████████████████████████████████████████████████████▎                | 202228/262326 [12:01<03:26, 291.04it/s]


 77%|████████████████████████████████████████████████████████▎                | 202258/262326 [12:01<03:25, 292.46it/s]


 77%|████████████████████████████████████████████████████████▎                | 202289/262326 [12:01<03:30, 284.92it/s]


 77%|████████████████████████████████████████████████████████▎                | 202318/262326 [12:02<03:29, 285.76it/s]


 77%|████████████████████████████████████████████████████████▎                | 202347/262326 [12:02<03:29, 286.57it/s]


 77%|████████████████████████████████████████████████████████▎                | 202376/262326 [12:02<03:30, 285.12it/s]


 77%|████████████████████████████████████████████████████████▎                | 202407/262326 [12:02<03:27, 288.70it/s]


 77%|████████████████████████████████████████████████████████▎                | 202437/262326 [12:02<03:25, 290.77it/s]


 77%|████████████████████████████████████████████████████████▎                | 202468/262326 [12:02<03:25, 291.43it/s]


 77%|████████████████████████████████████████████████████████▎                | 202498/262326 [12:02<03:24, 292.40it/s]


 77%|████████████████████████████████████████████████████████▎                | 202529/262326 [12:02<03:22, 295.84it/s]


 77%|████████████████████████████████████████████████████████▎                | 202561/262326 [12:02<03:17, 302.67it/s]


 77%|████████████████████████████████████████████████████████▍                | 202592/262326 [12:02<03:15, 304.80it/s]


 77%|████████████████████████████████████████████████████████▍                | 202624/262326 [12:03<03:21, 296.37it/s]


 77%|████████████████████████████████████████████████████████▍                | 202654/262326 [12:03<03:30, 282.90it/s]


 77%|████████████████████████████████████████████████████████▍                | 202683/262326 [12:03<03:35, 276.25it/s]


 77%|████████████████████████████████████████████████████████▍                | 202714/262326 [12:03<03:32, 280.57it/s]


 77%|████████████████████████████████████████████████████████▍                | 202743/262326 [12:03<03:30, 282.67it/s]


 77%|████████████████████████████████████████████████████████▍                | 202778/262326 [12:03<03:26, 288.79it/s]


 77%|████████████████████████████████████████████████████████▍                | 202807/262326 [12:03<03:26, 287.81it/s]


 77%|████████████████████████████████████████████████████████▍                | 202843/262326 [12:03<03:21, 294.78it/s]


 77%|████████████████████████████████████████████████████████▍                | 202873/262326 [12:03<03:21, 295.17it/s]


 77%|████████████████████████████████████████████████████████▍                | 202904/262326 [12:04<03:21, 295.18it/s]


 77%|████████████████████████████████████████████████████████▍                | 202940/262326 [12:04<03:15, 303.23it/s]


 77%|████████████████████████████████████████████████████████▍                | 202971/262326 [12:04<03:17, 300.04it/s]


 77%|████████████████████████████████████████████████████████▍                | 203003/262326 [12:04<03:28, 283.98it/s]


 77%|████████████████████████████████████████████████████████▌                | 203035/262326 [12:04<03:22, 292.13it/s]


 77%|████████████████████████████████████████████████████████▌                | 203070/262326 [12:04<03:20, 295.43it/s]


 77%|████████████████████████████████████████████████████████▌                | 203100/262326 [12:04<03:20, 295.47it/s]


 77%|████████████████████████████████████████████████████████▌                | 203130/262326 [12:04<03:19, 296.54it/s]


 77%|████████████████████████████████████████████████████████▌                | 203160/262326 [12:04<03:27, 284.88it/s]


 77%|████████████████████████████████████████████████████████▌                | 203189/262326 [12:04<03:27, 285.55it/s]


 77%|████████████████████████████████████████████████████████▌                | 203218/262326 [12:05<03:26, 286.51it/s]


 77%|████████████████████████████████████████████████████████▌                | 203251/262326 [12:05<03:27, 285.24it/s]


 77%|████████████████████████████████████████████████████████▌                | 203283/262326 [12:05<03:23, 290.84it/s]


 78%|████████████████████████████████████████████████████████▌                | 203317/262326 [12:05<03:20, 294.47it/s]


 78%|████████████████████████████████████████████████████████▌                | 203347/262326 [12:05<03:26, 286.18it/s]


 78%|████████████████████████████████████████████████████████▌                | 203376/262326 [12:05<03:35, 273.74it/s]


 78%|████████████████████████████████████████████████████████▌                | 203409/262326 [12:05<03:27, 284.43it/s]


 78%|████████████████████████████████████████████████████████▌                | 203442/262326 [12:05<03:25, 286.41it/s]


 78%|████████████████████████████████████████████████████████▌                | 203473/262326 [12:05<03:22, 290.24it/s]


 78%|████████████████████████████████████████████████████████▋                | 203504/262326 [12:06<03:19, 295.12it/s]


 78%|████████████████████████████████████████████████████████▋                | 203538/262326 [12:06<03:18, 295.50it/s]


 78%|████████████████████████████████████████████████████████▋                | 203568/262326 [12:06<03:20, 293.51it/s]


 78%|████████████████████████████████████████████████████████▋                | 203604/262326 [12:06<03:16, 298.42it/s]


 78%|████████████████████████████████████████████████████████▋                | 203639/262326 [12:06<03:15, 300.09it/s]


 78%|████████████████████████████████████████████████████████▋                | 203672/262326 [12:06<03:18, 295.96it/s]


 78%|████████████████████████████████████████████████████████▋                | 203702/262326 [12:06<03:17, 296.11it/s]


 78%|████████████████████████████████████████████████████████▋                | 203732/262326 [12:06<03:17, 296.48it/s]


 78%|████████████████████████████████████████████████████████▋                | 203767/262326 [12:06<03:16, 298.59it/s]


 78%|████████████████████████████████████████████████████████▋                | 203797/262326 [12:07<03:25, 284.41it/s]


 78%|████████████████████████████████████████████████████████▋                | 203827/262326 [12:07<03:23, 287.15it/s]


 78%|████████████████████████████████████████████████████████▋                | 203857/262326 [12:07<03:21, 290.41it/s]


 78%|████████████████████████████████████████████████████████▋                | 203891/262326 [12:07<03:27, 281.78it/s]


 78%|████████████████████████████████████████████████████████▋                | 203921/262326 [12:07<03:24, 285.87it/s]


 78%|████████████████████████████████████████████████████████▊                | 203950/262326 [12:07<03:23, 286.65it/s]


 78%|████████████████████████████████████████████████████████▊                | 203985/262326 [12:07<03:20, 291.56it/s]


 78%|████████████████████████████████████████████████████████▊                | 204015/262326 [12:07<03:19, 292.84it/s]


 78%|████████████████████████████████████████████████████████▊                | 204045/262326 [12:07<03:19, 292.22it/s]


 78%|████████████████████████████████████████████████████████▊                | 204075/262326 [12:08<03:21, 288.75it/s]


 78%|████████████████████████████████████████████████████████▊                | 204108/262326 [12:08<03:17, 295.22it/s]


 78%|████████████████████████████████████████████████████████▊                | 204138/262326 [12:08<03:25, 283.47it/s]


 78%|████████████████████████████████████████████████████████▊                | 204170/262326 [12:08<03:20, 290.39it/s]


 78%|████████████████████████████████████████████████████████▊                | 204200/262326 [12:08<03:36, 268.53it/s]


 78%|████████████████████████████████████████████████████████▊                | 204228/262326 [12:08<03:34, 270.32it/s]


 78%|████████████████████████████████████████████████████████▊                | 204263/262326 [12:08<03:27, 279.88it/s]


 78%|████████████████████████████████████████████████████████▊                | 204295/262326 [12:08<03:21, 288.12it/s]


 78%|████████████████████████████████████████████████████████▊                | 204330/262326 [12:08<03:16, 294.45it/s]


 78%|████████████████████████████████████████████████████████▊                | 204360/262326 [12:09<03:17, 293.17it/s]


 78%|████████████████████████████████████████████████████████▉                | 204390/262326 [12:09<03:16, 294.36it/s]


 78%|████████████████████████████████████████████████████████▉                | 204420/262326 [12:09<03:20, 288.46it/s]


 78%|████████████████████████████████████████████████████████▉                | 204450/262326 [12:09<03:30, 275.15it/s]


 78%|████████████████████████████████████████████████████████▉                | 204482/262326 [12:09<03:22, 285.66it/s]


 78%|████████████████████████████████████████████████████████▉                | 204513/262326 [12:09<03:17, 292.29it/s]


 78%|████████████████████████████████████████████████████████▉                | 204548/262326 [12:09<03:15, 295.62it/s]


 78%|████████████████████████████████████████████████████████▉                | 204579/262326 [12:09<03:13, 298.38it/s]


 78%|████████████████████████████████████████████████████████▉                | 204610/262326 [12:09<03:11, 300.80it/s]


 78%|████████████████████████████████████████████████████████▉                | 204645/262326 [12:09<03:10, 302.79it/s]


 78%|████████████████████████████████████████████████████████▉                | 204676/262326 [12:10<03:09, 303.78it/s]


 78%|████████████████████████████████████████████████████████▉                | 204709/262326 [12:10<03:13, 297.80it/s]


 78%|████████████████████████████████████████████████████████▉                | 204739/262326 [12:10<03:24, 282.02it/s]


 78%|████████████████████████████████████████████████████████▉                | 204770/262326 [12:10<03:21, 285.17it/s]


 78%|████████████████████████████████████████████████████████▉                | 204803/262326 [12:10<03:18, 290.11it/s]


 78%|█████████████████████████████████████████████████████████                | 204833/262326 [12:10<03:52, 246.82it/s]


 78%|█████████████████████████████████████████████████████████                | 204865/262326 [12:10<03:47, 252.44it/s]


 78%|█████████████████████████████████████████████████████████                | 204900/262326 [12:10<03:36, 265.79it/s]


 78%|█████████████████████████████████████████████████████████                | 204929/262326 [12:11<03:31, 271.44it/s]


 78%|█████████████████████████████████████████████████████████                | 204958/262326 [12:11<03:28, 275.63it/s]


 78%|█████████████████████████████████████████████████████████                | 204987/262326 [12:11<03:25, 279.19it/s]


 78%|█████████████████████████████████████████████████████████                | 205016/262326 [12:11<04:27, 214.46it/s]


 78%|█████████████████████████████████████████████████████████                | 205046/262326 [12:11<04:07, 231.23it/s]


 78%|█████████████████████████████████████████████████████████                | 205074/262326 [12:11<03:55, 243.01it/s]


 78%|█████████████████████████████████████████████████████████                | 205109/262326 [12:11<03:41, 258.47it/s]


 78%|█████████████████████████████████████████████████████████                | 205139/262326 [12:11<03:32, 268.93it/s]


 78%|█████████████████████████████████████████████████████████                | 205168/262326 [12:11<03:28, 274.30it/s]


 78%|█████████████████████████████████████████████████████████                | 205204/262326 [12:12<03:20, 284.61it/s]


 78%|█████████████████████████████████████████████████████████                | 205234/262326 [12:12<03:18, 287.93it/s]


 78%|█████████████████████████████████████████████████████████                | 205264/262326 [12:12<03:24, 279.18it/s]


 78%|█████████████████████████████████████████████████████████▏               | 205293/262326 [12:12<03:22, 281.21it/s]


 78%|█████████████████████████████████████████████████████████▏               | 205322/262326 [12:12<03:21, 283.46it/s]


 78%|█████████████████████████████████████████████████████████▏               | 205353/262326 [12:12<03:24, 279.20it/s]


 78%|█████████████████████████████████████████████████████████▏               | 205382/262326 [12:12<03:31, 269.23it/s]


 78%|█████████████████████████████████████████████████████████▏               | 205410/262326 [12:12<03:40, 258.28it/s]


 78%|█████████████████████████████████████████████████████████▏               | 205441/262326 [12:12<03:29, 271.03it/s]


 78%|█████████████████████████████████████████████████████████▏               | 205476/262326 [12:13<03:22, 280.59it/s]


 78%|█████████████████████████████████████████████████████████▏               | 205508/262326 [12:13<03:16, 289.22it/s]


 78%|█████████████████████████████████████████████████████████▏               | 205538/262326 [12:13<03:18, 286.73it/s]


 78%|█████████████████████████████████████████████████████████▏               | 205572/262326 [12:13<03:12, 294.22it/s]


 78%|█████████████████████████████████████████████████████████▏               | 205603/262326 [12:13<03:10, 298.20it/s]


 78%|█████████████████████████████████████████████████████████▏               | 205637/262326 [12:13<03:10, 297.25it/s]


 78%|█████████████████████████████████████████████████████████▏               | 205667/262326 [12:13<03:11, 295.84it/s]


 78%|█████████████████████████████████████████████████████████▏               | 205700/262326 [12:13<03:12, 293.93it/s]


 78%|█████████████████████████████████████████████████████████▎               | 205730/262326 [12:13<03:11, 295.46it/s]


 78%|█████████████████████████████████████████████████████████▎               | 205760/262326 [12:14<03:20, 282.51it/s]


 78%|█████████████████████████████████████████████████████████▎               | 205789/262326 [12:14<03:20, 282.67it/s]


 78%|█████████████████████████████████████████████████████████▎               | 205818/262326 [12:14<03:33, 264.91it/s]


 78%|█████████████████████████████████████████████████████████▎               | 205849/262326 [12:14<03:27, 272.27it/s]


 78%|█████████████████████████████████████████████████████████▎               | 205879/262326 [12:14<03:21, 279.68it/s]


 78%|█████████████████████████████████████████████████████████▎               | 205915/262326 [12:14<03:15, 288.64it/s]


 79%|█████████████████████████████████████████████████████████▎               | 205945/262326 [12:14<03:14, 290.00it/s]


 79%|█████████████████████████████████████████████████████████▎               | 205982/262326 [12:14<03:07, 299.89it/s]


 79%|█████████████████████████████████████████████████████████▎               | 206014/262326 [12:14<03:05, 303.94it/s]


 79%|█████████████████████████████████████████████████████████▎               | 206048/262326 [12:15<03:06, 301.42it/s]


 79%|█████████████████████████████████████████████████████████▎               | 206079/262326 [12:15<03:07, 299.23it/s]


 79%|█████████████████████████████████████████████████████████▎               | 206110/262326 [12:15<03:10, 295.69it/s]


 79%|█████████████████████████████████████████████████████████▎               | 206143/262326 [12:15<03:06, 301.18it/s]


 79%|█████████████████████████████████████████████████████████▎               | 206174/262326 [12:15<03:39, 256.11it/s]


 79%|█████████████████████████████████████████████████████████▍               | 206201/262326 [12:15<03:38, 256.96it/s]


 79%|█████████████████████████████████████████████████████████▍               | 206231/262326 [12:15<03:29, 268.07it/s]


 79%|█████████████████████████████████████████████████████████▍               | 206267/262326 [12:15<03:20, 280.18it/s]


 79%|█████████████████████████████████████████████████████████▍               | 206296/262326 [12:15<03:18, 282.70it/s]


 79%|█████████████████████████████████████████████████████████▍               | 206325/262326 [12:16<03:23, 275.36it/s]


 79%|█████████████████████████████████████████████████████████▍               | 206357/262326 [12:16<03:17, 283.69it/s]


 79%|█████████████████████████████████████████████████████████▍               | 206387/262326 [12:16<03:17, 283.24it/s]


 79%|█████████████████████████████████████████████████████████▍               | 206420/262326 [12:16<03:14, 287.25it/s]


 79%|█████████████████████████████████████████████████████████▍               | 206449/262326 [12:16<03:14, 287.70it/s]


 79%|█████████████████████████████████████████████████████████▍               | 206478/262326 [12:16<03:14, 287.33it/s]


 79%|█████████████████████████████████████████████████████████▍               | 206512/262326 [12:16<03:12, 289.81it/s]


 79%|█████████████████████████████████████████████████████████▍               | 206542/262326 [12:16<03:12, 290.41it/s]


 79%|█████████████████████████████████████████████████████████▍               | 206573/262326 [12:16<03:16, 283.96it/s]


 79%|█████████████████████████████████████████████████████████▍               | 206605/262326 [12:17<03:18, 280.64it/s]


 79%|█████████████████████████████████████████████████████████▌               | 206636/262326 [12:17<03:13, 288.05it/s]


 79%|█████████████████████████████████████████████████████████▌               | 206665/262326 [12:17<03:13, 287.47it/s]


 79%|█████████████████████████████████████████████████████████▌               | 206700/262326 [12:17<03:09, 292.97it/s]


 79%|█████████████████████████████████████████████████████████▌               | 206731/262326 [12:17<03:07, 297.19it/s]


 79%|█████████████████████████████████████████████████████████▌               | 206761/262326 [12:17<03:09, 293.04it/s]


 79%|█████████████████████████████████████████████████████████▌               | 206795/262326 [12:17<03:07, 296.83it/s]


 79%|█████████████████████████████████████████████████████████▌               | 206825/262326 [12:17<03:15, 283.65it/s]


 79%|█████████████████████████████████████████████████████████▌               | 206854/262326 [12:17<03:14, 284.52it/s]


 79%|█████████████████████████████████████████████████████████▌               | 206888/262326 [12:17<03:12, 287.54it/s]


 79%|█████████████████████████████████████████████████████████▌               | 206917/262326 [12:18<03:21, 274.34it/s]


 79%|█████████████████████████████████████████████████████████▌               | 206947/262326 [12:18<03:18, 279.44it/s]


 79%|█████████████████████████████████████████████████████████▌               | 206977/262326 [12:18<03:16, 281.06it/s]


 79%|█████████████████████████████████████████████████████████▌               | 207006/262326 [12:18<03:27, 267.15it/s]


 79%|█████████████████████████████████████████████████████████▌               | 207037/262326 [12:18<03:20, 275.62it/s]


 79%|█████████████████████████████████████████████████████████▌               | 207067/262326 [12:18<03:17, 280.21it/s]


 79%|█████████████████████████████████████████████████████████▋               | 207102/262326 [12:18<03:12, 287.01it/s]


 79%|█████████████████████████████████████████████████████████▋               | 207134/262326 [12:18<03:06, 295.53it/s]


 79%|█████████████████████████████████████████████████████████▋               | 207164/262326 [12:18<03:05, 296.84it/s]


 79%|█████████████████████████████████████████████████████████▋               | 207194/262326 [12:19<03:05, 297.68it/s]


 79%|█████████████████████████████████████████████████████████▋               | 207227/262326 [12:19<03:07, 294.05it/s]


 79%|█████████████████████████████████████████████████████████▋               | 207257/262326 [12:19<03:13, 284.27it/s]


 79%|█████████████████████████████████████████████████████████▋               | 207290/262326 [12:19<03:07, 293.53it/s]


 79%|█████████████████████████████████████████████████████████▋               | 207321/262326 [12:19<03:04, 297.57it/s]


 79%|█████████████████████████████████████████████████████████▋               | 207355/262326 [12:19<03:05, 296.92it/s]


 79%|█████████████████████████████████████████████████████████▋               | 207385/262326 [12:19<03:05, 296.92it/s]


 79%|█████████████████████████████████████████████████████████▋               | 207416/262326 [12:19<03:02, 300.11it/s]


 79%|█████████████████████████████████████████████████████████▋               | 207447/262326 [12:19<03:01, 302.94it/s]


 79%|█████████████████████████████████████████████████████████▋               | 207478/262326 [12:20<03:02, 301.01it/s]


 79%|█████████████████████████████████████████████████████████▋               | 207513/262326 [12:20<02:59, 305.04it/s]


 79%|█████████████████████████████████████████████████████████▊               | 207544/262326 [12:20<03:11, 285.36it/s]


 79%|█████████████████████████████████████████████████████████▊               | 207573/262326 [12:20<03:15, 279.93it/s]


 79%|█████████████████████████████████████████████████████████▊               | 207605/262326 [12:20<03:09, 289.51it/s]


 79%|█████████████████████████████████████████████████████████▊               | 207635/262326 [12:20<03:07, 292.18it/s]


 79%|█████████████████████████████████████████████████████████▊               | 207667/262326 [12:20<03:09, 287.89it/s]


 79%|█████████████████████████████████████████████████████████▊               | 207697/262326 [12:20<03:08, 290.51it/s]


 79%|█████████████████████████████████████████████████████████▊               | 207727/262326 [12:20<03:06, 292.21it/s]


 79%|█████████████████████████████████████████████████████████▊               | 207757/262326 [12:20<03:05, 294.08it/s]


 79%|█████████████████████████████████████████████████████████▊               | 207790/262326 [12:21<03:06, 291.79it/s]


 79%|█████████████████████████████████████████████████████████▊               | 207820/262326 [12:21<03:06, 292.38it/s]


 79%|█████████████████████████████████████████████████████████▊               | 207850/262326 [12:21<03:06, 291.66it/s]


 79%|█████████████████████████████████████████████████████████▊               | 207885/262326 [12:21<03:02, 297.55it/s]


 79%|█████████████████████████████████████████████████████████▊               | 207920/262326 [12:21<03:02, 298.62it/s]


 79%|█████████████████████████████████████████████████████████▊               | 207950/262326 [12:21<03:07, 289.78it/s]


 79%|█████████████████████████████████████████████████████████▉               | 207980/262326 [12:21<03:12, 282.24it/s]


 79%|█████████████████████████████████████████████████████████▉               | 208009/262326 [12:21<03:16, 276.21it/s]


 79%|█████████████████████████████████████████████████████████▉               | 208038/262326 [12:21<03:14, 278.59it/s]


 79%|█████████████████████████████████████████████████████████▉               | 208072/262326 [12:22<03:10, 284.45it/s]


 79%|█████████████████████████████████████████████████████████▉               | 208102/262326 [12:22<03:16, 276.48it/s]


 79%|█████████████████████████████████████████████████████████▉               | 208130/262326 [12:22<03:16, 276.17it/s]


 79%|█████████████████████████████████████████████████████████▉               | 208164/262326 [12:22<03:10, 284.00it/s]


 79%|█████████████████████████████████████████████████████████▉               | 208199/262326 [12:22<03:01, 298.11it/s]


 79%|█████████████████████████████████████████████████████████▉               | 208230/262326 [12:22<02:59, 300.62it/s]


 79%|█████████████████████████████████████████████████████████▉               | 208261/262326 [12:22<02:58, 302.68it/s]


 79%|█████████████████████████████████████████████████████████▉               | 208292/262326 [12:22<03:05, 290.99it/s]


 79%|█████████████████████████████████████████████████████████▉               | 208322/262326 [12:22<03:04, 293.17it/s]


 79%|█████████████████████████████████████████████████████████▉               | 208353/262326 [12:23<03:01, 296.79it/s]


 79%|█████████████████████████████████████████████████████████▉               | 208384/262326 [12:23<03:00, 299.58it/s]


 79%|█████████████████████████████████████████████████████████▉               | 208415/262326 [12:23<03:06, 289.29it/s]


 79%|██████████████████████████████████████████████████████████               | 208450/262326 [12:23<03:03, 293.54it/s]


 79%|██████████████████████████████████████████████████████████               | 208482/262326 [12:23<02:59, 300.75it/s]


 79%|██████████████████████████████████████████████████████████               | 208513/262326 [12:23<02:57, 302.39it/s]


 79%|██████████████████████████████████████████████████████████               | 208544/262326 [12:23<02:56, 304.45it/s]


 80%|██████████████████████████████████████████████████████████               | 208575/262326 [12:23<02:56, 305.20it/s]


 80%|██████████████████████████████████████████████████████████               | 208606/262326 [12:23<03:02, 293.69it/s]


 80%|██████████████████████████████████████████████████████████               | 208637/262326 [12:23<03:00, 298.22it/s]


 80%|██████████████████████████████████████████████████████████               | 208667/262326 [12:24<03:08, 285.09it/s]


 80%|██████████████████████████████████████████████████████████               | 208696/262326 [12:24<03:17, 272.16it/s]


 80%|██████████████████████████████████████████████████████████               | 208725/262326 [12:24<03:13, 276.47it/s]


 80%|██████████████████████████████████████████████████████████               | 208762/262326 [12:24<03:05, 288.44it/s]


 80%|██████████████████████████████████████████████████████████               | 208794/262326 [12:24<03:00, 295.86it/s]


 80%|██████████████████████████████████████████████████████████               | 208828/262326 [12:24<03:00, 295.94it/s]


 80%|██████████████████████████████████████████████████████████               | 208858/262326 [12:24<03:07, 284.96it/s]


 80%|██████████████████████████████████████████████████████████▏              | 208888/262326 [12:24<03:06, 286.42it/s]


 80%|██████████████████████████████████████████████████████████▏              | 208917/262326 [12:24<03:14, 274.43it/s]


 80%|██████████████████████████████████████████████████████████▏              | 208945/262326 [12:25<03:22, 263.05it/s]


 80%|██████████████████████████████████████████████████████████▏              | 208976/262326 [12:25<03:13, 275.41it/s]


 80%|██████████████████████████████████████████████████████████▏              | 209006/262326 [12:25<03:18, 268.19it/s]


 80%|██████████████████████████████████████████████████████████▏              | 209034/262326 [12:25<03:16, 271.25it/s]


 80%|██████████████████████████████████████████████████████████▏              | 209062/262326 [12:25<03:14, 273.46it/s]


 80%|██████████████████████████████████████████████████████████▏              | 209090/262326 [12:25<03:16, 271.61it/s]


 80%|██████████████████████████████████████████████████████████▏              | 209123/262326 [12:25<03:09, 280.13it/s]


 80%|██████████████████████████████████████████████████████████▏              | 209154/262326 [12:25<03:05, 287.33it/s]


 80%|██████████████████████████████████████████████████████████▏              | 209189/262326 [12:25<03:01, 291.99it/s]


 80%|██████████████████████████████████████████████████████████▏              | 209219/262326 [12:26<03:01, 293.13it/s]


 80%|██████████████████████████████████████████████████████████▏              | 209249/262326 [12:26<03:08, 281.59it/s]


 80%|██████████████████████████████████████████████████████████▏              | 209279/262326 [12:26<03:05, 286.34it/s]


 80%|██████████████████████████████████████████████████████████▏              | 209308/262326 [12:26<03:04, 286.72it/s]


 80%|██████████████████████████████████████████████████████████▎              | 209338/262326 [12:26<03:02, 290.19it/s]


 80%|██████████████████████████████████████████████████████████▎              | 209370/262326 [12:26<03:04, 286.73it/s]


 80%|██████████████████████████████████████████████████████████▎              | 209399/262326 [12:26<03:04, 287.56it/s]


 80%|██████████████████████████████████████████████████████████▎              | 209428/262326 [12:26<03:04, 287.48it/s]


 80%|██████████████████████████████████████████████████████████▎              | 209459/262326 [12:26<02:59, 293.83it/s]


 80%|██████████████████████████████████████████████████████████▎              | 209489/262326 [12:26<02:58, 295.28it/s]


 80%|██████████████████████████████████████████████████████████▎              | 209519/262326 [12:27<03:06, 282.64it/s]


 80%|██████████████████████████████████████████████████████████▎              | 209554/262326 [12:27<03:03, 287.52it/s]


 80%|██████████████████████████████████████████████████████████▎              | 209583/262326 [12:27<03:11, 275.83it/s]


 80%|██████████████████████████████████████████████████████████▎              | 209611/262326 [12:27<03:12, 274.51it/s]


 80%|██████████████████████████████████████████████████████████▎              | 209639/262326 [12:27<03:19, 264.00it/s]


 80%|██████████████████████████████████████████████████████████▎              | 209671/262326 [12:27<03:16, 267.93it/s]


 80%|██████████████████████████████████████████████████████████▎              | 209700/262326 [12:27<03:13, 272.21it/s]


 80%|██████████████████████████████████████████████████████████▎              | 209732/262326 [12:27<03:11, 274.21it/s]


 80%|██████████████████████████████████████████████████████████▎              | 209763/262326 [12:27<03:06, 282.15it/s]


 80%|██████████████████████████████████████████████████████████▍              | 209797/262326 [12:28<03:03, 286.35it/s]


 80%|██████████████████████████████████████████████████████████▍              | 209827/262326 [12:28<03:01, 289.86it/s]


 80%|██████████████████████████████████████████████████████████▍              | 209859/262326 [12:28<03:04, 283.99it/s]


 80%|██████████████████████████████████████████████████████████▍              | 209889/262326 [12:28<03:01, 288.22it/s]


 80%|██████████████████████████████████████████████████████████▍              | 209925/262326 [12:28<02:57, 295.69it/s]


 80%|██████████████████████████████████████████████████████████▍              | 209955/262326 [12:28<02:56, 295.93it/s]


 80%|██████████████████████████████████████████████████████████▍              | 209985/262326 [12:28<03:02, 287.49it/s]


 80%|██████████████████████████████████████████████████████████▍              | 210016/262326 [12:28<02:58, 293.20it/s]


 80%|██████████████████████████████████████████████████████████▍              | 210049/262326 [12:28<02:54, 298.81it/s]


 80%|██████████████████████████████████████████████████████████▍              | 210079/262326 [12:29<02:54, 298.66it/s]


 80%|██████████████████████████████████████████████████████████▍              | 210109/262326 [12:29<02:55, 298.27it/s]


 80%|██████████████████████████████████████████████████████████▍              | 210139/262326 [12:29<03:02, 286.04it/s]


 80%|██████████████████████████████████████████████████████████▍              | 210168/262326 [12:29<03:01, 286.77it/s]


 80%|██████████████████████████████████████████████████████████▍              | 210204/262326 [12:29<02:56, 295.14it/s]


 80%|██████████████████████████████████████████████████████████▌              | 210234/262326 [12:29<02:56, 294.89it/s]


 80%|██████████████████████████████████████████████████████████▌              | 210264/262326 [12:29<03:04, 282.76it/s]


 80%|██████████████████████████████████████████████████████████▌              | 210293/262326 [12:29<03:02, 284.56it/s]


 80%|██████████████████████████████████████████████████████████▌              | 210323/262326 [12:29<03:08, 276.39it/s]


 80%|██████████████████████████████████████████████████████████▌              | 210353/262326 [12:30<03:04, 282.38it/s]


 80%|██████████████████████████████████████████████████████████▌              | 210385/262326 [12:30<02:57, 292.13it/s]


 80%|██████████████████████████████████████████████████████████▌              | 210415/262326 [12:30<02:58, 290.38it/s]


 80%|██████████████████████████████████████████████████████████▌              | 210445/262326 [12:30<03:01, 285.41it/s]


 80%|██████████████████████████████████████████████████████████▌              | 210474/262326 [12:30<03:03, 282.81it/s]


 80%|██████████████████████████████████████████████████████████▌              | 210505/262326 [12:30<03:04, 281.26it/s]


 80%|██████████████████████████████████████████████████████████▌              | 210534/262326 [12:30<03:13, 268.30it/s]


 80%|██████████████████████████████████████████████████████████▌              | 210565/262326 [12:30<03:05, 278.80it/s]


 80%|██████████████████████████████████████████████████████████▌              | 210594/262326 [12:30<03:03, 281.73it/s]


 80%|██████████████████████████████████████████████████████████▌              | 210628/262326 [12:30<03:01, 285.37it/s]


 80%|██████████████████████████████████████████████████████████▌              | 210657/262326 [12:31<03:02, 282.51it/s]


 80%|██████████████████████████████████████████████████████████▋              | 210691/262326 [12:31<03:00, 285.98it/s]


 80%|██████████████████████████████████████████████████████████▋              | 210722/262326 [12:31<03:01, 284.56it/s]


 80%|██████████████████████████████████████████████████████████▋              | 210751/262326 [12:31<03:02, 282.99it/s]


 80%|██████████████████████████████████████████████████████████▋              | 210780/262326 [12:31<03:10, 271.02it/s]


 80%|██████████████████████████████████████████████████████████▋              | 210813/262326 [12:31<03:06, 275.62it/s]


 80%|██████████████████████████████████████████████████████████▋              | 210848/262326 [12:31<03:01, 283.29it/s]


 80%|██████████████████████████████████████████████████████████▋              | 210879/262326 [12:31<02:57, 289.41it/s]


 80%|██████████████████████████████████████████████████████████▋              | 210909/262326 [12:31<03:04, 278.84it/s]


 80%|██████████████████████████████████████████████████████████▋              | 210938/262326 [12:32<03:28, 246.74it/s]


 80%|██████████████████████████████████████████████████████████▋              | 210964/262326 [12:32<03:36, 237.21it/s]


 80%|██████████████████████████████████████████████████████████▋              | 210993/262326 [12:32<03:32, 241.46it/s]


 80%|██████████████████████████████████████████████████████████▋              | 211018/262326 [12:32<03:59, 213.89it/s]


 80%|██████████████████████████████████████████████████████████▋              | 211044/262326 [12:32<03:49, 223.78it/s]


 80%|██████████████████████████████████████████████████████████▋              | 211068/262326 [12:32<04:13, 202.02it/s]


 80%|██████████████████████████████████████████████████████████▋              | 211096/262326 [12:32<04:02, 211.01it/s]


 80%|██████████████████████████████████████████████████████████▋              | 211118/262326 [12:32<04:00, 212.67it/s]


 80%|██████████████████████████████████████████████████████████▊              | 211141/262326 [12:33<03:55, 217.45it/s]


 80%|██████████████████████████████████████████████████████████▊              | 211168/262326 [12:33<03:41, 230.54it/s]


 81%|██████████████████████████████████████████████████████████▊              | 211193/262326 [12:33<03:37, 235.35it/s]


 81%|██████████████████████████████████████████████████████████▊              | 211223/262326 [12:33<03:30, 243.02it/s]


 81%|██████████████████████████████████████████████████████████▊              | 211248/262326 [12:33<03:29, 244.04it/s]


 81%|██████████████████████████████████████████████████████████▊              | 211274/262326 [12:33<03:26, 247.38it/s]


 81%|██████████████████████████████████████████████████████████▊              | 211308/262326 [12:33<03:15, 260.69it/s]


 81%|██████████████████████████████████████████████████████████▊              | 211336/262326 [12:33<03:12, 265.44it/s]


 81%|██████████████████████████████████████████████████████████▊              | 211363/262326 [12:33<03:12, 265.15it/s]


 81%|██████████████████████████████████████████████████████████▊              | 211390/262326 [12:34<03:18, 256.05it/s]


 81%|██████████████████████████████████████████████████████████▊              | 211416/262326 [12:34<03:19, 255.36it/s]


 81%|██████████████████████████████████████████████████████████▊              | 211443/262326 [12:34<03:17, 257.47it/s]


 81%|██████████████████████████████████████████████████████████▊              | 211469/262326 [12:34<03:19, 254.64it/s]


 81%|██████████████████████████████████████████████████████████▊              | 211498/262326 [12:34<03:16, 258.36it/s]


 81%|██████████████████████████████████████████████████████████▊              | 211527/262326 [12:34<03:18, 256.06it/s]


 81%|██████████████████████████████████████████████████████████▊              | 211553/262326 [12:34<03:18, 256.28it/s]


 81%|██████████████████████████████████████████████████████████▉              | 211586/262326 [12:34<03:11, 264.72it/s]


 81%|██████████████████████████████████████████████████████████▉              | 211614/262326 [12:34<03:09, 267.67it/s]


 81%|██████████████████████████████████████████████████████████▉              | 211641/262326 [12:34<03:09, 268.12it/s]


 81%|██████████████████████████████████████████████████████████▉              | 211672/262326 [12:35<03:08, 268.29it/s]


 81%|██████████████████████████████████████████████████████████▉              | 211699/262326 [12:35<03:10, 266.13it/s]


 81%|██████████████████████████████████████████████████████████▉              | 211729/262326 [12:35<03:07, 269.54it/s]


 81%|██████████████████████████████████████████████████████████▉              | 211756/262326 [12:35<03:11, 264.09it/s]


 81%|██████████████████████████████████████████████████████████▉              | 211783/262326 [12:35<03:10, 264.95it/s]


 81%|██████████████████████████████████████████████████████████▉              | 211810/262326 [12:35<03:26, 244.29it/s]


 81%|██████████████████████████████████████████████████████████▉              | 211836/262326 [12:35<03:24, 247.28it/s]


 81%|██████████████████████████████████████████████████████████▉              | 211867/262326 [12:35<03:18, 253.75it/s]


 81%|██████████████████████████████████████████████████████████▉              | 211893/262326 [12:35<03:28, 242.27it/s]


 81%|██████████████████████████████████████████████████████████▉              | 211921/262326 [12:36<03:20, 251.81it/s]


 81%|██████████████████████████████████████████████████████████▉              | 211950/262326 [12:36<03:19, 252.38it/s]


 81%|██████████████████████████████████████████████████████████▉              | 211976/262326 [12:36<03:27, 242.15it/s]


 81%|██████████████████████████████████████████████████████████▉              | 212005/262326 [12:36<03:17, 254.66it/s]


 81%|███████████████████████████████████████████████████████████              | 212031/262326 [12:36<03:20, 250.35it/s]


 81%|███████████████████████████████████████████████████████████              | 212057/262326 [12:36<03:23, 247.02it/s]


 81%|███████████████████████████████████████████████████████████              | 212087/262326 [12:36<03:13, 260.10it/s]


 81%|███████████████████████████████████████████████████████████              | 212118/262326 [12:36<03:04, 271.40it/s]


 81%|███████████████████████████████████████████████████████████              | 212156/262326 [12:36<02:54, 288.17it/s]


 81%|███████████████████████████████████████████████████████████              | 212186/262326 [12:37<02:52, 291.26it/s]


 81%|███████████████████████████████████████████████████████████              | 212216/262326 [12:37<02:50, 293.06it/s]


 81%|███████████████████████████████████████████████████████████              | 212246/262326 [12:37<03:04, 271.81it/s]


 81%|███████████████████████████████████████████████████████████              | 212277/262326 [12:37<02:59, 279.22it/s]


 81%|███████████████████████████████████████████████████████████              | 212309/262326 [12:37<02:54, 287.07it/s]


 81%|███████████████████████████████████████████████████████████              | 212343/262326 [12:37<02:52, 290.16it/s]


 81%|███████████████████████████████████████████████████████████              | 212378/262326 [12:37<02:49, 295.20it/s]


 81%|███████████████████████████████████████████████████████████              | 212408/262326 [12:37<02:48, 295.62it/s]


 81%|███████████████████████████████████████████████████████████              | 212440/262326 [12:37<02:44, 302.47it/s]


 81%|███████████████████████████████████████████████████████████▏             | 212471/262326 [12:38<02:43, 304.03it/s]


 81%|███████████████████████████████████████████████████████████▏             | 212502/262326 [12:38<02:43, 305.54it/s]


 81%|███████████████████████████████████████████████████████████▏             | 212533/262326 [12:38<02:46, 298.83it/s]


 81%|███████████████████████████████████████████████████████████▏             | 212563/262326 [12:38<02:54, 284.40it/s]


 81%|███████████████████████████████████████████████████████████▏             | 212596/262326 [12:38<02:51, 290.80it/s]


 81%|███████████████████████████████████████████████████████████▏             | 212631/262326 [12:38<02:48, 294.70it/s]


 81%|███████████████████████████████████████████████████████████▏             | 212661/262326 [12:38<02:48, 294.93it/s]


 81%|███████████████████████████████████████████████████████████▏             | 212693/262326 [12:38<02:51, 289.27it/s]


 81%|███████████████████████████████████████████████████████████▏             | 212724/262326 [12:38<02:55, 282.03it/s]


 81%|███████████████████████████████████████████████████████████▏             | 212756/262326 [12:39<02:50, 290.28it/s]


 81%|███████████████████████████████████████████████████████████▏             | 212791/262326 [12:39<02:48, 293.62it/s]


 81%|███████████████████████████████████████████████████████████▏             | 212821/262326 [12:39<02:54, 283.90it/s]


 81%|███████████████████████████████████████████████████████████▏             | 212850/262326 [12:39<02:54, 283.89it/s]


 81%|███████████████████████████████████████████████████████████▏             | 212880/262326 [12:39<02:52, 286.44it/s]


 81%|███████████████████████████████████████████████████████████▏             | 212914/262326 [12:39<02:50, 289.54it/s]


 81%|███████████████████████████████████████████████████████████▎             | 212948/262326 [12:39<02:49, 291.19it/s]


 81%|███████████████████████████████████████████████████████████▎             | 212978/262326 [12:39<02:48, 292.56it/s]


 81%|███████████████████████████████████████████████████████████▎             | 213010/262326 [12:39<02:45, 298.79it/s]


 81%|███████████████████████████████████████████████████████████▎             | 213040/262326 [12:39<02:51, 287.12it/s]


 81%|███████████████████████████████████████████████████████████▎             | 213069/262326 [12:40<02:52, 284.97it/s]


 81%|███████████████████████████████████████████████████████████▎             | 213099/262326 [12:40<02:56, 278.55it/s]


 81%|███████████████████████████████████████████████████████████▎             | 213128/262326 [12:40<02:56, 278.74it/s]


 81%|███████████████████████████████████████████████████████████▎             | 213163/262326 [12:40<02:51, 286.51it/s]


 81%|███████████████████████████████████████████████████████████▎             | 213192/262326 [12:40<02:59, 273.92it/s]


 81%|███████████████████████████████████████████████████████████▎             | 213221/262326 [12:40<02:57, 276.59it/s]


 81%|███████████████████████████████████████████████████████████▎             | 213249/262326 [12:40<02:58, 275.19it/s]


 81%|███████████████████████████████████████████████████████████▎             | 213285/262326 [12:40<02:51, 286.07it/s]


 81%|███████████████████████████████████████████████████████████▎             | 213318/262326 [12:40<02:50, 286.97it/s]


 81%|███████████████████████████████████████████████████████████▎             | 213347/262326 [12:41<02:50, 287.81it/s]


 81%|███████████████████████████████████████████████████████████▍             | 213377/262326 [12:41<02:56, 277.86it/s]


 81%|███████████████████████████████████████████████████████████▍             | 213406/262326 [12:41<02:55, 278.76it/s]


 81%|███████████████████████████████████████████████████████████▍             | 213442/262326 [12:41<02:49, 289.13it/s]


 81%|███████████████████████████████████████████████████████████▍             | 213472/262326 [12:41<02:56, 276.98it/s]


 81%|███████████████████████████████████████████████████████████▍             | 213500/262326 [12:41<02:57, 274.86it/s]


 81%|███████████████████████████████████████████████████████████▍             | 213534/262326 [12:41<02:52, 283.47it/s]


 81%|███████████████████████████████████████████████████████████▍             | 213565/262326 [12:41<02:48, 290.16it/s]


 81%|███████████████████████████████████████████████████████████▍             | 213596/262326 [12:41<02:44, 295.48it/s]


 81%|███████████████████████████████████████████████████████████▍             | 213626/262326 [12:42<02:52, 282.62it/s]


 81%|███████████████████████████████████████████████████████████▍             | 213659/262326 [12:42<02:51, 283.71it/s]


 81%|███████████████████████████████████████████████████████████▍             | 213688/262326 [12:42<02:50, 284.90it/s]


 81%|███████████████████████████████████████████████████████████▍             | 213722/262326 [12:42<02:48, 287.99it/s]


 81%|███████████████████████████████████████████████████████████▍             | 213751/262326 [12:42<02:49, 286.93it/s]


 81%|███████████████████████████████████████████████████████████▍             | 213780/262326 [12:42<02:49, 286.97it/s]


 82%|███████████████████████████████████████████████████████████▍             | 213809/262326 [12:42<02:48, 287.38it/s]


 82%|███████████████████████████████████████████████████████████▌             | 213838/262326 [12:42<02:48, 286.95it/s]


 82%|███████████████████████████████████████████████████████████▌             | 213871/262326 [12:42<02:48, 287.14it/s]


 82%|███████████████████████████████████████████████████████████▌             | 213900/262326 [12:43<02:55, 275.72it/s]


 82%|███████████████████████████████████████████████████████████▌             | 213930/262326 [12:43<02:53, 279.68it/s]


 82%|███████████████████████████████████████████████████████████▌             | 213960/262326 [12:43<02:50, 283.30it/s]


 82%|███████████████████████████████████████████████████████████▌             | 213994/262326 [12:43<02:46, 289.52it/s]


 82%|███████████████████████████████████████████████████████████▌             | 214024/262326 [12:43<02:45, 291.63it/s]


 82%|███████████████████████████████████████████████████████████▌             | 214054/262326 [12:43<02:44, 294.08it/s]


 82%|███████████████████████████████████████████████████████████▌             | 214084/262326 [12:43<02:43, 295.79it/s]


 82%|███████████████████████████████████████████████████████████▌             | 214114/262326 [12:43<02:42, 296.32it/s]


 82%|███████████████████████████████████████████████████████████▌             | 214148/262326 [12:43<02:42, 296.22it/s]


 82%|███████████████████████████████████████████████████████████▌             | 214179/262326 [12:43<02:41, 298.84it/s]


 82%|███████████████████████████████████████████████████████████▌             | 214209/262326 [12:44<02:48, 284.97it/s]


 82%|███████████████████████████████████████████████████████████▌             | 214238/262326 [12:44<03:11, 250.54it/s]


 82%|███████████████████████████████████████████████████████████▋             | 214267/262326 [12:44<03:04, 260.70it/s]


 82%|███████████████████████████████████████████████████████████▋             | 214302/262326 [12:44<02:56, 272.27it/s]


 82%|███████████████████████████████████████████████████████████▋             | 214333/262326 [12:44<02:50, 281.68it/s]


 82%|███████████████████████████████████████████████████████████▋             | 214363/262326 [12:44<02:47, 286.63it/s]


 82%|███████████████████████████████████████████████████████████▋             | 214393/262326 [12:44<02:51, 279.97it/s]


 82%|███████████████████████████████████████████████████████████▋             | 214422/262326 [12:44<03:26, 232.17it/s]


 82%|███████████████████████████████████████████████████████████▋             | 214452/262326 [12:45<03:18, 240.76it/s]


 82%|███████████████████████████████████████████████████████████▋             | 214482/262326 [12:45<03:07, 255.71it/s]


 82%|███████████████████████████████████████████████████████████▋             | 214509/262326 [12:45<03:04, 259.26it/s]


 82%|███████████████████████████████████████████████████████████▋             | 214543/262326 [12:45<02:57, 269.74it/s]


 82%|███████████████████████████████████████████████████████████▋             | 214573/262326 [12:45<02:59, 265.79it/s]


 82%|███████████████████████████████████████████████████████████▋             | 214603/262326 [12:45<02:54, 273.58it/s]


 82%|███████████████████████████████████████████████████████████▋             | 214631/262326 [12:45<03:00, 263.62it/s]


 82%|███████████████████████████████████████████████████████████▋             | 214667/262326 [12:45<02:52, 276.38it/s]


 82%|███████████████████████████████████████████████████████████▋             | 214697/262326 [12:45<02:49, 280.66it/s]


 82%|███████████████████████████████████████████████████████████▊             | 214731/262326 [12:46<02:47, 284.74it/s]


 82%|███████████████████████████████████████████████████████████▊             | 214762/262326 [12:46<02:43, 291.75it/s]


 82%|███████████████████████████████████████████████████████████▊             | 214792/262326 [12:46<02:42, 292.52it/s]


 82%|███████████████████████████████████████████████████████████▊             | 214822/262326 [12:46<02:43, 289.99it/s]


 82%|███████████████████████████████████████████████████████████▊             | 214853/262326 [12:46<02:40, 295.08it/s]


 82%|███████████████████████████████████████████████████████████▊             | 214885/262326 [12:46<02:40, 295.61it/s]


 82%|███████████████████████████████████████████████████████████▊             | 214915/262326 [12:46<02:40, 295.67it/s]


 82%|███████████████████████████████████████████████████████████▊             | 214945/262326 [12:46<02:39, 296.55it/s]


 82%|███████████████████████████████████████████████████████████▊             | 214975/262326 [12:46<02:39, 297.56it/s]


 82%|███████████████████████████████████████████████████████████▊             | 215005/262326 [12:46<02:38, 298.00it/s]


 82%|███████████████████████████████████████████████████████████▊             | 215035/262326 [12:47<02:45, 285.38it/s]


 82%|███████████████████████████████████████████████████████████▊             | 215064/262326 [12:47<02:45, 285.03it/s]


 82%|███████████████████████████████████████████████████████████▊             | 215093/262326 [12:47<02:52, 274.34it/s]


 82%|███████████████████████████████████████████████████████████▊             | 215123/262326 [12:47<02:48, 280.42it/s]


 82%|███████████████████████████████████████████████████████████▊             | 215153/262326 [12:47<02:44, 285.91it/s]


 82%|███████████████████████████████████████████████████████████▉             | 215189/262326 [12:47<02:40, 293.85it/s]


 82%|███████████████████████████████████████████████████████████▉             | 215219/262326 [12:47<02:40, 293.37it/s]


 82%|███████████████████████████████████████████████████████████▉             | 215249/262326 [12:47<02:51, 274.92it/s]


 82%|███████████████████████████████████████████████████████████▉             | 215280/262326 [12:47<02:45, 283.80it/s]


 82%|███████████████████████████████████████████████████████████▉             | 215313/262326 [12:48<02:39, 295.03it/s]


 82%|███████████████████████████████████████████████████████████▉             | 215345/262326 [12:48<02:35, 301.38it/s]


 82%|███████████████████████████████████████████████████████████▉             | 215376/262326 [12:48<02:59, 261.49it/s]


 82%|███████████████████████████████████████████████████████████▉             | 215412/262326 [12:48<02:47, 279.42it/s]


 82%|███████████████████████████████████████████████████████████▉             | 215442/262326 [12:48<02:45, 282.63it/s]


 82%|███████████████████████████████████████████████████████████▉             | 215472/262326 [12:48<02:46, 280.60it/s]


 82%|███████████████████████████████████████████████████████████▉             | 215503/262326 [12:48<02:49, 276.30it/s]


 82%|███████████████████████████████████████████████████████████▉             | 215534/262326 [12:48<02:45, 283.54it/s]


 82%|███████████████████████████████████████████████████████████▉             | 215566/262326 [12:48<02:43, 286.54it/s]


 82%|███████████████████████████████████████████████████████████▉             | 215598/262326 [12:49<02:39, 292.75it/s]


 82%|████████████████████████████████████████████████████████████             | 215628/262326 [12:49<02:43, 285.42it/s]


 82%|████████████████████████████████████████████████████████████             | 215657/262326 [12:49<02:48, 277.56it/s]


 82%|████████████████████████████████████████████████████████████             | 215690/262326 [12:49<02:44, 284.28it/s]


 82%|████████████████████████████████████████████████████████████             | 215721/262326 [12:49<02:40, 290.80it/s]


 82%|████████████████████████████████████████████████████████████             | 215751/262326 [12:49<02:38, 293.14it/s]


 82%|████████████████████████████████████████████████████████████             | 215781/262326 [12:49<02:38, 294.37it/s]


 82%|████████████████████████████████████████████████████████████             | 215814/262326 [12:49<02:39, 292.00it/s]


 82%|████████████████████████████████████████████████████████████             | 215845/262326 [12:49<02:37, 295.92it/s]


 82%|████████████████████████████████████████████████████████████             | 215879/262326 [12:50<02:36, 296.24it/s]


 82%|████████████████████████████████████████████████████████████             | 215909/262326 [12:50<02:36, 296.61it/s]


 82%|████████████████████████████████████████████████████████████             | 215945/262326 [12:50<02:34, 300.03it/s]


 82%|████████████████████████████████████████████████████████████             | 215976/262326 [12:50<02:38, 292.57it/s]


 82%|████████████████████████████████████████████████████████████             | 216007/262326 [12:50<02:36, 296.46it/s]


 82%|████████████████████████████████████████████████████████████             | 216037/262326 [12:50<02:39, 289.61it/s]


 82%|████████████████████████████████████████████████████████████▏            | 216067/262326 [12:50<02:42, 285.45it/s]


 82%|████████████████████████████████████████████████████████████▏            | 216096/262326 [12:50<02:44, 281.52it/s]


 82%|████████████████████████████████████████████████████████████▏            | 216128/262326 [12:50<02:44, 281.66it/s]


 82%|████████████████████████████████████████████████████████████▏            | 216158/262326 [12:50<02:41, 286.60it/s]


 82%|████████████████████████████████████████████████████████████▏            | 216193/262326 [12:51<02:38, 291.80it/s]


 82%|████████████████████████████████████████████████████████████▏            | 216224/262326 [12:51<02:35, 296.13it/s]


 82%|████████████████████████████████████████████████████████████▏            | 216254/262326 [12:51<02:38, 289.85it/s]


 82%|████████████████████████████████████████████████████████████▏            | 216288/262326 [12:51<02:37, 293.16it/s]


 82%|████████████████████████████████████████████████████████████▏            | 216323/262326 [12:51<02:33, 298.80it/s]


 82%|████████████████████████████████████████████████████████████▏            | 216358/262326 [12:51<02:33, 300.27it/s]


 82%|████████████████████████████████████████████████████████████▏            | 216389/262326 [12:51<02:32, 301.19it/s]


 83%|████████████████████████████████████████████████████████████▏            | 216420/262326 [12:51<02:31, 302.43it/s]


 83%|████████████████████████████████████████████████████████████▏            | 216451/262326 [12:51<02:36, 293.59it/s]


 83%|████████████████████████████████████████████████████████████▏            | 216483/262326 [12:52<02:33, 298.74it/s]


 83%|████████████████████████████████████████████████████████████▎            | 216513/262326 [12:52<02:33, 298.72it/s]


 83%|████████████████████████████████████████████████████████████▎            | 216543/262326 [12:52<02:35, 295.02it/s]


 83%|████████████████████████████████████████████████████████████▎            | 216576/262326 [12:52<02:34, 295.87it/s]


 83%|████████████████████████████████████████████████████████████▎            | 216607/262326 [12:52<02:32, 299.26it/s]


 83%|████████████████████████████████████████████████████████████▎            | 216637/262326 [12:52<02:32, 299.33it/s]


 83%|████████████████████████████████████████████████████████████▎            | 216667/262326 [12:52<02:33, 297.88it/s]


 83%|████████████████████████████████████████████████████████████▎            | 216700/262326 [12:52<02:34, 295.33it/s]


 83%|████████████████████████████████████████████████████████████▎            | 216731/262326 [12:52<02:32, 298.91it/s]


 83%|████████████████████████████████████████████████████████████▎            | 216768/262326 [12:53<02:29, 305.07it/s]


 83%|████████████████████████████████████████████████████████████▎            | 216799/262326 [12:53<02:29, 304.40it/s]


 83%|████████████████████████████████████████████████████████████▎            | 216830/262326 [12:53<02:31, 300.63it/s]


 83%|████████████████████████████████████████████████████████████▎            | 216861/262326 [12:53<02:30, 302.90it/s]


 83%|████████████████████████████████████████████████████████████▎            | 216892/262326 [12:53<02:33, 296.81it/s]


 83%|████████████████████████████████████████████████████████████▎            | 216923/262326 [12:53<02:31, 298.76it/s]


 83%|████████████████████████████████████████████████████████████▎            | 216954/262326 [12:53<02:30, 301.22it/s]


 83%|████████████████████████████████████████████████████████████▍            | 216989/262326 [12:53<02:30, 301.85it/s]


 83%|████████████████████████████████████████████████████████████▍            | 217025/262326 [12:53<02:28, 304.97it/s]


 83%|████████████████████████████████████████████████████████████▍            | 217056/262326 [12:53<02:28, 305.55it/s]


 83%|████████████████████████████████████████████████████████████▍            | 217087/262326 [12:54<02:27, 306.12it/s]


 83%|████████████████████████████████████████████████████████████▍            | 217118/262326 [12:54<02:27, 307.05it/s]


 83%|████████████████████████████████████████████████████████████▍            | 217149/262326 [12:54<02:32, 295.75it/s]


 83%|████████████████████████████████████████████████████████████▍            | 217179/262326 [12:54<02:33, 295.06it/s]


 83%|████████████████████████████████████████████████████████████▍            | 217209/262326 [12:54<02:32, 294.99it/s]


 83%|████████████████████████████████████████████████████████████▍            | 217239/262326 [12:54<02:38, 284.19it/s]


 83%|████████████████████████████████████████████████████████████▍            | 217272/262326 [12:54<02:38, 284.82it/s]


 83%|████████████████████████████████████████████████████████████▍            | 217303/262326 [12:54<02:35, 289.82it/s]


 83%|████████████████████████████████████████████████████████████▍            | 217335/262326 [12:54<02:31, 297.07it/s]


 83%|████████████████████████████████████████████████████████████▍            | 217366/262326 [12:55<02:35, 289.16it/s]


 83%|████████████████████████████████████████████████████████████▍            | 217396/262326 [12:55<02:37, 285.15it/s]


 83%|████████████████████████████████████████████████████████████▌            | 217425/262326 [12:55<02:42, 276.88it/s]


 83%|████████████████████████████████████████████████████████████▌            | 217460/262326 [12:55<02:54, 256.95it/s]


 83%|████████████████████████████████████████████████████████████▌            | 217488/262326 [12:55<02:53, 258.92it/s]


 83%|████████████████████████████████████████████████████████████▌            | 217520/262326 [12:55<02:49, 264.25it/s]


 83%|████████████████████████████████████████████████████████████▌            | 217550/262326 [12:55<02:43, 273.60it/s]


 83%|████████████████████████████████████████████████████████████▌            | 217581/262326 [12:55<02:37, 283.29it/s]


 83%|████████████████████████████████████████████████████████████▌            | 217612/262326 [12:55<02:34, 289.00it/s]


 83%|████████████████████████████████████████████████████████████▌            | 217642/262326 [12:56<02:33, 290.98it/s]


 83%|████████████████████████████████████████████████████████████▌            | 217676/262326 [12:56<02:31, 294.32it/s]


 83%|████████████████████████████████████████████████████████████▌            | 217706/262326 [12:56<02:37, 282.94it/s]


 83%|████████████████████████████████████████████████████████████▌            | 217736/262326 [12:56<02:35, 285.84it/s]


 83%|████████████████████████████████████████████████████████████▌            | 217765/262326 [12:56<02:35, 286.79it/s]


 83%|████████████████████████████████████████████████████████████▌            | 217794/262326 [12:56<02:34, 287.65it/s]


 83%|████████████████████████████████████████████████████████████▌            | 217823/262326 [12:56<02:34, 287.51it/s]


 83%|████████████████████████████████████████████████████████████▌            | 217854/262326 [12:56<02:37, 281.58it/s]


 83%|████████████████████████████████████████████████████████████▋            | 217885/262326 [12:56<02:34, 288.56it/s]


 83%|████████████████████████████████████████████████████████████▋            | 217922/262326 [12:56<02:29, 297.59it/s]


 83%|████████████████████████████████████████████████████████████▋            | 217952/262326 [12:57<02:29, 297.53it/s]


 83%|████████████████████████████████████████████████████████████▋            | 217982/262326 [12:57<02:29, 296.02it/s]


 83%|████████████████████████████████████████████████████████████▋            | 218012/262326 [12:57<02:36, 282.46it/s]


 83%|████████████████████████████████████████████████████████████▋            | 218046/262326 [12:57<02:33, 288.24it/s]


 83%|████████████████████████████████████████████████████████████▋            | 218075/262326 [12:57<02:38, 280.05it/s]


 83%|████████████████████████████████████████████████████████████▋            | 218105/262326 [12:57<02:35, 284.94it/s]


 83%|████████████████████████████████████████████████████████████▋            | 218137/262326 [12:57<02:33, 287.99it/s]


 83%|████████████████████████████████████████████████████████████▋            | 218171/262326 [12:57<02:31, 290.87it/s]


 83%|████████████████████████████████████████████████████████████▋            | 218202/262326 [12:57<02:29, 294.84it/s]


 83%|████████████████████████████████████████████████████████████▋            | 218237/262326 [12:58<02:28, 297.63it/s]


 83%|████████████████████████████████████████████████████████████▋            | 218268/262326 [12:58<02:26, 299.95it/s]


 83%|████████████████████████████████████████████████████████████▋            | 218299/262326 [12:58<02:27, 298.13it/s]


 83%|████████████████████████████████████████████████████████████▊            | 218333/262326 [12:58<02:26, 301.22it/s]


 83%|████████████████████████████████████████████████████████████▊            | 218364/262326 [12:58<02:31, 290.85it/s]


 83%|████████████████████████████████████████████████████████████▊            | 218394/262326 [12:58<02:30, 292.16it/s]


 83%|████████████████████████████████████████████████████████████▊            | 218424/262326 [12:58<02:36, 280.80it/s]


 83%|████████████████████████████████████████████████████████████▊            | 218455/262326 [12:58<02:32, 288.54it/s]


 83%|████████████████████████████████████████████████████████████▊            | 218486/262326 [12:58<02:29, 293.87it/s]


 83%|████████████████████████████████████████████████████████████▊            | 218520/262326 [12:59<02:28, 294.57it/s]


 83%|████████████████████████████████████████████████████████████▊            | 218550/262326 [12:59<02:28, 295.29it/s]


 83%|████████████████████████████████████████████████████████████▊            | 218581/262326 [12:59<02:26, 298.06it/s]


 83%|████████████████████████████████████████████████████████████▊            | 218611/262326 [12:59<02:26, 298.58it/s]


 83%|████████████████████████████████████████████████████████████▊            | 218643/262326 [12:59<02:29, 292.36it/s]


 83%|████████████████████████████████████████████████████████████▊            | 218673/262326 [12:59<02:28, 293.94it/s]


 83%|████████████████████████████████████████████████████████████▊            | 218703/262326 [12:59<02:34, 282.63it/s]


 83%|████████████████████████████████████████████████████████████▊            | 218732/262326 [12:59<02:34, 281.98it/s]


 83%|████████████████████████████████████████████████████████████▉            | 218761/262326 [12:59<02:33, 284.16it/s]


 83%|████████████████████████████████████████████████████████████▉            | 218795/262326 [12:59<02:30, 288.71it/s]


 83%|████████████████████████████████████████████████████████████▉            | 218831/262326 [13:00<02:27, 295.28it/s]


 83%|████████████████████████████████████████████████████████████▉            | 218861/262326 [13:00<02:27, 293.85it/s]


 83%|████████████████████████████████████████████████████████████▉            | 218895/262326 [13:00<02:27, 294.74it/s]


 83%|████████████████████████████████████████████████████████████▉            | 218925/262326 [13:00<02:27, 295.14it/s]


 83%|████████████████████████████████████████████████████████████▉            | 218955/262326 [13:00<02:27, 294.19it/s]


 83%|████████████████████████████████████████████████████████████▉            | 218986/262326 [13:00<02:31, 286.82it/s]


 83%|████████████████████████████████████████████████████████████▉            | 219015/262326 [13:00<02:34, 280.57it/s]


 84%|████████████████████████████████████████████████████████████▉            | 219048/262326 [13:00<02:31, 286.53it/s]


 84%|████████████████████████████████████████████████████████████▉            | 219077/262326 [13:01<03:05, 233.50it/s]


 84%|████████████████████████████████████████████████████████████▉            | 219108/262326 [13:01<02:53, 249.28it/s]


 84%|████████████████████████████████████████████████████████████▉            | 219138/262326 [13:01<02:45, 260.44it/s]


 84%|████████████████████████████████████████████████████████████▉            | 219172/262326 [13:01<02:39, 270.26it/s]


 84%|████████████████████████████████████████████████████████████▉            | 219202/262326 [13:01<02:40, 268.60it/s]


 84%|█████████████████████████████████████████████████████████████            | 219233/262326 [13:01<02:35, 276.72it/s]


 84%|█████████████████████████████████████████████████████████████            | 219264/262326 [13:01<02:37, 274.13it/s]


 84%|█████████████████████████████████████████████████████████████            | 219292/262326 [13:01<02:58, 241.10it/s]


 84%|█████████████████████████████████████████████████████████████            | 219319/262326 [13:01<02:53, 247.66it/s]


 84%|█████████████████████████████████████████████████████████████            | 219345/262326 [13:02<02:58, 240.72it/s]


 84%|█████████████████████████████████████████████████████████████            | 219375/262326 [13:02<02:48, 254.57it/s]


 84%|█████████████████████████████████████████████████████████████            | 219402/262326 [13:02<02:49, 253.09it/s]


 84%|█████████████████████████████████████████████████████████████            | 219433/262326 [13:02<02:43, 262.09it/s]


 84%|█████████████████████████████████████████████████████████████            | 219464/262326 [13:02<02:36, 274.06it/s]


 84%|█████████████████████████████████████████████████████████████            | 219498/262326 [13:02<02:32, 280.55it/s]


 84%|█████████████████████████████████████████████████████████████            | 219527/262326 [13:02<02:31, 281.81it/s]


 84%|█████████████████████████████████████████████████████████████            | 219563/262326 [13:02<02:27, 290.59it/s]


 84%|█████████████████████████████████████████████████████████████            | 219593/262326 [13:02<02:32, 279.40it/s]


 84%|█████████████████████████████████████████████████████████████            | 219622/262326 [13:03<02:39, 267.94it/s]


 84%|█████████████████████████████████████████████████████████████            | 219650/262326 [13:03<02:44, 259.17it/s]


 84%|█████████████████████████████████████████████████████████████▏           | 219677/262326 [13:03<02:43, 260.21it/s]


 84%|█████████████████████████████████████████████████████████████▏           | 219712/262326 [13:03<02:35, 273.54it/s]


 84%|█████████████████████████████████████████████████████████████▏           | 219744/262326 [13:03<02:29, 284.91it/s]


 84%|█████████████████████████████████████████████████████████████▏           | 219778/262326 [13:03<02:27, 287.63it/s]


 84%|█████████████████████████████████████████████████████████████▏           | 219808/262326 [13:03<02:26, 291.14it/s]


 84%|█████████████████████████████████████████████████████████████▏           | 219838/262326 [13:03<02:25, 292.87it/s]


 84%|█████████████████████████████████████████████████████████████▏           | 219873/262326 [13:03<02:23, 295.83it/s]


 84%|█████████████████████████████████████████████████████████████▏           | 219903/262326 [13:04<02:26, 288.63it/s]


 84%|█████████████████████████████████████████████████████████████▏           | 219935/262326 [13:04<02:25, 291.57it/s]


 84%|█████████████████████████████████████████████████████████████▏           | 219965/262326 [13:04<02:24, 293.45it/s]


 84%|█████████████████████████████████████████████████████████████▏           | 219995/262326 [13:04<02:24, 293.22it/s]


 84%|█████████████████████████████████████████████████████████████▏           | 220031/262326 [13:04<02:21, 299.92it/s]


 84%|█████████████████████████████████████████████████████████████▏           | 220062/262326 [13:04<02:20, 301.61it/s]


 84%|█████████████████████████████████████████████████████████████▏           | 220093/262326 [13:04<02:25, 289.73it/s]


 84%|█████████████████████████████████████████████████████████████▎           | 220123/262326 [13:04<02:25, 290.49it/s]


 84%|█████████████████████████████████████████████████████████████▎           | 220156/262326 [13:04<02:25, 289.66it/s]


 84%|█████████████████████████████████████████████████████████████▎           | 220192/262326 [13:05<02:22, 296.01it/s]


 84%|█████████████████████████████████████████████████████████████▎           | 220222/262326 [13:05<02:22, 295.71it/s]


 84%|█████████████████████████████████████████████████████████████▎           | 220252/262326 [13:05<02:26, 287.12it/s]


 84%|█████████████████████████████████████████████████████████████▎           | 220284/262326 [13:05<02:23, 292.60it/s]


 84%|█████████████████████████████████████████████████████████████▎           | 220314/262326 [13:05<02:22, 294.07it/s]


 84%|█████████████████████████████████████████████████████████████▎           | 220345/262326 [13:05<02:21, 297.44it/s]


 84%|█████████████████████████████████████████████████████████████▎           | 220375/262326 [13:05<02:23, 292.66it/s]


 84%|█████████████████████████████████████████████████████████████▎           | 220407/262326 [13:05<02:22, 294.64it/s]


 84%|█████████████████████████████████████████████████████████████▎           | 220437/262326 [13:06<03:34, 195.54it/s]


 84%|█████████████████████████████████████████████████████████████▎           | 220466/262326 [13:06<03:17, 211.66it/s]


 84%|█████████████████████████████████████████████████████████████▎           | 220497/262326 [13:06<02:58, 233.79it/s]


 84%|█████████████████████████████████████████████████████████████▎           | 220530/262326 [13:06<02:47, 249.85it/s]


 84%|█████████████████████████████████████████████████████████████▍           | 220561/262326 [13:06<02:38, 263.47it/s]


 84%|█████████████████████████████████████████████████████████████▍           | 220594/262326 [13:06<02:30, 277.30it/s]


 84%|█████████████████████████████████████████████████████████████▍           | 220624/262326 [13:06<02:46, 250.78it/s]


 84%|█████████████████████████████████████████████████████████████▍           | 220654/262326 [13:06<02:39, 261.01it/s]


 84%|█████████████████████████████████████████████████████████████▍           | 220691/262326 [13:06<02:30, 276.91it/s]


 84%|█████████████████████████████████████████████████████████████▍           | 220722/262326 [13:07<02:25, 285.22it/s]


 84%|█████████████████████████████████████████████████████████████▍           | 220753/262326 [13:07<02:22, 291.55it/s]


 84%|█████████████████████████████████████████████████████████████▍           | 220784/262326 [13:07<02:21, 293.03it/s]


 84%|█████████████████████████████████████████████████████████████▍           | 220814/262326 [13:07<02:22, 291.73it/s]


 84%|█████████████████████████████████████████████████████████████▍           | 220848/262326 [13:07<02:18, 298.51it/s]


 84%|█████████████████████████████████████████████████████████████▍           | 220879/262326 [13:07<02:24, 286.31it/s]


 84%|█████████████████████████████████████████████████████████████▍           | 220913/262326 [13:07<02:23, 288.78it/s]


 84%|█████████████████████████████████████████████████████████████▍           | 220944/262326 [13:07<02:20, 293.75it/s]


 84%|█████████████████████████████████████████████████████████████▍           | 220975/262326 [13:07<02:18, 298.11it/s]


 84%|█████████████████████████████████████████████████████████████▌           | 221011/262326 [13:07<02:16, 302.57it/s]


 84%|█████████████████████████████████████████████████████████████▌           | 221042/262326 [13:08<02:16, 302.81it/s]


 84%|█████████████████████████████████████████████████████████████▌           | 221073/262326 [13:08<02:15, 304.49it/s]


 84%|█████████████████████████████████████████████████████████████▌           | 221104/262326 [13:08<02:19, 295.28it/s]


 84%|█████████████████████████████████████████████████████████████▌           | 221135/262326 [13:08<02:18, 296.54it/s]


 84%|█████████████████████████████████████████████████████████████▌           | 221165/262326 [13:08<02:18, 297.08it/s]


 84%|█████████████████████████████████████████████████████████████▌           | 221196/262326 [13:08<02:22, 288.18it/s]


 84%|█████████████████████████████████████████████████████████████▌           | 221231/262326 [13:08<02:21, 290.88it/s]


 84%|█████████████████████████████████████████████████████████████▌           | 221261/262326 [13:08<02:21, 291.13it/s]


 84%|█████████████████████████████████████████████████████████████▌           | 221297/262326 [13:08<02:17, 298.77it/s]


 84%|█████████████████████████████████████████████████████████████▌           | 221332/262326 [13:09<02:16, 299.97it/s]


 84%|█████████████████████████████████████████████████████████████▌           | 221364/262326 [13:09<02:14, 303.79it/s]


 84%|█████████████████████████████████████████████████████████████▌           | 221395/262326 [13:09<02:17, 298.08it/s]


 84%|█████████████████████████████████████████████████████████████▌           | 221426/262326 [13:09<02:18, 295.40it/s]


 84%|█████████████████████████████████████████████████████████████▋           | 221458/262326 [13:09<02:18, 295.21it/s]


 84%|█████████████████████████████████████████████████████████████▋           | 221491/262326 [13:09<02:17, 297.12it/s]


 84%|█████████████████████████████████████████████████████████████▋           | 221521/262326 [13:09<02:17, 297.77it/s]


 84%|█████████████████████████████████████████████████████████████▋           | 221551/262326 [13:09<02:16, 297.84it/s]


 84%|█████████████████████████████████████████████████████████████▋           | 221584/262326 [13:09<02:18, 294.19it/s]


 84%|█████████████████████████████████████████████████████████████▋           | 221615/262326 [13:10<02:16, 297.94it/s]


 84%|█████████████████████████████████████████████████████████████▋           | 221645/262326 [13:10<02:16, 297.00it/s]


 85%|█████████████████████████████████████████████████████████████▋           | 221675/262326 [13:10<02:26, 278.25it/s]


 85%|█████████████████████████████████████████████████████████████▋           | 221704/262326 [13:10<02:30, 270.79it/s]


 85%|█████████████████████████████████████████████████████████████▋           | 221739/262326 [13:10<02:23, 282.58it/s]


 85%|█████████████████████████████████████████████████████████████▋           | 221769/262326 [13:10<02:21, 287.42it/s]


 85%|█████████████████████████████████████████████████████████████▋           | 221798/262326 [13:10<02:20, 287.83it/s]


 85%|█████████████████████████████████████████████████████████████▋           | 221833/262326 [13:10<02:18, 292.17it/s]


 85%|█████████████████████████████████████████████████████████████▋           | 221864/262326 [13:10<02:16, 296.72it/s]


 85%|█████████████████████████████████████████████████████████████▋           | 221896/262326 [13:10<02:13, 303.06it/s]


 85%|█████████████████████████████████████████████████████████████▊           | 221927/262326 [13:11<02:12, 304.82it/s]


 85%|█████████████████████████████████████████████████████████████▊           | 221959/262326 [13:11<02:15, 297.19it/s]


 85%|█████████████████████████████████████████████████████████████▊           | 221989/262326 [13:11<02:17, 292.50it/s]


 85%|█████████████████████████████████████████████████████████████▊           | 222023/262326 [13:11<02:16, 295.64it/s]


 85%|█████████████████████████████████████████████████████████████▊           | 222055/262326 [13:11<02:13, 301.37it/s]


 85%|█████████████████████████████████████████████████████████████▊           | 222089/262326 [13:11<02:14, 300.25it/s]


 85%|█████████████████████████████████████████████████████████████▊           | 222120/262326 [13:11<02:19, 287.88it/s]


 85%|█████████████████████████████████████████████████████████████▊           | 222149/262326 [13:11<02:19, 287.95it/s]


 85%|█████████████████████████████████████████████████████████████▊           | 222178/262326 [13:11<02:22, 282.60it/s]


 85%|█████████████████████████████████████████████████████████████▊           | 222210/262326 [13:12<02:20, 284.69it/s]


 85%|█████████████████████████████████████████████████████████████▊           | 222240/262326 [13:12<02:18, 288.75it/s]


 85%|█████████████████████████████████████████████████████████████▊           | 222269/262326 [13:12<02:20, 284.83it/s]


 85%|█████████████████████████████████████████████████████████████▊           | 222302/262326 [13:12<02:18, 288.10it/s]


 85%|█████████████████████████████████████████████████████████████▊           | 222331/262326 [13:12<02:18, 288.54it/s]


 85%|█████████████████████████████████████████████████████████████▉           | 222361/262326 [13:12<02:23, 279.42it/s]


 85%|█████████████████████████████████████████████████████████████▉           | 222390/262326 [13:12<02:22, 280.89it/s]


 85%|█████████████████████████████████████████████████████████████▉           | 222425/262326 [13:12<02:18, 287.65it/s]


 85%|█████████████████████████████████████████████████████████████▉           | 222457/262326 [13:12<02:15, 294.28it/s]


 85%|█████████████████████████████████████████████████████████████▉           | 222493/262326 [13:13<02:12, 299.92it/s]


 85%|█████████████████████████████████████████████████████████████▉           | 222530/262326 [13:13<02:09, 306.29it/s]


 85%|█████████████████████████████████████████████████████████████▉           | 222561/262326 [13:13<02:17, 289.42it/s]


 85%|█████████████████████████████████████████████████████████████▉           | 222595/262326 [13:13<02:15, 292.28it/s]


 85%|█████████████████████████████████████████████████████████████▉           | 222627/262326 [13:13<02:12, 299.45it/s]


 85%|█████████████████████████████████████████████████████████████▉           | 222663/262326 [13:13<02:10, 302.94it/s]


 85%|█████████████████████████████████████████████████████████████▉           | 222694/262326 [13:13<02:10, 303.41it/s]


 85%|█████████████████████████████████████████████████████████████▉           | 222725/262326 [13:13<02:15, 291.65it/s]


 85%|█████████████████████████████████████████████████████████████▉           | 222755/262326 [13:13<02:21, 280.07it/s]


 85%|█████████████████████████████████████████████████████████████▉           | 222784/262326 [13:14<02:20, 282.06it/s]


 85%|██████████████████████████████████████████████████████████████           | 222819/262326 [13:14<02:16, 288.47it/s]


 85%|██████████████████████████████████████████████████████████████           | 222848/262326 [13:14<02:18, 284.91it/s]


 85%|██████████████████████████████████████████████████████████████           | 222877/262326 [13:14<02:18, 285.69it/s]


 85%|██████████████████████████████████████████████████████████████           | 222908/262326 [13:14<02:15, 290.34it/s]


 85%|██████████████████████████████████████████████████████████████           | 222939/262326 [13:14<02:15, 289.93it/s]


 85%|██████████████████████████████████████████████████████████████           | 222972/262326 [13:14<02:12, 297.88it/s]


 85%|██████████████████████████████████████████████████████████████           | 223007/262326 [13:14<02:11, 299.74it/s]


 85%|██████████████████████████████████████████████████████████████           | 223039/262326 [13:14<02:08, 304.87it/s]


 85%|██████████████████████████████████████████████████████████████           | 223075/262326 [13:14<02:07, 306.91it/s]


 85%|██████████████████████████████████████████████████████████████           | 223107/262326 [13:15<02:07, 308.03it/s]


 85%|██████████████████████████████████████████████████████████████           | 223142/262326 [13:15<02:08, 305.54it/s]


 85%|██████████████████████████████████████████████████████████████           | 223173/262326 [13:15<02:07, 306.17it/s]


 85%|██████████████████████████████████████████████████████████████           | 223206/262326 [13:15<02:10, 300.85it/s]


 85%|██████████████████████████████████████████████████████████████           | 223237/262326 [13:15<02:09, 302.53it/s]


 85%|██████████████████████████████████████████████████████████████▏          | 223268/262326 [13:15<02:08, 303.07it/s]


 85%|██████████████████████████████████████████████████████████████▏          | 223303/262326 [13:15<02:08, 303.67it/s]


 85%|██████████████████████████████████████████████████████████████▏          | 223335/262326 [13:15<02:06, 307.13it/s]


 85%|██████████████████████████████████████████████████████████████▏          | 223366/262326 [13:15<02:08, 302.35it/s]


 85%|██████████████████████████████████████████████████████████████▏          | 223400/262326 [13:16<02:07, 304.12it/s]


 85%|██████████████████████████████████████████████████████████████▏          | 223436/262326 [13:16<02:06, 306.55it/s]


 85%|██████████████████████████████████████████████████████████████▏          | 223467/262326 [13:16<02:13, 292.00it/s]


 85%|██████████████████████████████████████████████████████████████▏          | 223503/262326 [13:16<02:10, 297.91it/s]


 85%|██████████████████████████████████████████████████████████████▏          | 223534/262326 [13:16<02:09, 299.79it/s]


 85%|██████████████████████████████████████████████████████████████▏          | 223565/262326 [13:16<02:08, 302.74it/s]


 85%|██████████████████████████████████████████████████████████████▏          | 223596/262326 [13:16<02:07, 304.15it/s]


 85%|██████████████████████████████████████████████████████████████▏          | 223627/262326 [13:16<02:12, 291.86it/s]


 85%|██████████████████████████████████████████████████████████████▏          | 223658/262326 [13:16<02:10, 296.68it/s]


 85%|██████████████████████████████████████████████████████████████▏          | 223688/262326 [13:17<02:15, 284.83it/s]


 85%|██████████████████████████████████████████████████████████████▎          | 223718/262326 [13:17<02:13, 288.22it/s]


 85%|██████████████████████████████████████████████████████████████▎          | 223747/262326 [13:17<02:20, 273.64it/s]


 85%|██████████████████████████████████████████████████████████████▎          | 223781/262326 [13:17<02:17, 280.49it/s]


 85%|██████████████████████████████████████████████████████████████▎          | 223812/262326 [13:17<02:13, 287.59it/s]


 85%|██████████████████████████████████████████████████████████████▎          | 223841/262326 [13:17<02:13, 288.11it/s]


 85%|██████████████████████████████████████████████████████████████▎          | 223870/262326 [13:17<02:13, 288.60it/s]


 85%|██████████████████████████████████████████████████████████████▎          | 223899/262326 [13:17<02:32, 252.72it/s]


 85%|██████████████████████████████████████████████████████████████▎          | 223927/262326 [13:17<02:28, 259.00it/s]


 85%|██████████████████████████████████████████████████████████████▎          | 223956/262326 [13:18<02:23, 267.16it/s]


 85%|██████████████████████████████████████████████████████████████▎          | 223986/262326 [13:18<02:18, 275.94it/s]


 85%|██████████████████████████████████████████████████████████████▎          | 224015/262326 [13:18<02:21, 270.86it/s]


 85%|██████████████████████████████████████████████████████████████▎          | 224044/262326 [13:18<02:18, 275.75it/s]


 85%|██████████████████████████████████████████████████████████████▎          | 224074/262326 [13:18<02:15, 282.02it/s]


 85%|██████████████████████████████████████████████████████████████▎          | 224103/262326 [13:18<02:15, 281.49it/s]


 85%|██████████████████████████████████████████████████████████████▎          | 224134/262326 [13:18<02:17, 277.73it/s]


 85%|██████████████████████████████████████████████████████████████▍          | 224162/262326 [13:18<02:37, 242.34it/s]


 85%|██████████████████████████████████████████████████████████████▍          | 224190/262326 [13:18<02:31, 251.10it/s]


 85%|██████████████████████████████████████████████████████████████▍          | 224224/262326 [13:19<02:25, 262.77it/s]


 85%|██████████████████████████████████████████████████████████████▍          | 224254/262326 [13:19<02:20, 270.25it/s]


 85%|██████████████████████████████████████████████████████████████▍          | 224282/262326 [13:19<02:23, 265.56it/s]


 86%|██████████████████████████████████████████████████████████████▍          | 224313/262326 [13:19<02:18, 274.17it/s]


 86%|██████████████████████████████████████████████████████████████▍          | 224342/262326 [13:19<02:16, 278.01it/s]


 86%|██████████████████████████████████████████████████████████████▍          | 224371/262326 [13:19<02:20, 269.41it/s]


 86%|██████████████████████████████████████████████████████████████▍          | 224402/262326 [13:19<02:15, 279.39it/s]


 86%|██████████████████████████████████████████████████████████████▍          | 224431/262326 [13:19<02:14, 281.71it/s]


 86%|██████████████████████████████████████████████████████████████▍          | 224466/262326 [13:19<02:11, 288.74it/s]


 86%|██████████████████████████████████████████████████████████████▍          | 224496/262326 [13:19<02:10, 289.96it/s]


 86%|██████████████████████████████████████████████████████████████▍          | 224526/262326 [13:20<02:15, 279.10it/s]


 86%|██████████████████████████████████████████████████████████████▍          | 224560/262326 [13:20<02:13, 282.36it/s]


 86%|██████████████████████████████████████████████████████████████▌          | 224595/262326 [13:20<02:10, 289.24it/s]


 86%|██████████████████████████████████████████████████████████████▌          | 224627/262326 [13:20<02:06, 297.50it/s]


 86%|██████████████████████████████████████████████████████████████▌          | 224657/262326 [13:20<02:18, 272.66it/s]


 86%|██████████████████████████████████████████████████████████████▌          | 224687/262326 [13:20<02:15, 278.20it/s]


 86%|██████████████████████████████████████████████████████████████▌          | 224722/262326 [13:20<02:11, 285.34it/s]


 86%|██████████████████████████████████████████████████████████████▌          | 224752/262326 [13:20<02:10, 288.89it/s]


 86%|██████████████████████████████████████████████████████████████▌          | 224787/262326 [13:21<02:08, 293.02it/s]


 86%|██████████████████████████████████████████████████████████████▌          | 224817/262326 [13:21<02:07, 293.90it/s]


 86%|██████████████████████████████████████████████████████████████▌          | 224847/262326 [13:21<02:06, 295.55it/s]


 86%|██████████████████████████████████████████████████████████████▌          | 224877/262326 [13:21<02:10, 286.16it/s]


 86%|██████████████████████████████████████████████████████████████▌          | 224910/262326 [13:21<02:06, 294.83it/s]


 86%|██████████████████████████████████████████████████████████████▌          | 224941/262326 [13:21<02:05, 298.60it/s]


 86%|██████████████████████████████████████████████████████████████▌          | 224971/262326 [13:21<02:09, 288.71it/s]


 86%|██████████████████████████████████████████████████████████████▌          | 225003/262326 [13:21<02:06, 294.28it/s]


 86%|██████████████████████████████████████████████████████████████▌          | 225035/262326 [13:21<02:04, 300.59it/s]


 86%|██████████████████████████████████████████████████████████████▋          | 225066/262326 [13:21<02:02, 303.21it/s]


 86%|██████████████████████████████████████████████████████████████▋          | 225097/262326 [13:22<02:02, 304.50it/s]


 86%|██████████████████████████████████████████████████████████████▋          | 225132/262326 [13:22<02:02, 304.15it/s]


 86%|██████████████████████████████████████████████████████████████▋          | 225163/262326 [13:22<02:03, 301.73it/s]


 86%|██████████████████████████████████████████████████████████████▋          | 225194/262326 [13:22<02:03, 300.86it/s]


 86%|██████████████████████████████████████████████████████████████▋          | 225228/262326 [13:22<02:02, 303.15it/s]


 86%|██████████████████████████████████████████████████████████████▋          | 225259/262326 [13:22<02:01, 305.07it/s]


 86%|██████████████████████████████████████████████████████████████▋          | 225290/262326 [13:22<02:00, 306.39it/s]


 86%|██████████████████████████████████████████████████████████████▋          | 225321/262326 [13:22<02:04, 297.94it/s]


 86%|██████████████████████████████████████████████████████████████▋          | 225354/262326 [13:22<02:02, 301.71it/s]


 86%|██████████████████████████████████████████████████████████████▋          | 225391/262326 [13:23<02:00, 307.04it/s]


 86%|██████████████████████████████████████████████████████████████▋          | 225422/262326 [13:23<01:59, 307.56it/s]


 86%|██████████████████████████████████████████████████████████████▋          | 225453/262326 [13:23<02:01, 302.73it/s]


 86%|██████████████████████████████████████████████████████████████▋          | 225484/262326 [13:23<02:12, 277.72it/s]


 86%|██████████████████████████████████████████████████████████████▊          | 225513/262326 [13:23<02:21, 260.53it/s]


 86%|██████████████████████████████████████████████████████████████▊          | 225540/262326 [13:23<02:20, 262.64it/s]


 86%|██████████████████████████████████████████████████████████████▊          | 225567/262326 [13:23<02:19, 264.40it/s]


 86%|██████████████████████████████████████████████████████████████▊          | 225602/262326 [13:23<02:13, 275.47it/s]


 86%|██████████████████████████████████████████████████████████████▊          | 225632/262326 [13:23<02:10, 281.62it/s]


 86%|██████████████████████████████████████████████████████████████▊          | 225662/262326 [13:23<02:08, 286.12it/s]


 86%|██████████████████████████████████████████████████████████████▊          | 225692/262326 [13:24<02:06, 289.65it/s]


 86%|██████████████████████████████████████████████████████████████▊          | 225726/262326 [13:24<02:10, 279.76it/s]


 86%|██████████████████████████████████████████████████████████████▊          | 225755/262326 [13:24<02:10, 281.20it/s]


 86%|██████████████████████████████████████████████████████████████▊          | 225784/262326 [13:24<02:08, 283.43it/s]


 86%|██████████████████████████████████████████████████████████████▊          | 225813/262326 [13:24<02:08, 284.96it/s]


 86%|██████████████████████████████████████████████████████████████▊          | 225844/262326 [13:24<02:05, 291.16it/s]


 86%|██████████████████████████████████████████████████████████████▊          | 225874/262326 [13:24<02:06, 287.81it/s]


 86%|██████████████████████████████████████████████████████████████▊          | 225905/262326 [13:24<02:04, 293.51it/s]


 86%|██████████████████████████████████████████████████████████████▊          | 225938/262326 [13:24<02:02, 297.34it/s]


 86%|██████████████████████████████████████████████████████████████▉          | 225975/262326 [13:25<01:59, 303.95it/s]


 86%|██████████████████████████████████████████████████████████████▉          | 226006/262326 [13:25<01:59, 302.97it/s]


 86%|██████████████████████████████████████████████████████████████▉          | 226037/262326 [13:25<02:02, 296.04it/s]


 86%|██████████████████████████████████████████████████████████████▉          | 226068/262326 [13:25<02:02, 296.23it/s]


 86%|██████████████████████████████████████████████████████████████▉          | 226098/262326 [13:25<02:01, 297.15it/s]


 86%|██████████████████████████████████████████████████████████████▉          | 226128/262326 [13:25<02:01, 297.21it/s]


 86%|██████████████████████████████████████████████████████████████▉          | 226158/262326 [13:25<02:01, 297.55it/s]


 86%|██████████████████████████████████████████████████████████████▉          | 226190/262326 [13:25<02:03, 291.66it/s]


 86%|██████████████████████████████████████████████████████████████▉          | 226220/262326 [13:25<02:03, 293.36it/s]


 86%|██████████████████████████████████████████████████████████████▉          | 226250/262326 [13:25<02:02, 294.77it/s]


 86%|██████████████████████████████████████████████████████████████▉          | 226283/262326 [13:26<02:03, 291.94it/s]


 86%|██████████████████████████████████████████████████████████████▉          | 226314/262326 [13:26<02:02, 293.79it/s]


 86%|██████████████████████████████████████████████████████████████▉          | 226345/262326 [13:26<02:02, 294.33it/s]


 86%|██████████████████████████████████████████████████████████████▉          | 226375/262326 [13:26<02:01, 294.85it/s]


 86%|███████████████████████████████████████████████████████████████          | 226410/262326 [13:26<01:58, 301.88it/s]


 86%|███████████████████████████████████████████████████████████████          | 226443/262326 [13:26<02:00, 298.04it/s]


 86%|███████████████████████████████████████████████████████████████          | 226473/262326 [13:26<02:00, 297.53it/s]


 86%|███████████████████████████████████████████████████████████████          | 226503/262326 [13:26<02:00, 298.19it/s]


 86%|███████████████████████████████████████████████████████████████          | 226533/262326 [13:26<02:00, 297.78it/s]


 86%|███████████████████████████████████████████████████████████████          | 226565/262326 [13:27<01:57, 303.31it/s]


 86%|███████████████████████████████████████████████████████████████          | 226596/262326 [13:27<01:59, 299.19it/s]


 86%|███████████████████████████████████████████████████████████████          | 226626/262326 [13:27<02:03, 289.27it/s]


 86%|███████████████████████████████████████████████████████████████          | 226659/262326 [13:27<02:03, 289.76it/s]


 86%|███████████████████████████████████████████████████████████████          | 226695/262326 [13:27<02:00, 296.01it/s]


 86%|███████████████████████████████████████████████████████████████          | 226731/262326 [13:27<01:58, 300.59it/s]


 86%|███████████████████████████████████████████████████████████████          | 226762/262326 [13:27<01:57, 301.99it/s]


 86%|███████████████████████████████████████████████████████████████          | 226793/262326 [13:27<01:57, 302.91it/s]


 86%|███████████████████████████████████████████████████████████████          | 226824/262326 [13:27<01:56, 303.80it/s]


 86%|███████████████████████████████████████████████████████████████▏         | 226855/262326 [13:28<01:57, 300.61it/s]


 86%|███████████████████████████████████████████████████████████████▏         | 226889/262326 [13:28<01:55, 306.27it/s]


 87%|███████████████████████████████████████████████████████████████▏         | 226920/262326 [13:28<01:56, 304.92it/s]


 87%|███████████████████████████████████████████████████████████████▏         | 226951/262326 [13:28<01:56, 302.99it/s]


 87%|███████████████████████████████████████████████████████████████▏         | 226982/262326 [13:28<02:06, 280.40it/s]


 87%|███████████████████████████████████████████████████████████████▏         | 227011/262326 [13:28<02:04, 282.54it/s]


 87%|███████████████████████████████████████████████████████████████▏         | 227046/262326 [13:28<02:02, 289.06it/s]


 87%|███████████████████████████████████████████████████████████████▏         | 227076/262326 [13:28<02:00, 291.82it/s]


 87%|███████████████████████████████████████████████████████████████▏         | 227107/262326 [13:28<01:59, 293.96it/s]


 87%|███████████████████████████████████████████████████████████████▏         | 227143/262326 [13:28<01:56, 301.35it/s]


 87%|███████████████████████████████████████████████████████████████▏         | 227174/262326 [13:29<02:22, 245.83it/s]


 87%|███████████████████████████████████████████████████████████████▏         | 227201/262326 [13:29<02:24, 242.83it/s]


 87%|███████████████████████████████████████████████████████████████▏         | 227232/262326 [13:29<02:22, 245.66it/s]


 87%|███████████████████████████████████████████████████████████████▏         | 227264/262326 [13:29<02:13, 263.10it/s]


 87%|███████████████████████████████████████████████████████████████▎         | 227294/262326 [13:29<02:09, 270.25it/s]


 87%|███████████████████████████████████████████████████████████████▎         | 227326/262326 [13:29<02:07, 274.47it/s]


 87%|███████████████████████████████████████████████████████████████▎         | 227354/262326 [13:29<02:07, 274.53it/s]


 87%|███████████████████████████████████████████████████████████████▎         | 227382/262326 [13:29<02:06, 275.68it/s]


 87%|███████████████████████████████████████████████████████████████▎         | 227414/262326 [13:30<02:06, 276.23it/s]


 87%|███████████████████████████████████████████████████████████████▎         | 227442/262326 [13:30<02:05, 277.25it/s]


 87%|███████████████████████████████████████████████████████████████▎         | 227470/262326 [13:30<02:13, 261.88it/s]


 87%|███████████████████████████████████████████████████████████████▎         | 227501/262326 [13:30<02:10, 266.29it/s]


 87%|███████████████████████████████████████████████████████████████▎         | 227531/262326 [13:30<02:06, 274.60it/s]


 87%|███████████████████████████████████████████████████████████████▎         | 227561/262326 [13:30<02:03, 281.19it/s]


 87%|███████████████████████████████████████████████████████████████▎         | 227590/262326 [13:30<02:02, 283.53it/s]


 87%|███████████████████████████████████████████████████████████████▎         | 227619/262326 [13:30<02:07, 272.16it/s]


 87%|███████████████████████████████████████████████████████████████▎         | 227647/262326 [13:30<02:06, 273.25it/s]


 87%|███████████████████████████████████████████████████████████████▎         | 227679/262326 [13:31<02:06, 274.86it/s]


 87%|███████████████████████████████████████████████████████████████▎         | 227716/262326 [13:31<02:01, 285.84it/s]


 87%|███████████████████████████████████████████████████████████████▍         | 227745/262326 [13:31<02:06, 273.50it/s]


 87%|███████████████████████████████████████████████████████████████▍         | 227773/262326 [13:31<02:10, 263.88it/s]


 87%|███████████████████████████████████████████████████████████████▍         | 227801/262326 [13:31<02:09, 267.07it/s]


 87%|███████████████████████████████████████████████████████████████▍         | 227828/262326 [13:31<02:14, 256.07it/s]


 87%|███████████████████████████████████████████████████████████████▍         | 227858/262326 [13:31<02:09, 266.92it/s]


 87%|███████████████████████████████████████████████████████████████▍         | 227888/262326 [13:31<02:05, 275.48it/s]


 87%|███████████████████████████████████████████████████████████████▍         | 227923/262326 [13:31<02:01, 283.79it/s]


 87%|███████████████████████████████████████████████████████████████▍         | 227953/262326 [13:31<01:59, 286.65it/s]


 87%|███████████████████████████████████████████████████████████████▍         | 227982/262326 [13:32<02:04, 275.35it/s]


 87%|███████████████████████████████████████████████████████████████▍         | 228012/262326 [13:32<02:03, 277.72it/s]


 87%|███████████████████████████████████████████████████████████████▍         | 228044/262326 [13:32<02:02, 280.76it/s]


 87%|███████████████████████████████████████████████████████████████▍         | 228073/262326 [13:32<02:01, 281.28it/s]


 87%|███████████████████████████████████████████████████████████████▍         | 228106/262326 [13:32<02:00, 283.31it/s]


 87%|███████████████████████████████████████████████████████████████▍         | 228135/262326 [13:32<02:00, 284.71it/s]


 87%|███████████████████████████████████████████████████████████████▍         | 228164/262326 [13:32<01:59, 286.13it/s]


 87%|███████████████████████████████████████████████████████████████▌         | 228193/262326 [13:32<01:59, 284.76it/s]


 87%|███████████████████████████████████████████████████████████████▌         | 228226/262326 [13:32<01:58, 286.87it/s]


 87%|███████████████████████████████████████████████████████████████▌         | 228258/262326 [13:33<01:55, 294.67it/s]


 87%|███████████████████████████████████████████████████████████████▌         | 228288/262326 [13:33<02:00, 282.97it/s]


 87%|███████████████████████████████████████████████████████████████▌         | 228318/262326 [13:33<01:58, 287.22it/s]


 87%|███████████████████████████████████████████████████████████████▌         | 228347/262326 [13:33<01:58, 287.64it/s]


 87%|███████████████████████████████████████████████████████████████▌         | 228383/262326 [13:33<01:55, 294.60it/s]


 87%|███████████████████████████████████████████████████████████████▌         | 228418/262326 [13:33<01:54, 296.03it/s]


 87%|███████████████████████████████████████████████████████████████▌         | 228448/262326 [13:33<01:54, 295.92it/s]


 87%|███████████████████████████████████████████████████████████████▌         | 228482/262326 [13:33<01:54, 295.66it/s]


 87%|███████████████████████████████████████████████████████████████▌         | 228513/262326 [13:33<01:53, 298.92it/s]


 87%|███████████████████████████████████████████████████████████████▌         | 228544/262326 [13:34<01:52, 300.90it/s]


 87%|███████████████████████████████████████████████████████████████▌         | 228579/262326 [13:34<01:51, 302.26it/s]


 87%|███████████████████████████████████████████████████████████████▌         | 228610/262326 [13:34<01:55, 291.94it/s]


 87%|███████████████████████████████████████████████████████████████▋         | 228640/262326 [13:34<01:55, 291.91it/s]


 87%|███████████████████████████████████████████████████████████████▋         | 228670/262326 [13:34<01:54, 292.78it/s]


 87%|███████████████████████████████████████████████████████████████▋         | 228702/262326 [13:34<01:56, 288.49it/s]


 87%|███████████████████████████████████████████████████████████████▋         | 228731/262326 [13:34<01:56, 288.11it/s]


 87%|███████████████████████████████████████████████████████████████▋         | 228762/262326 [13:34<01:59, 281.65it/s]


 87%|███████████████████████████████████████████████████████████████▋         | 228792/262326 [13:34<01:56, 286.83it/s]


 87%|███████████████████████████████████████████████████████████████▋         | 228823/262326 [13:35<01:59, 281.07it/s]


 87%|███████████████████████████████████████████████████████████████▋         | 228855/262326 [13:35<01:55, 290.42it/s]


 87%|███████████████████████████████████████████████████████████████▋         | 228886/262326 [13:35<01:54, 293.10it/s]


 87%|███████████████████████████████████████████████████████████████▋         | 228920/262326 [13:35<01:52, 298.02it/s]


 87%|███████████████████████████████████████████████████████████████▋         | 228953/262326 [13:35<01:49, 303.91it/s]


 87%|███████████████████████████████████████████████████████████████▋         | 228984/262326 [13:35<01:49, 305.55it/s]


 87%|███████████████████████████████████████████████████████████████▋         | 229015/262326 [13:35<01:54, 291.94it/s]


 87%|███████████████████████████████████████████████████████████████▋         | 229046/262326 [13:35<01:52, 296.85it/s]


 87%|███████████████████████████████████████████████████████████████▋         | 229076/262326 [13:35<01:51, 297.50it/s]


 87%|███████████████████████████████████████████████████████████████▊         | 229106/262326 [13:35<01:52, 294.48it/s]


 87%|███████████████████████████████████████████████████████████████▊         | 229137/262326 [13:36<01:51, 297.43it/s]


 87%|███████████████████████████████████████████████████████████████▊         | 229172/262326 [13:36<01:48, 304.31it/s]


 87%|███████████████████████████████████████████████████████████████▊         | 229203/262326 [13:36<01:49, 302.08it/s]


 87%|███████████████████████████████████████████████████████████████▊         | 229238/262326 [13:36<01:49, 303.54it/s]


 87%|███████████████████████████████████████████████████████████████▊         | 229269/262326 [13:36<01:48, 305.25it/s]


 87%|███████████████████████████████████████████████████████████████▊         | 229304/262326 [13:36<01:48, 304.62it/s]


 87%|███████████████████████████████████████████████████████████████▊         | 229335/262326 [13:36<01:48, 303.95it/s]


 87%|███████████████████████████████████████████████████████████████▊         | 229367/262326 [13:36<01:52, 293.85it/s]


 87%|███████████████████████████████████████████████████████████████▊         | 229397/262326 [13:36<01:56, 282.24it/s]


 87%|███████████████████████████████████████████████████████████████▊         | 229426/262326 [13:37<01:55, 284.15it/s]


 87%|███████████████████████████████████████████████████████████████▊         | 229458/262326 [13:37<01:56, 282.16it/s]


 87%|███████████████████████████████████████████████████████████████▊         | 229487/262326 [13:37<01:56, 280.87it/s]


 87%|███████████████████████████████████████████████████████████████▊         | 229521/262326 [13:37<01:54, 286.77it/s]


 88%|███████████████████████████████████████████████████████████████▉         | 229550/262326 [13:37<01:54, 286.44it/s]


 88%|███████████████████████████████████████████████████████████████▉         | 229584/262326 [13:37<01:52, 290.06it/s]


 88%|███████████████████████████████████████████████████████████████▉         | 229614/262326 [13:37<01:52, 290.78it/s]


 88%|███████████████████████████████████████████████████████████████▉         | 229644/262326 [13:37<01:51, 293.36it/s]


 88%|███████████████████████████████████████████████████████████████▉         | 229674/262326 [13:37<01:55, 282.45it/s]


 88%|███████████████████████████████████████████████████████████████▉         | 229705/262326 [13:38<01:57, 277.21it/s]


 88%|███████████████████████████████████████████████████████████████▉         | 229736/262326 [13:38<01:54, 285.60it/s]


 88%|███████████████████████████████████████████████████████████████▉         | 229767/262326 [13:38<01:52, 289.23it/s]


 88%|███████████████████████████████████████████████████████████████▉         | 229797/262326 [13:38<01:53, 287.36it/s]


 88%|███████████████████████████████████████████████████████████████▉         | 229826/262326 [13:38<01:53, 287.49it/s]


 88%|███████████████████████████████████████████████████████████████▉         | 229860/262326 [13:38<01:49, 295.68it/s]


 88%|███████████████████████████████████████████████████████████████▉         | 229891/262326 [13:38<01:52, 287.20it/s]


 88%|███████████████████████████████████████████████████████████████▉         | 229921/262326 [13:38<01:51, 290.27it/s]


 88%|███████████████████████████████████████████████████████████████▉         | 229951/262326 [13:38<01:50, 293.03it/s]


 88%|████████████████████████████████████████████████████████████████         | 229986/262326 [13:38<01:49, 295.87it/s]


 88%|████████████████████████████████████████████████████████████████         | 230016/262326 [13:39<01:48, 296.61it/s]


 88%|████████████████████████████████████████████████████████████████         | 230046/262326 [13:39<01:49, 296.06it/s]


 88%|████████████████████████████████████████████████████████████████         | 230076/262326 [13:39<01:54, 281.57it/s]


 88%|████████████████████████████████████████████████████████████████         | 230109/262326 [13:39<01:53, 284.43it/s]


 88%|████████████████████████████████████████████████████████████████         | 230138/262326 [13:39<01:53, 284.83it/s]


 88%|████████████████████████████████████████████████████████████████         | 230167/262326 [13:39<01:52, 285.73it/s]


 88%|████████████████████████████████████████████████████████████████         | 230200/262326 [13:39<01:52, 286.56it/s]


 88%|████████████████████████████████████████████████████████████████         | 230231/262326 [13:39<01:49, 291.78it/s]


 88%|████████████████████████████████████████████████████████████████         | 230261/262326 [13:39<01:51, 288.53it/s]


 88%|████████████████████████████████████████████████████████████████         | 230290/262326 [13:40<01:51, 287.26it/s]


 88%|████████████████████████████████████████████████████████████████         | 230323/262326 [13:40<01:49, 293.17it/s]


 88%|████████████████████████████████████████████████████████████████         | 230353/262326 [13:40<02:07, 249.95it/s]


 88%|████████████████████████████████████████████████████████████████         | 230385/262326 [13:40<02:01, 263.23it/s]


 88%|████████████████████████████████████████████████████████████████         | 230421/262326 [13:40<01:55, 276.16it/s]


 88%|████████████████████████████████████████████████████████████████▏        | 230451/262326 [13:40<01:52, 282.08it/s]


 88%|████████████████████████████████████████████████████████████████▏        | 230480/262326 [13:40<01:53, 281.06it/s]


 88%|████████████████████████████████████████████████████████████████▏        | 230509/262326 [13:40<01:52, 281.75it/s]


 88%|████████████████████████████████████████████████████████████████▏        | 230544/262326 [13:40<01:48, 291.65it/s]


 88%|████████████████████████████████████████████████████████████████▏        | 230575/262326 [13:41<01:47, 296.68it/s]


 88%|████████████████████████████████████████████████████████████████▏        | 230606/262326 [13:41<01:45, 300.04it/s]


 88%|████████████████████████████████████████████████████████████████▏        | 230637/262326 [13:41<01:49, 289.66it/s]


 88%|████████████████████████████████████████████████████████████████▏        | 230667/262326 [13:41<01:48, 291.45it/s]


 88%|████████████████████████████████████████████████████████████████▏        | 230697/262326 [13:41<01:48, 291.58it/s]


 88%|████████████████████████████████████████████████████████████████▏        | 230727/262326 [13:41<01:48, 292.02it/s]


 88%|████████████████████████████████████████████████████████████████▏        | 230761/262326 [13:41<01:46, 295.83it/s]


 88%|████████████████████████████████████████████████████████████████▏        | 230791/262326 [13:41<01:51, 283.54it/s]


 88%|████████████████████████████████████████████████████████████████▏        | 230822/262326 [13:41<01:48, 290.17it/s]


 88%|████████████████████████████████████████████████████████████████▏        | 230852/262326 [13:41<01:47, 292.59it/s]


 88%|████████████████████████████████████████████████████████████████▎        | 230890/262326 [13:42<01:43, 302.61it/s]


 88%|████████████████████████████████████████████████████████████████▎        | 230922/262326 [13:42<01:42, 306.21it/s]


 88%|████████████████████████████████████████████████████████████████▎        | 230953/262326 [13:42<01:43, 302.84it/s]


 88%|████████████████████████████████████████████████████████████████▎        | 230984/262326 [13:42<01:46, 293.61it/s]


 88%|████████████████████████████████████████████████████████████████▎        | 231020/262326 [13:42<01:44, 300.60it/s]


 88%|████████████████████████████████████████████████████████████████▎        | 231051/262326 [13:42<01:43, 302.48it/s]


 88%|████████████████████████████████████████████████████████████████▎        | 231082/262326 [13:42<01:48, 288.92it/s]


 88%|████████████████████████████████████████████████████████████████▎        | 231112/262326 [13:42<01:47, 291.20it/s]


 88%|████████████████████████████████████████████████████████████████▎        | 231142/262326 [13:42<01:50, 282.13it/s]


 88%|████████████████████████████████████████████████████████████████▎        | 231180/262326 [13:43<01:45, 294.71it/s]


 88%|████████████████████████████████████████████████████████████████▎        | 231210/262326 [13:43<01:45, 295.57it/s]


 88%|████████████████████████████████████████████████████████████████▎        | 231240/262326 [13:43<01:46, 290.60it/s]


 88%|████████████████████████████████████████████████████████████████▎        | 231276/262326 [13:43<01:43, 299.77it/s]


 88%|████████████████████████████████████████████████████████████████▎        | 231313/262326 [13:43<01:41, 306.69it/s]


 88%|████████████████████████████████████████████████████████████████▍        | 231344/262326 [13:43<01:41, 305.48it/s]


 88%|████████████████████████████████████████████████████████████████▍        | 231376/262326 [13:43<01:44, 296.53it/s]


 88%|████████████████████████████████████████████████████████████████▍        | 231407/262326 [13:43<01:43, 299.49it/s]


 88%|████████████████████████████████████████████████████████████████▍        | 231439/262326 [13:43<01:41, 304.39it/s]


 88%|████████████████████████████████████████████████████████████████▍        | 231470/262326 [13:44<01:57, 263.12it/s]


 88%|████████████████████████████████████████████████████████████████▍        | 231503/262326 [13:44<01:52, 273.05it/s]


 88%|████████████████████████████████████████████████████████████████▍        | 231534/262326 [13:44<01:50, 278.79it/s]


 88%|████████████████████████████████████████████████████████████████▍        | 231569/262326 [13:44<01:47, 287.40it/s]


 88%|████████████████████████████████████████████████████████████████▍        | 231599/262326 [13:44<01:50, 278.74it/s]


 88%|████████████████████████████████████████████████████████████████▍        | 231629/262326 [13:44<01:48, 283.85it/s]


 88%|████████████████████████████████████████████████████████████████▍        | 231658/262326 [13:44<01:48, 282.36it/s]


 88%|████████████████████████████████████████████████████████████████▍        | 231689/262326 [13:44<01:49, 279.55it/s]


 88%|████████████████████████████████████████████████████████████████▍        | 231724/262326 [13:44<01:46, 286.42it/s]


 88%|████████████████████████████████████████████████████████████████▍        | 231760/262326 [13:45<01:44, 293.54it/s]


 88%|████████████████████████████████████████████████████████████████▌        | 231791/262326 [13:45<01:43, 295.48it/s]


 88%|████████████████████████████████████████████████████████████████▌        | 231821/262326 [13:45<01:48, 280.81it/s]


 88%|████████████████████████████████████████████████████████████████▌        | 231850/262326 [13:45<01:51, 273.38it/s]


 88%|████████████████████████████████████████████████████████████████▌        | 231878/262326 [13:45<01:53, 268.26it/s]


 88%|████████████████████████████████████████████████████████████████▌        | 231908/262326 [13:45<01:50, 275.00it/s]


 88%|████████████████████████████████████████████████████████████████▌        | 231941/262326 [13:45<01:51, 273.37it/s]


 88%|████████████████████████████████████████████████████████████████▌        | 231971/262326 [13:45<01:48, 280.51it/s]


 88%|████████████████████████████████████████████████████████████████▌        | 232007/262326 [13:45<01:44, 289.20it/s]


 88%|████████████████████████████████████████████████████████████████▌        | 232039/262326 [13:46<01:41, 297.31it/s]


 88%|████████████████████████████████████████████████████████████████▌        | 232070/262326 [13:46<01:40, 300.54it/s]


 88%|████████████████████████████████████████████████████████████████▌        | 232101/262326 [13:46<01:45, 287.75it/s]


 88%|████████████████████████████████████████████████████████████████▌        | 232131/262326 [13:46<01:43, 290.92it/s]


 89%|████████████████████████████████████████████████████████████████▌        | 232168/262326 [13:46<01:40, 300.37it/s]


 89%|████████████████████████████████████████████████████████████████▌        | 232200/262326 [13:46<01:38, 304.90it/s]


 89%|████████████████████████████████████████████████████████████████▋        | 232231/262326 [13:46<01:38, 306.27it/s]


 89%|████████████████████████████████████████████████████████████████▋        | 232262/262326 [13:46<01:37, 307.05it/s]


 89%|████████████████████████████████████████████████████████████████▋        | 232293/262326 [13:46<01:37, 306.57it/s]


 89%|████████████████████████████████████████████████████████████████▋        | 232324/262326 [13:47<01:41, 294.62it/s]


 89%|████████████████████████████████████████████████████████████████▋        | 232354/262326 [13:47<01:44, 287.46it/s]


 89%|████████████████████████████████████████████████████████████████▋        | 232383/262326 [13:47<01:44, 287.59it/s]


 89%|████████████████████████████████████████████████████████████████▋        | 232415/262326 [13:47<01:42, 291.34it/s]


 89%|████████████████████████████████████████████████████████████████▋        | 232451/262326 [13:47<01:40, 297.14it/s]


 89%|████████████████████████████████████████████████████████████████▋        | 232481/262326 [13:47<01:40, 295.62it/s]


 89%|████████████████████████████████████████████████████████████████▋        | 232515/262326 [13:47<01:40, 295.69it/s]


 89%|████████████████████████████████████████████████████████████████▋        | 232545/262326 [13:47<01:45, 282.10it/s]


 89%|████████████████████████████████████████████████████████████████▋        | 232580/262326 [13:47<01:43, 288.34it/s]


 89%|████████████████████████████████████████████████████████████████▋        | 232610/262326 [13:48<01:42, 290.29it/s]


 89%|████████████████████████████████████████████████████████████████▋        | 232644/262326 [13:48<01:58, 250.24it/s]


 89%|████████████████████████████████████████████████████████████████▋        | 232671/262326 [13:48<01:57, 251.50it/s]


 89%|████████████████████████████████████████████████████████████████▊        | 232706/262326 [13:48<01:51, 266.23it/s]


 89%|████████████████████████████████████████████████████████████████▊        | 232734/262326 [13:48<01:50, 268.58it/s]


 89%|████████████████████████████████████████████████████████████████▊        | 232762/262326 [13:48<01:49, 270.70it/s]


 89%|████████████████████████████████████████████████████████████████▊        | 232790/262326 [13:48<01:55, 255.83it/s]


 89%|████████████████████████████████████████████████████████████████▊        | 232817/262326 [13:48<01:55, 255.70it/s]


 89%|████████████████████████████████████████████████████████████████▊        | 232848/262326 [13:48<01:49, 268.83it/s]


 89%|████████████████████████████████████████████████████████████████▊        | 232879/262326 [13:49<01:45, 279.59it/s]


 89%|████████████████████████████████████████████████████████████████▊        | 232909/262326 [13:49<01:43, 285.04it/s]


 89%|████████████████████████████████████████████████████████████████▊        | 232939/262326 [13:49<01:44, 281.44it/s]


 89%|████████████████████████████████████████████████████████████████▊        | 232969/262326 [13:49<01:44, 280.98it/s]


 89%|████████████████████████████████████████████████████████████████▊        | 233005/262326 [13:49<01:40, 290.75it/s]


 89%|████████████████████████████████████████████████████████████████▊        | 233035/262326 [13:49<02:05, 233.62it/s]


 89%|████████████████████████████████████████████████████████████████▊        | 233067/262326 [13:49<01:58, 245.94it/s]


 89%|████████████████████████████████████████████████████████████████▊        | 233099/262326 [13:49<01:51, 262.83it/s]


 89%|████████████████████████████████████████████████████████████████▉        | 233135/262326 [13:49<01:45, 276.68it/s]


 89%|████████████████████████████████████████████████████████████████▉        | 233166/262326 [13:50<01:46, 273.44it/s]


 89%|████████████████████████████████████████████████████████████████▉        | 233197/262326 [13:50<01:43, 280.13it/s]


 89%|████████████████████████████████████████████████████████████████▉        | 233226/262326 [13:50<01:47, 270.80it/s]


 89%|████████████████████████████████████████████████████████████████▉        | 233254/262326 [13:50<01:46, 271.75it/s]


 89%|████████████████████████████████████████████████████████████████▉        | 233291/262326 [13:50<01:41, 285.87it/s]


 89%|████████████████████████████████████████████████████████████████▉        | 233322/262326 [13:50<01:39, 291.03it/s]


 89%|████████████████████████████████████████████████████████████████▉        | 233355/262326 [13:50<01:39, 290.47it/s]


 89%|████████████████████████████████████████████████████████████████▉        | 233385/262326 [13:50<01:47, 268.61it/s]


 89%|████████████████████████████████████████████████████████████████▉        | 233414/262326 [13:51<01:46, 271.61it/s]


 89%|████████████████████████████████████████████████████████████████▉        | 233448/262326 [13:51<01:43, 277.97it/s]


 89%|████████████████████████████████████████████████████████████████▉        | 233478/262326 [13:51<01:42, 282.64it/s]


 89%|████████████████████████████████████████████████████████████████▉        | 233512/262326 [13:51<01:39, 288.90it/s]


 89%|████████████████████████████████████████████████████████████████▉        | 233542/262326 [13:51<01:39, 289.28it/s]


 89%|████████████████████████████████████████████████████████████████▉        | 233572/262326 [13:51<01:38, 290.64it/s]


 89%|█████████████████████████████████████████████████████████████████        | 233606/262326 [13:51<01:38, 292.48it/s]


 89%|█████████████████████████████████████████████████████████████████        | 233636/262326 [13:51<01:37, 293.57it/s]


 89%|█████████████████████████████████████████████████████████████████        | 233672/262326 [13:51<01:35, 299.88it/s]


 89%|█████████████████████████████████████████████████████████████████        | 233703/262326 [13:51<01:34, 301.51it/s]


 89%|█████████████████████████████████████████████████████████████████        | 233734/262326 [13:52<01:34, 302.33it/s]


 89%|█████████████████████████████████████████████████████████████████        | 233767/262326 [13:52<01:36, 297.40it/s]


 89%|█████████████████████████████████████████████████████████████████        | 233797/262326 [13:52<01:38, 291.05it/s]


 89%|█████████████████████████████████████████████████████████████████        | 233827/262326 [13:52<01:39, 286.32it/s]


 89%|█████████████████████████████████████████████████████████████████        | 233856/262326 [13:52<01:39, 286.81it/s]


 89%|█████████████████████████████████████████████████████████████████        | 233892/262326 [13:52<01:36, 294.32it/s]


 89%|█████████████████████████████████████████████████████████████████        | 233922/262326 [13:52<01:42, 278.01it/s]


 89%|█████████████████████████████████████████████████████████████████        | 233952/262326 [13:52<01:40, 283.67it/s]


 89%|█████████████████████████████████████████████████████████████████        | 233987/262326 [13:52<01:37, 291.65it/s]


 89%|█████████████████████████████████████████████████████████████████        | 234020/262326 [13:53<01:33, 301.26it/s]


 89%|█████████████████████████████████████████████████████████████████▏       | 234055/262326 [13:53<01:33, 301.92it/s]


 89%|█████████████████████████████████████████████████████████████████▏       | 234086/262326 [13:53<01:38, 288.02it/s]


 89%|█████████████████████████████████████████████████████████████████▏       | 234120/262326 [13:53<01:37, 290.28it/s]


 89%|█████████████████████████████████████████████████████████████████▏       | 234150/262326 [13:53<01:36, 292.63it/s]


 89%|█████████████████████████████████████████████████████████████████▏       | 234180/262326 [13:53<01:37, 288.12it/s]


 89%|█████████████████████████████████████████████████████████████████▏       | 234212/262326 [13:53<01:37, 289.79it/s]


 89%|█████████████████████████████████████████████████████████████████▏       | 234242/262326 [13:53<01:36, 292.05it/s]


 89%|█████████████████████████████████████████████████████████████████▏       | 234272/262326 [13:53<01:39, 281.60it/s]


 89%|█████████████████████████████████████████████████████████████████▏       | 234303/262326 [13:54<01:37, 287.33it/s]


 89%|█████████████████████████████████████████████████████████████████▏       | 234337/262326 [13:54<01:36, 290.27it/s]


 89%|█████████████████████████████████████████████████████████████████▏       | 234367/262326 [13:54<01:40, 277.01it/s]


 89%|█████████████████████████████████████████████████████████████████▏       | 234401/262326 [13:54<01:38, 282.18it/s]


 89%|█████████████████████████████████████████████████████████████████▏       | 234437/262326 [13:54<01:35, 290.79it/s]


 89%|█████████████████████████████████████████████████████████████████▏       | 234467/262326 [13:54<01:35, 292.84it/s]


 89%|█████████████████████████████████████████████████████████████████▎       | 234497/262326 [13:54<01:38, 281.89it/s]


 89%|█████████████████████████████████████████████████████████████████▎       | 234526/262326 [13:54<01:38, 283.07it/s]


 89%|█████████████████████████████████████████████████████████████████▎       | 234555/262326 [13:55<02:08, 215.59it/s]


 89%|█████████████████████████████████████████████████████████████████▎       | 234584/262326 [13:55<01:59, 232.70it/s]


 89%|█████████████████████████████████████████████████████████████████▎       | 234613/262326 [13:55<01:52, 246.91it/s]


 89%|█████████████████████████████████████████████████████████████████▎       | 234643/262326 [13:55<01:47, 257.08it/s]


 89%|█████████████████████████████████████████████████████████████████▎       | 234680/262326 [13:55<01:41, 273.21it/s]


 89%|█████████████████████████████████████████████████████████████████▎       | 234709/262326 [13:55<01:40, 275.56it/s]


 89%|█████████████████████████████████████████████████████████████████▎       | 234741/262326 [13:55<01:39, 276.10it/s]


 89%|█████████████████████████████████████████████████████████████████▎       | 234770/262326 [13:55<01:38, 279.97it/s]


 90%|█████████████████████████████████████████████████████████████████▎       | 234799/262326 [13:55<01:37, 282.11it/s]


 90%|█████████████████████████████████████████████████████████████████▎       | 234835/262326 [13:56<01:37, 281.63it/s]


 90%|█████████████████████████████████████████████████████████████████▎       | 234868/262326 [13:56<01:34, 290.43it/s]


 90%|█████████████████████████████████████████████████████████████████▎       | 234903/262326 [13:56<01:33, 294.26it/s]


 90%|█████████████████████████████████████████████████████████████████▍       | 234933/262326 [13:56<01:32, 295.53it/s]


 90%|█████████████████████████████████████████████████████████████████▍       | 234968/262326 [13:56<01:35, 286.72it/s]


 90%|█████████████████████████████████████████████████████████████████▍       | 234997/262326 [13:56<01:45, 259.74it/s]


 90%|█████████████████████████████████████████████████████████████████▍       | 235024/262326 [13:56<01:44, 260.74it/s]


 90%|█████████████████████████████████████████████████████████████████▍       | 235053/262326 [13:56<01:45, 257.89it/s]


 90%|█████████████████████████████████████████████████████████████████▍       | 235090/262326 [13:56<01:39, 274.12it/s]


 90%|█████████████████████████████████████████████████████████████████▍       | 235120/262326 [13:57<01:40, 269.62it/s]


 90%|█████████████████████████████████████████████████████████████████▍       | 235151/262326 [13:57<01:36, 280.17it/s]


 90%|█████████████████████████████████████████████████████████████████▍       | 235182/262326 [13:57<01:34, 287.34it/s]


 90%|█████████████████████████████████████████████████████████████████▍       | 235212/262326 [13:57<01:37, 279.00it/s]


 90%|█████████████████████████████████████████████████████████████████▍       | 235241/262326 [13:57<01:36, 281.15it/s]


 90%|█████████████████████████████████████████████████████████████████▍       | 235270/262326 [13:57<01:36, 280.73it/s]


 90%|█████████████████████████████████████████████████████████████████▍       | 235303/262326 [13:57<01:35, 283.95it/s]


 90%|█████████████████████████████████████████████████████████████████▍       | 235333/262326 [13:57<01:33, 287.26it/s]


 90%|█████████████████████████████████████████████████████████████████▍       | 235368/262326 [13:57<01:32, 292.07it/s]


 90%|█████████████████████████████████████████████████████████████████▌       | 235405/262326 [13:58<01:29, 299.98it/s]


 90%|█████████████████████████████████████████████████████████████████▌       | 235436/262326 [13:58<01:29, 301.47it/s]


 90%|█████████████████████████████████████████████████████████████████▌       | 235467/262326 [13:58<01:29, 298.90it/s]


 90%|█████████████████████████████████████████████████████████████████▌       | 235498/262326 [13:58<01:29, 298.97it/s]


 90%|█████████████████████████████████████████████████████████████████▌       | 235528/262326 [13:58<01:32, 290.89it/s]


 90%|█████████████████████████████████████████████████████████████████▌       | 235566/262326 [13:58<01:31, 291.70it/s]


 90%|█████████████████████████████████████████████████████████████████▌       | 235596/262326 [13:58<01:31, 292.41it/s]


 90%|█████████████████████████████████████████████████████████████████▌       | 235626/262326 [13:58<01:30, 293.68it/s]


 90%|█████████████████████████████████████████████████████████████████▌       | 235663/262326 [13:58<01:28, 301.53it/s]


 90%|█████████████████████████████████████████████████████████████████▌       | 235694/262326 [13:58<01:27, 303.15it/s]


 90%|█████████████████████████████████████████████████████████████████▌       | 235725/262326 [13:59<01:39, 267.17it/s]


 90%|█████████████████████████████████████████████████████████████████▌       | 235753/262326 [13:59<01:38, 270.26it/s]


 90%|█████████████████████████████████████████████████████████████████▌       | 235781/262326 [13:59<01:41, 262.48it/s]


 90%|█████████████████████████████████████████████████████████████████▌       | 235808/262326 [13:59<01:41, 260.82it/s]


 90%|█████████████████████████████████████████████████████████████████▋       | 235836/262326 [13:59<01:39, 265.26it/s]


 90%|█████████████████████████████████████████████████████████████████▋       | 235869/262326 [13:59<01:37, 271.75it/s]


 90%|█████████████████████████████████████████████████████████████████▋       | 235897/262326 [13:59<01:36, 272.86it/s]


 90%|█████████████████████████████████████████████████████████████████▋       | 235931/262326 [13:59<01:34, 279.01it/s]


 90%|█████████████████████████████████████████████████████████████████▋       | 235962/262326 [13:59<01:31, 286.68it/s]


 90%|█████████████████████████████████████████████████████████████████▋       | 235992/262326 [14:00<01:34, 278.36it/s]


 90%|█████████████████████████████████████████████████████████████████▋       | 236022/262326 [14:00<01:32, 282.88it/s]


 90%|█████████████████████████████████████████████████████████████████▋       | 236051/262326 [14:00<01:32, 283.02it/s]


 90%|█████████████████████████████████████████████████████████████████▋       | 236081/262326 [14:00<01:43, 254.62it/s]


 90%|█████████████████████████████████████████████████████████████████▋       | 236108/262326 [14:00<01:51, 234.97it/s]


 90%|█████████████████████████████████████████████████████████████████▋       | 236133/262326 [14:00<01:53, 230.06it/s]


 90%|█████████████████████████████████████████████████████████████████▋       | 236161/262326 [14:00<01:47, 242.61it/s]


 90%|█████████████████████████████████████████████████████████████████▋       | 236190/262326 [14:00<01:42, 253.92it/s]


 90%|█████████████████████████████████████████████████████████████████▋       | 236221/262326 [14:00<01:37, 268.14it/s]


 90%|█████████████████████████████████████████████████████████████████▋       | 236249/262326 [14:01<01:39, 263.31it/s]


 90%|█████████████████████████████████████████████████████████████████▊       | 236278/262326 [14:01<01:37, 268.02it/s]


 90%|█████████████████████████████████████████████████████████████████▊       | 236310/262326 [14:01<01:34, 275.71it/s]


 90%|█████████████████████████████████████████████████████████████████▊       | 236344/262326 [14:01<01:31, 285.15it/s]


 90%|█████████████████████████████████████████████████████████████████▊       | 236377/262326 [14:01<01:28, 294.08it/s]


 90%|█████████████████████████████████████████████████████████████████▊       | 236408/262326 [14:01<01:27, 296.35it/s]


 90%|█████████████████████████████████████████████████████████████████▊       | 236441/262326 [14:01<01:27, 297.39it/s]


 90%|█████████████████████████████████████████████████████████████████▊       | 236471/262326 [14:01<01:27, 296.92it/s]


 90%|█████████████████████████████████████████████████████████████████▊       | 236501/262326 [14:01<01:26, 297.49it/s]


 90%|█████████████████████████████████████████████████████████████████▊       | 236531/262326 [14:02<01:33, 274.55it/s]


 90%|█████████████████████████████████████████████████████████████████▊       | 236559/262326 [14:02<01:33, 274.41it/s]


 90%|█████████████████████████████████████████████████████████████████▊       | 236587/262326 [14:02<01:43, 248.41it/s]


 90%|█████████████████████████████████████████████████████████████████▊       | 236614/262326 [14:02<01:41, 253.99it/s]


 90%|█████████████████████████████████████████████████████████████████▊       | 236648/262326 [14:02<01:40, 256.16it/s]


 90%|█████████████████████████████████████████████████████████████████▊       | 236674/262326 [14:02<01:44, 244.49it/s]


 90%|█████████████████████████████████████████████████████████████████▊       | 236699/262326 [14:02<01:45, 243.60it/s]


 90%|█████████████████████████████████████████████████████████████████▉       | 236732/262326 [14:02<01:39, 256.32it/s]


 90%|█████████████████████████████████████████████████████████████████▉       | 236758/262326 [14:02<01:39, 256.02it/s]


 90%|█████████████████████████████████████████████████████████████████▉       | 236784/262326 [14:03<01:39, 256.59it/s]


 90%|█████████████████████████████████████████████████████████████████▉       | 236810/262326 [14:03<01:39, 257.09it/s]


 90%|█████████████████████████████████████████████████████████████████▉       | 236836/262326 [14:03<01:42, 248.34it/s]


 90%|█████████████████████████████████████████████████████████████████▉       | 236863/262326 [14:03<01:40, 253.58it/s]


 90%|█████████████████████████████████████████████████████████████████▉       | 236889/262326 [14:03<01:39, 255.27it/s]


 90%|█████████████████████████████████████████████████████████████████▉       | 236915/262326 [14:03<01:39, 254.89it/s]


 90%|█████████████████████████████████████████████████████████████████▉       | 236947/262326 [14:03<01:36, 261.90it/s]


 90%|█████████████████████████████████████████████████████████████████▉       | 236974/262326 [14:03<01:35, 264.18it/s]


 90%|█████████████████████████████████████████████████████████████████▉       | 237003/262326 [14:03<01:33, 271.07it/s]


 90%|█████████████████████████████████████████████████████████████████▉       | 237031/262326 [14:04<01:40, 252.03it/s]


 90%|█████████████████████████████████████████████████████████████████▉       | 237057/262326 [14:04<01:40, 251.60it/s]


 90%|█████████████████████████████████████████████████████████████████▉       | 237083/262326 [14:04<01:41, 247.59it/s]


 90%|█████████████████████████████████████████████████████████████████▉       | 237114/262326 [14:04<01:37, 258.13it/s]


 90%|█████████████████████████████████████████████████████████████████▉       | 237146/262326 [14:04<01:34, 265.07it/s]


 90%|██████████████████████████████████████████████████████████████████       | 237175/262326 [14:04<01:33, 269.37it/s]


 90%|██████████████████████████████████████████████████████████████████       | 237203/262326 [14:04<01:32, 272.32it/s]


 90%|██████████████████████████████████████████████████████████████████       | 237231/262326 [14:04<01:35, 262.74it/s]


 90%|██████████████████████████████████████████████████████████████████       | 237259/262326 [14:04<01:33, 267.20it/s]


 90%|██████████████████████████████████████████████████████████████████       | 237294/262326 [14:05<01:30, 277.16it/s]


 90%|██████████████████████████████████████████████████████████████████       | 237322/262326 [14:05<01:34, 264.29it/s]


 90%|██████████████████████████████████████████████████████████████████       | 237349/262326 [14:05<01:51, 223.25it/s]


 90%|██████████████████████████████████████████████████████████████████       | 237379/262326 [14:05<01:43, 240.55it/s]


 91%|██████████████████████████████████████████████████████████████████       | 237410/262326 [14:05<01:40, 248.06it/s]


 91%|██████████████████████████████████████████████████████████████████       | 237441/262326 [14:05<01:35, 261.80it/s]


 91%|██████████████████████████████████████████████████████████████████       | 237475/262326 [14:05<01:31, 271.62it/s]


 91%|██████████████████████████████████████████████████████████████████       | 237506/262326 [14:05<01:32, 268.88it/s]


 91%|██████████████████████████████████████████████████████████████████       | 237542/262326 [14:05<01:28, 280.48it/s]


 91%|██████████████████████████████████████████████████████████████████       | 237571/262326 [14:06<01:27, 282.06it/s]


 91%|██████████████████████████████████████████████████████████████████       | 237600/262326 [14:06<01:44, 237.32it/s]


 91%|██████████████████████████████████████████████████████████████████▏      | 237626/262326 [14:06<01:50, 223.16it/s]


 91%|██████████████████████████████████████████████████████████████████▏      | 237650/262326 [14:06<01:49, 226.28it/s]


 91%|██████████████████████████████████████████████████████████████████▏      | 237681/262326 [14:06<01:43, 238.35it/s]


 91%|██████████████████████████████████████████████████████████████████▏      | 237707/262326 [14:06<01:40, 244.22it/s]


 91%|██████████████████████████████████████████████████████████████████▏      | 237732/262326 [14:06<01:40, 244.97it/s]


 91%|██████████████████████████████████████████████████████████████████▏      | 237757/262326 [14:06<01:44, 234.03it/s]


 91%|██████████████████████████████████████████████████████████████████▏      | 237783/262326 [14:07<01:45, 231.90it/s]


 91%|██████████████████████████████████████████████████████████████████▏      | 237812/262326 [14:07<01:39, 246.49it/s]


 91%|██████████████████████████████████████████████████████████████████▏      | 237840/262326 [14:07<01:36, 253.64it/s]


 91%|██████████████████████████████████████████████████████████████████▏      | 237872/262326 [14:07<01:33, 261.74it/s]


 91%|██████████████████████████████████████████████████████████████████▏      | 237904/262326 [14:07<01:31, 266.60it/s]


 91%|██████████████████████████████████████████████████████████████████▏      | 237931/262326 [14:07<01:40, 241.82it/s]


 91%|██████████████████████████████████████████████████████████████████▏      | 237956/262326 [14:07<01:40, 243.45it/s]


 91%|██████████████████████████████████████████████████████████████████▏      | 237981/262326 [14:07<01:43, 234.40it/s]


 91%|██████████████████████████████████████████████████████████████████▏      | 238005/262326 [14:07<01:48, 223.91it/s]


 91%|██████████████████████████████████████████████████████████████████▏      | 238033/262326 [14:08<01:42, 237.73it/s]


 91%|██████████████████████████████████████████████████████████████████▏      | 238069/262326 [14:08<01:34, 256.32it/s]


 91%|██████████████████████████████████████████████████████████████████▎      | 238097/262326 [14:08<01:32, 261.73it/s]


 91%|██████████████████████████████████████████████████████████████████▎      | 238129/262326 [14:08<01:30, 266.40it/s]


 91%|██████████████████████████████████████████████████████████████████▎      | 238163/262326 [14:08<01:31, 264.19it/s]


 91%|██████████████████████████████████████████████████████████████████▎      | 238191/262326 [14:08<01:30, 266.16it/s]


 91%|██████████████████████████████████████████████████████████████████▎      | 238223/262326 [14:08<01:29, 269.43it/s]


 91%|██████████████████████████████████████████████████████████████████▎      | 238251/262326 [14:08<01:33, 256.72it/s]


 91%|██████████████████████████████████████████████████████████████████▎      | 238285/262326 [14:08<01:29, 269.09it/s]


 91%|██████████████████████████████████████████████████████████████████▎      | 238314/262326 [14:09<01:27, 274.08it/s]


 91%|██████████████████████████████████████████████████████████████████▎      | 238343/262326 [14:09<01:26, 277.41it/s]


 91%|██████████████████████████████████████████████████████████████████▎      | 238371/262326 [14:09<01:27, 274.94it/s]


 91%|██████████████████████████████████████████████████████████████████▎      | 238403/262326 [14:09<01:25, 279.46it/s]


 91%|██████████████████████████████████████████████████████████████████▎      | 238432/262326 [14:09<01:24, 281.45it/s]


 91%|██████████████████████████████████████████████████████████████████▎      | 238461/262326 [14:09<01:24, 282.59it/s]


 91%|██████████████████████████████████████████████████████████████████▎      | 238494/262326 [14:09<01:23, 284.46it/s]


 91%|██████████████████████████████████████████████████████████████████▍      | 238523/262326 [14:09<01:23, 285.10it/s]


 91%|██████████████████████████████████████████████████████████████████▍      | 238552/262326 [14:09<01:23, 286.00it/s]


 91%|██████████████████████████████████████████████████████████████████▍      | 238581/262326 [14:09<01:22, 286.43it/s]


 91%|██████████████████████████████████████████████████████████████████▍      | 238610/262326 [14:10<01:22, 287.46it/s]


 91%|██████████████████████████████████████████████████████████████████▍      | 238639/262326 [14:10<01:25, 275.56it/s]


 91%|██████████████████████████████████████████████████████████████████▍      | 238667/262326 [14:10<01:25, 275.91it/s]


 91%|██████████████████████████████████████████████████████████████████▍      | 238695/262326 [14:10<01:29, 265.21it/s]


 91%|██████████████████████████████████████████████████████████████████▍      | 238723/262326 [14:10<01:27, 268.79it/s]


 91%|██████████████████████████████████████████████████████████████████▍      | 238752/262326 [14:10<01:25, 274.32it/s]


 91%|██████████████████████████████████████████████████████████████████▍      | 238784/262326 [14:10<01:25, 275.42it/s]


 91%|██████████████████████████████████████████████████████████████████▍      | 238812/262326 [14:10<01:25, 275.69it/s]


 91%|██████████████████████████████████████████████████████████████████▍      | 238840/262326 [14:10<01:25, 275.81it/s]


 91%|██████████████████████████████████████████████████████████████████▍      | 238868/262326 [14:11<01:24, 276.84it/s]


 91%|██████████████████████████████████████████████████████████████████▍      | 238903/262326 [14:11<01:22, 282.54it/s]


 91%|██████████████████████████████████████████████████████████████████▍      | 238932/262326 [14:11<01:23, 280.81it/s]


 91%|██████████████████████████████████████████████████████████████████▍      | 238961/262326 [14:11<01:24, 275.74it/s]


 91%|██████████████████████████████████████████████████████████████████▌      | 238989/262326 [14:11<01:24, 274.93it/s]


 91%|██████████████████████████████████████████████████████████████████▌      | 239017/262326 [14:11<01:40, 232.52it/s]


 91%|██████████████████████████████████████████████████████████████████▌      | 239042/262326 [14:11<01:42, 226.18it/s]


 91%|██████████████████████████████████████████████████████████████████▌      | 239075/262326 [14:11<01:36, 241.81it/s]


 91%|██████████████████████████████████████████████████████████████████▌      | 239104/262326 [14:11<01:31, 253.71it/s]


 91%|██████████████████████████████████████████████████████████████████▌      | 239135/262326 [14:12<01:27, 266.31it/s]


 91%|██████████████████████████████████████████████████████████████████▌      | 239171/262326 [14:12<01:22, 279.19it/s]


 91%|██████████████████████████████████████████████████████████████████▌      | 239200/262326 [14:12<01:23, 277.46it/s]


 91%|██████████████████████████████████████████████████████████████████▌      | 239233/262326 [14:12<01:21, 283.20it/s]


 91%|██████████████████████████████████████████████████████████████████▌      | 239269/262326 [14:12<01:19, 291.36it/s]


 91%|██████████████████████████████████████████████████████████████████▌      | 239299/262326 [14:12<01:18, 292.54it/s]


 91%|██████████████████████████████████████████████████████████████████▌      | 239329/262326 [14:12<01:22, 277.52it/s]


 91%|██████████████████████████████████████████████████████████████████▌      | 239360/262326 [14:12<01:23, 276.04it/s]


 91%|██████████████████████████████████████████████████████████████████▌      | 239392/262326 [14:12<01:19, 287.80it/s]


 91%|██████████████████████████████████████████████████████████████████▋      | 239427/262326 [14:13<01:18, 293.51it/s]


 91%|██████████████████████████████████████████████████████████████████▋      | 239457/262326 [14:13<01:17, 294.01it/s]


 91%|██████████████████████████████████████████████████████████████████▋      | 239487/262326 [14:13<01:35, 239.41it/s]


 91%|██████████████████████████████████████████████████████████████████▋      | 239514/262326 [14:13<01:33, 244.64it/s]


 91%|██████████████████████████████████████████████████████████████████▋      | 239545/262326 [14:13<01:27, 260.19it/s]


 91%|██████████████████████████████████████████████████████████████████▋      | 239575/262326 [14:13<01:24, 270.44it/s]


 91%|██████████████████████████████████████████████████████████████████▋      | 239608/262326 [14:13<01:21, 277.58it/s]


 91%|██████████████████████████████████████████████████████████████████▋      | 239638/262326 [14:13<01:20, 281.86it/s]


 91%|██████████████████████████████████████████████████████████████████▋      | 239670/262326 [14:13<01:17, 290.87it/s]


 91%|██████████████████████████████████████████████████████████████████▋      | 239705/262326 [14:14<01:19, 284.02it/s]


 91%|██████████████████████████████████████████████████████████████████▋      | 239735/262326 [14:14<01:18, 287.31it/s]


 91%|██████████████████████████████████████████████████████████████████▋      | 239766/262326 [14:14<01:18, 288.76it/s]


 91%|██████████████████████████████████████████████████████████████████▋      | 239802/262326 [14:14<01:15, 297.14it/s]


 91%|██████████████████████████████████████████████████████████████████▋      | 239838/262326 [14:14<01:14, 302.65it/s]


 91%|██████████████████████████████████████████████████████████████████▊      | 239869/262326 [14:14<01:13, 303.64it/s]


 91%|██████████████████████████████████████████████████████████████████▊      | 239900/262326 [14:14<01:20, 278.77it/s]


 91%|██████████████████████████████████████████████████████████████████▊      | 239929/262326 [14:14<01:20, 279.91it/s]


 91%|██████████████████████████████████████████████████████████████████▊      | 239964/262326 [14:14<01:18, 286.40it/s]


 91%|██████████████████████████████████████████████████████████████████▊      | 239994/262326 [14:15<01:16, 290.27it/s]


 92%|██████████████████████████████████████████████████████████████████▊      | 240030/262326 [14:15<01:15, 296.74it/s]


 92%|██████████████████████████████████████████████████████████████████▊      | 240060/262326 [14:15<01:15, 294.57it/s]


 92%|██████████████████████████████████████████████████████████████████▊      | 240090/262326 [14:15<01:15, 296.00it/s]


 92%|██████████████████████████████████████████████████████████████████▊      | 240125/262326 [14:15<01:14, 298.60it/s]


 92%|██████████████████████████████████████████████████████████████████▊      | 240156/262326 [14:15<01:13, 299.95it/s]


 92%|██████████████████████████████████████████████████████████████████▊      | 240189/262326 [14:15<01:14, 296.63it/s]


 92%|██████████████████████████████████████████████████████████████████▊      | 240219/262326 [14:15<01:14, 297.43it/s]


 92%|██████████████████████████████████████████████████████████████████▊      | 240251/262326 [14:15<01:13, 300.77it/s]


 92%|██████████████████████████████████████████████████████████████████▊      | 240282/262326 [14:16<01:12, 302.00it/s]


 92%|██████████████████████████████████████████████████████████████████▉      | 240317/262326 [14:16<01:12, 304.81it/s]


 92%|██████████████████████████████████████████████████████████████████▉      | 240348/262326 [14:16<01:16, 288.76it/s]


 92%|██████████████████████████████████████████████████████████████████▉      | 240382/262326 [14:16<01:15, 292.53it/s]


 92%|██████████████████████████████████████████████████████████████████▉      | 240414/262326 [14:16<01:13, 299.31it/s]


 92%|██████████████████████████████████████████████████████████████████▉      | 240450/262326 [14:16<01:12, 303.23it/s]


 92%|██████████████████████████████████████████████████████████████████▉      | 240481/262326 [14:16<01:15, 289.72it/s]


 92%|██████████████████████████████████████████████████████████████████▉      | 240511/262326 [14:16<01:41, 214.15it/s]


 92%|██████████████████████████████████████████████████████████████████▉      | 240536/262326 [14:17<01:38, 220.65it/s]


 92%|██████████████████████████████████████████████████████████████████▉      | 240561/262326 [14:17<01:36, 226.56it/s]


 92%|██████████████████████████████████████████████████████████████████▉      | 240589/262326 [14:17<01:30, 240.07it/s]


 92%|██████████████████████████████████████████████████████████████████▉      | 240618/262326 [14:17<01:25, 253.12it/s]


 92%|██████████████████████████████████████████████████████████████████▉      | 240648/262326 [14:17<01:22, 263.65it/s]


 92%|██████████████████████████████████████████████████████████████████▉      | 240679/262326 [14:17<01:18, 274.76it/s]


 92%|██████████████████████████████████████████████████████████████████▉      | 240708/262326 [14:17<01:18, 274.63it/s]


 92%|██████████████████████████████████████████████████████████████████▉      | 240739/262326 [14:17<01:17, 279.31it/s]


 92%|███████████████████████████████████████████████████████████████████      | 240768/262326 [14:17<01:20, 269.37it/s]


 92%|███████████████████████████████████████████████████████████████████      | 240796/262326 [14:17<01:19, 271.18it/s]


 92%|███████████████████████████████████████████████████████████████████      | 240833/262326 [14:18<01:18, 275.21it/s]


 92%|███████████████████████████████████████████████████████████████████      | 240864/262326 [14:18<01:16, 280.21it/s]


 92%|███████████████████████████████████████████████████████████████████      | 240894/262326 [14:18<01:15, 285.08it/s]


 92%|███████████████████████████████████████████████████████████████████      | 240924/262326 [14:18<01:14, 289.01it/s]


 92%|███████████████████████████████████████████████████████████████████      | 240959/262326 [14:18<01:12, 295.58it/s]


 92%|███████████████████████████████████████████████████████████████████      | 240990/262326 [14:18<01:11, 299.56it/s]


 92%|███████████████████████████████████████████████████████████████████      | 241021/262326 [14:18<01:13, 291.39it/s]


 92%|███████████████████████████████████████████████████████████████████      | 241051/262326 [14:18<01:13, 288.64it/s]


 92%|███████████████████████████████████████████████████████████████████      | 241081/262326 [14:18<01:13, 290.64it/s]


 92%|███████████████████████████████████████████████████████████████████      | 241111/262326 [14:19<01:12, 292.74it/s]


 92%|███████████████████████████████████████████████████████████████████      | 241141/262326 [14:19<01:13, 290.01it/s]


 92%|███████████████████████████████████████████████████████████████████      | 241171/262326 [14:19<01:13, 288.09it/s]


 92%|███████████████████████████████████████████████████████████████████      | 241203/262326 [14:19<01:11, 296.81it/s]


 92%|███████████████████████████████████████████████████████████████████▏     | 241233/262326 [14:19<01:12, 290.50it/s]


 92%|███████████████████████████████████████████████████████████████████▏     | 241263/262326 [14:19<01:13, 286.77it/s]


 92%|███████████████████████████████████████████████████████████████████▏     | 241292/262326 [14:19<01:16, 273.70it/s]


 92%|███████████████████████████████████████████████████████████████████▏     | 241321/262326 [14:19<01:15, 276.78it/s]


 92%|███████████████████████████████████████████████████████████████████▏     | 241350/262326 [14:19<01:15, 277.35it/s]


 92%|███████████████████████████████████████████████████████████████████▏     | 241381/262326 [14:20<01:13, 284.09it/s]


 92%|███████████████████████████████████████████████████████████████████▏     | 241410/262326 [14:20<01:17, 269.41it/s]


 92%|███████████████████████████████████████████████████████████████████▏     | 241438/262326 [14:20<01:18, 266.50it/s]


 92%|███████████████████████████████████████████████████████████████████▏     | 241472/262326 [14:20<01:15, 275.88it/s]


 92%|███████████████████████████████████████████████████████████████████▏     | 241501/262326 [14:20<01:14, 279.49it/s]


 92%|███████████████████████████████████████████████████████████████████▏     | 241532/262326 [14:20<01:12, 285.75it/s]


 92%|███████████████████████████████████████████████████████████████████▏     | 241562/262326 [14:20<01:11, 288.45it/s]


 92%|███████████████████████████████████████████████████████████████████▏     | 241591/262326 [14:20<01:13, 283.23it/s]


 92%|███████████████████████████████████████████████████████████████████▏     | 241620/262326 [14:20<01:18, 265.21it/s]


 92%|███████████████████████████████████████████████████████████████████▏     | 241649/262326 [14:20<01:16, 271.64it/s]


 92%|███████████████████████████████████████████████████████████████████▎     | 241685/262326 [14:21<01:12, 283.44it/s]


 92%|███████████████████████████████████████████████████████████████████▎     | 241721/262326 [14:21<01:11, 288.87it/s]


 92%|███████████████████████████████████████████████████████████████████▎     | 241755/262326 [14:21<01:10, 291.98it/s]


 92%|███████████████████████████████████████████████████████████████████▎     | 241786/262326 [14:21<01:09, 296.87it/s]


 92%|███████████████████████████████████████████████████████████████████▎     | 241816/262326 [14:21<01:10, 292.95it/s]


 92%|███████████████████████████████████████████████████████████████████▎     | 241846/262326 [14:21<01:11, 288.43it/s]


 92%|███████████████████████████████████████████████████████████████████▎     | 241876/262326 [14:21<01:10, 289.14it/s]


 92%|███████████████████████████████████████████████████████████████████▎     | 241907/262326 [14:21<01:09, 293.02it/s]


 92%|███████████████████████████████████████████████████████████████████▎     | 241937/262326 [14:21<01:10, 289.87it/s]


 92%|███████████████████████████████████████████████████████████████████▎     | 241967/262326 [14:22<01:09, 291.36it/s]


 92%|███████████████████████████████████████████████████████████████████▎     | 241997/262326 [14:22<01:11, 285.61it/s]


 92%|███████████████████████████████████████████████████████████████████▎     | 242026/262326 [14:22<01:32, 219.09it/s]


 92%|███████████████████████████████████████████████████████████████████▎     | 242058/262326 [14:22<01:23, 241.65it/s]


 92%|███████████████████████████████████████████████████████████████████▎     | 242089/262326 [14:22<01:18, 257.21it/s]


 92%|███████████████████████████████████████████████████████████████████▍     | 242117/262326 [14:22<01:16, 263.29it/s]


 92%|███████████████████████████████████████████████████████████████████▍     | 242145/262326 [14:22<01:16, 263.01it/s]


 92%|███████████████████████████████████████████████████████████████████▍     | 242174/262326 [14:22<01:14, 269.27it/s]


 92%|███████████████████████████████████████████████████████████████████▍     | 242205/262326 [14:22<01:11, 279.78it/s]


 92%|███████████████████████████████████████████████████████████████████▍     | 242234/262326 [14:23<01:11, 281.33it/s]


 92%|███████████████████████████████████████████████████████████████████▍     | 242269/262326 [14:23<01:09, 289.93it/s]


 92%|███████████████████████████████████████████████████████████████████▍     | 242299/262326 [14:23<01:08, 290.28it/s]


 92%|███████████████████████████████████████████████████████████████████▍     | 242329/262326 [14:23<01:26, 230.46it/s]


 92%|███████████████████████████████████████████████████████████████████▍     | 242357/262326 [14:23<01:22, 243.16it/s]


 92%|███████████████████████████████████████████████████████████████████▍     | 242385/262326 [14:23<01:18, 252.98it/s]


 92%|███████████████████████████████████████████████████████████████████▍     | 242417/262326 [14:23<01:14, 265.79it/s]


 92%|███████████████████████████████████████████████████████████████████▍     | 242447/262326 [14:23<01:12, 273.31it/s]


 92%|███████████████████████████████████████████████████████████████████▍     | 242478/262326 [14:24<01:10, 281.27it/s]


 92%|███████████████████████████████████████████████████████████████████▍     | 242507/262326 [14:24<01:13, 270.66it/s]


 92%|███████████████████████████████████████████████████████████████████▍     | 242536/262326 [14:24<01:12, 274.05it/s]


 92%|███████████████████████████████████████████████████████████████████▌     | 242564/262326 [14:24<01:13, 269.01it/s]


 92%|███████████████████████████████████████████████████████████████████▌     | 242592/262326 [14:24<01:29, 221.61it/s]


 92%|███████████████████████████████████████████████████████████████████▌     | 242616/262326 [14:24<01:28, 222.82it/s]


 92%|███████████████████████████████████████████████████████████████████▌     | 242644/262326 [14:24<01:23, 236.97it/s]


 93%|███████████████████████████████████████████████████████████████████▌     | 242674/262326 [14:24<01:18, 251.05it/s]


 93%|███████████████████████████████████████████████████████████████████▌     | 242711/262326 [14:24<01:12, 271.09it/s]


 93%|███████████████████████████████████████████████████████████████████▌     | 242742/262326 [14:25<01:10, 279.62it/s]


 93%|███████████████████████████████████████████████████████████████████▌     | 242773/262326 [14:25<01:10, 276.84it/s]


 93%|███████████████████████████████████████████████████████████████████▌     | 242802/262326 [14:25<01:09, 279.97it/s]


 93%|███████████████████████████████████████████████████████████████████▌     | 242831/262326 [14:25<01:09, 282.49it/s]


 93%|███████████████████████████████████████████████████████████████████▌     | 242867/262326 [14:25<01:06, 290.67it/s]


 93%|███████████████████████████████████████████████████████████████████▌     | 242897/262326 [14:25<01:06, 291.67it/s]


 93%|███████████████████████████████████████████████████████████████████▌     | 242927/262326 [14:25<01:07, 285.99it/s]


 93%|███████████████████████████████████████████████████████████████████▌     | 242958/262326 [14:25<01:07, 287.53it/s]


 93%|███████████████████████████████████████████████████████████████████▌     | 242988/262326 [14:25<01:06, 290.58it/s]


 93%|███████████████████████████████████████████████████████████████████▋     | 243019/262326 [14:25<01:05, 295.37it/s]


 93%|███████████████████████████████████████████████████████████████████▋     | 243054/262326 [14:26<01:04, 298.36it/s]


 93%|███████████████████████████████████████████████████████████████████▋     | 243085/262326 [14:26<01:04, 299.58it/s]


 93%|███████████████████████████████████████████████████████████████████▋     | 243116/262326 [14:26<01:06, 288.67it/s]


 93%|███████████████████████████████████████████████████████████████████▋     | 243145/262326 [14:26<01:06, 288.33it/s]


 93%|███████████████████████████████████████████████████████████████████▋     | 243181/262326 [14:26<01:04, 296.11it/s]


 93%|███████████████████████████████████████████████████████████████████▋     | 243211/262326 [14:26<01:04, 296.60it/s]


 93%|███████████████████████████████████████████████████████████████████▋     | 243241/262326 [14:26<01:09, 272.69it/s]


 93%|███████████████████████████████████████████████████████████████████▋     | 243269/262326 [14:26<01:10, 272.11it/s]


 93%|███████████████████████████████████████████████████████████████████▋     | 243303/262326 [14:26<01:08, 279.14it/s]


 93%|███████████████████████████████████████████████████████████████████▋     | 243334/262326 [14:27<01:06, 287.18it/s]


 93%|███████████████████████████████████████████████████████████████████▋     | 243368/262326 [14:27<01:05, 290.52it/s]


 93%|███████████████████████████████████████████████████████████████████▋     | 243398/262326 [14:27<01:07, 279.98it/s]


 93%|███████████████████████████████████████████████████████████████████▋     | 243427/262326 [14:27<01:07, 279.46it/s]


 93%|███████████████████████████████████████████████████████████████████▊     | 243463/262326 [14:27<01:05, 288.64it/s]


 93%|███████████████████████████████████████████████████████████████████▊     | 243495/262326 [14:27<01:03, 296.32it/s]


 93%|███████████████████████████████████████████████████████████████████▊     | 243525/262326 [14:27<01:06, 283.35it/s]


 93%|███████████████████████████████████████████████████████████████████▊     | 243554/262326 [14:27<01:06, 283.25it/s]


 93%|███████████████████████████████████████████████████████████████████▊     | 243585/262326 [14:27<01:06, 280.37it/s]


 93%|███████████████████████████████████████████████████████████████████▊     | 243618/262326 [14:28<01:04, 291.30it/s]


 93%|███████████████████████████████████████████████████████████████████▊     | 243653/262326 [14:28<01:03, 295.62it/s]


 93%|███████████████████████████████████████████████████████████████████▊     | 243683/262326 [14:28<01:03, 293.39it/s]


 93%|███████████████████████████████████████████████████████████████████▊     | 243718/262326 [14:28<01:02, 296.52it/s]


 93%|███████████████████████████████████████████████████████████████████▊     | 243754/262326 [14:28<01:01, 300.94it/s]


 93%|███████████████████████████████████████████████████████████████████▊     | 243785/262326 [14:28<01:03, 290.07it/s]


 93%|███████████████████████████████████████████████████████████████████▊     | 243815/262326 [14:28<01:07, 275.40it/s]


 93%|███████████████████████████████████████████████████████████████████▊     | 243845/262326 [14:28<01:08, 270.53it/s]


 93%|███████████████████████████████████████████████████████████████████▊     | 243881/262326 [14:28<01:05, 283.11it/s]


 93%|███████████████████████████████████████████████████████████████████▉     | 243918/262326 [14:29<01:02, 293.62it/s]


 93%|███████████████████████████████████████████████████████████████████▉     | 243949/262326 [14:29<01:02, 295.25it/s]


 93%|███████████████████████████████████████████████████████████████████▉     | 243980/262326 [14:29<01:03, 287.73it/s]


 93%|███████████████████████████████████████████████████████████████████▉     | 244012/262326 [14:29<01:02, 294.26it/s]


 93%|███████████████████████████████████████████████████████████████████▉     | 244042/262326 [14:29<01:01, 295.20it/s]


 93%|███████████████████████████████████████████████████████████████████▉     | 244072/262326 [14:29<01:02, 291.06it/s]


 93%|███████████████████████████████████████████████████████████████████▉     | 244104/262326 [14:29<01:02, 292.55it/s]


 93%|███████████████████████████████████████████████████████████████████▉     | 244134/262326 [14:29<01:07, 268.51it/s]


 93%|███████████████████████████████████████████████████████████████████▉     | 244162/262326 [14:29<01:07, 270.68it/s]


 93%|███████████████████████████████████████████████████████████████████▉     | 244193/262326 [14:30<01:04, 280.81it/s]


 93%|███████████████████████████████████████████████████████████████████▉     | 244227/262326 [14:30<01:03, 285.27it/s]


 93%|███████████████████████████████████████████████████████████████████▉     | 244257/262326 [14:30<01:02, 287.42it/s]


 93%|███████████████████████████████████████████████████████████████████▉     | 244286/262326 [14:30<01:02, 287.80it/s]


 93%|███████████████████████████████████████████████████████████████████▉     | 244315/262326 [14:30<01:02, 288.32it/s]


 93%|███████████████████████████████████████████████████████████████████▉     | 244349/262326 [14:30<01:01, 291.79it/s]


 93%|████████████████████████████████████████████████████████████████████     | 244379/262326 [14:30<01:01, 292.37it/s]


 93%|████████████████████████████████████████████████████████████████████     | 244409/262326 [14:30<01:00, 293.89it/s]


 93%|████████████████████████████████████████████████████████████████████     | 244439/262326 [14:30<01:03, 281.60it/s]


 93%|████████████████████████████████████████████████████████████████████     | 244468/262326 [14:31<01:02, 283.59it/s]


 93%|████████████████████████████████████████████████████████████████████     | 244497/262326 [14:31<01:02, 283.04it/s]


 93%|████████████████████████████████████████████████████████████████████     | 244526/262326 [14:31<01:02, 284.48it/s]


 93%|████████████████████████████████████████████████████████████████████     | 244555/262326 [14:31<01:09, 254.27it/s]


 93%|████████████████████████████████████████████████████████████████████     | 244582/262326 [14:31<01:18, 225.45it/s]


 93%|████████████████████████████████████████████████████████████████████     | 244612/262326 [14:31<01:13, 241.69it/s]


 93%|████████████████████████████████████████████████████████████████████     | 244643/262326 [14:31<01:10, 249.88it/s]


 93%|████████████████████████████████████████████████████████████████████     | 244673/262326 [14:31<01:07, 262.03it/s]


 93%|████████████████████████████████████████████████████████████████████     | 244703/262326 [14:31<01:05, 270.79it/s]


 93%|████████████████████████████████████████████████████████████████████     | 244732/262326 [14:32<01:06, 265.46it/s]


 93%|████████████████████████████████████████████████████████████████████     | 244759/262326 [14:32<01:08, 254.60it/s]


 93%|████████████████████████████████████████████████████████████████████     | 244785/262326 [14:32<01:13, 238.07it/s]


 93%|████████████████████████████████████████████████████████████████████▏    | 244810/262326 [14:32<01:12, 240.13it/s]


 93%|████████████████████████████████████████████████████████████████████▏    | 244837/262326 [14:32<01:11, 243.53it/s]


 93%|████████████████████████████████████████████████████████████████████▏    | 244863/262326 [14:32<01:10, 248.11it/s]


 93%|████████████████████████████████████████████████████████████████████▏    | 244897/262326 [14:32<01:06, 260.33it/s]


 93%|████████████████████████████████████████████████████████████████████▏    | 244927/262326 [14:32<01:04, 271.02it/s]


 93%|████████████████████████████████████████████████████████████████████▏    | 244956/262326 [14:32<01:02, 276.04it/s]


 93%|████████████████████████████████████████████████████████████████████▏    | 244986/262326 [14:33<01:04, 269.47it/s]


 93%|████████████████████████████████████████████████████████████████████▏    | 245014/262326 [14:33<01:09, 249.19it/s]


 93%|████████████████████████████████████████████████████████████████████▏    | 245043/262326 [14:33<01:06, 260.16it/s]


 93%|████████████████████████████████████████████████████████████████████▏    | 245073/262326 [14:33<01:03, 269.87it/s]


 93%|████████████████████████████████████████████████████████████████████▏    | 245104/262326 [14:33<01:06, 258.86it/s]


 93%|████████████████████████████████████████████████████████████████████▏    | 245135/262326 [14:33<01:03, 269.91it/s]


 93%|████████████████████████████████████████████████████████████████████▏    | 245168/262326 [14:33<01:02, 275.40it/s]


 93%|████████████████████████████████████████████████████████████████████▏    | 245200/262326 [14:33<01:00, 285.39it/s]


 93%|████████████████████████████████████████████████████████████████████▏    | 245235/262326 [14:33<01:00, 280.43it/s]


 93%|████████████████████████████████████████████████████████████████████▎    | 245267/262326 [14:34<00:58, 289.83it/s]


 94%|████████████████████████████████████████████████████████████████████▎    | 245298/262326 [14:34<00:57, 294.61it/s]


 94%|████████████████████████████████████████████████████████████████████▎    | 245328/262326 [14:34<00:59, 284.93it/s]


 94%|████████████████████████████████████████████████████████████████████▎    | 245357/262326 [14:34<00:59, 283.78it/s]


 94%|████████████████████████████████████████████████████████████████████▎    | 245386/262326 [14:34<00:59, 284.50it/s]


 94%|████████████████████████████████████████████████████████████████████▎    | 245419/262326 [14:34<00:59, 285.58it/s]


 94%|████████████████████████████████████████████████████████████████████▎    | 245449/262326 [14:34<00:58, 289.66it/s]


 94%|████████████████████████████████████████████████████████████████████▎    | 245479/262326 [14:34<00:57, 291.56it/s]


 94%|████████████████████████████████████████████████████████████████████▎    | 245509/262326 [14:34<00:57, 293.99it/s]


 94%|████████████████████████████████████████████████████████████████████▎    | 245539/262326 [14:34<00:56, 295.28it/s]


 94%|████████████████████████████████████████████████████████████████████▎    | 245576/262326 [14:35<00:55, 302.46it/s]


 94%|████████████████████████████████████████████████████████████████████▎    | 245607/262326 [14:35<00:56, 298.21it/s]


 94%|████████████████████████████████████████████████████████████████████▎    | 245637/262326 [14:35<00:57, 289.06it/s]


 94%|████████████████████████████████████████████████████████████████████▎    | 245671/262326 [14:35<00:59, 279.93it/s]


 94%|████████████████████████████████████████████████████████████████████▎    | 245703/262326 [14:35<00:59, 277.12it/s]


 94%|████████████████████████████████████████████████████████████████████▍    | 245739/262326 [14:35<00:57, 286.66it/s]


 94%|████████████████████████████████████████████████████████████████████▍    | 245769/262326 [14:35<00:57, 289.84it/s]


 94%|████████████████████████████████████████████████████████████████████▍    | 245800/262326 [14:35<00:55, 295.47it/s]


 94%|████████████████████████████████████████████████████████████████████▍    | 245830/262326 [14:35<00:55, 296.63it/s]


 94%|████████████████████████████████████████████████████████████████████▍    | 245860/262326 [14:36<00:58, 283.24it/s]


 94%|████████████████████████████████████████████████████████████████████▍    | 245889/262326 [14:36<00:59, 275.39it/s]


 94%|████████████████████████████████████████████████████████████████████▍    | 245921/262326 [14:36<00:58, 281.35it/s]


 94%|████████████████████████████████████████████████████████████████████▍    | 245950/262326 [14:36<00:59, 274.11it/s]


 94%|████████████████████████████████████████████████████████████████████▍    | 245983/262326 [14:36<00:56, 286.73it/s]


 94%|████████████████████████████████████████████████████████████████████▍    | 246018/262326 [14:36<00:55, 291.48it/s]


 94%|████████████████████████████████████████████████████████████████████▍    | 246051/262326 [14:36<00:56, 290.37it/s]


 94%|████████████████████████████████████████████████████████████████████▍    | 246083/262326 [14:36<00:57, 283.64it/s]


 94%|████████████████████████████████████████████████████████████████████▍    | 246119/262326 [14:37<00:55, 291.54it/s]


 94%|████████████████████████████████████████████████████████████████████▍    | 246149/262326 [14:37<00:55, 293.38it/s]


 94%|████████████████████████████████████████████████████████████████████▌    | 246179/262326 [14:37<00:56, 286.49it/s]


 94%|████████████████████████████████████████████████████████████████████▌    | 246211/262326 [14:37<00:55, 288.44it/s]


 94%|████████████████████████████████████████████████████████████████████▌    | 246247/262326 [14:37<00:56, 284.48it/s]


 94%|████████████████████████████████████████████████████████████████████▌    | 246277/262326 [14:37<00:55, 288.67it/s]


 94%|████████████████████████████████████████████████████████████████████▌    | 246308/262326 [14:37<00:54, 293.26it/s]


 94%|████████████████████████████████████████████████████████████████████▌    | 246342/262326 [14:37<00:54, 293.49it/s]


 94%|████████████████████████████████████████████████████████████████████▌    | 246372/262326 [14:37<00:59, 268.92it/s]


 94%|████████████████████████████████████████████████████████████████████▌    | 246403/262326 [14:38<00:57, 278.27it/s]


 94%|████████████████████████████████████████████████████████████████████▌    | 246439/262326 [14:38<00:55, 288.56it/s]


 94%|████████████████████████████████████████████████████████████████████▌    | 246469/262326 [14:38<00:55, 287.54it/s]


 94%|████████████████████████████████████████████████████████████████████▌    | 246499/262326 [14:38<00:54, 287.89it/s]


 94%|████████████████████████████████████████████████████████████████████▌    | 246530/262326 [14:38<00:53, 293.58it/s]


 94%|████████████████████████████████████████████████████████████████████▌    | 246565/262326 [14:38<00:52, 302.12it/s]


 94%|████████████████████████████████████████████████████████████████████▌    | 246596/262326 [14:38<01:03, 246.32it/s]


 94%|████████████████████████████████████████████████████████████████████▋    | 246627/262326 [14:38<01:02, 249.47it/s]


 94%|████████████████████████████████████████████████████████████████████▋    | 246657/262326 [14:38<00:59, 262.44it/s]


 94%|████████████████████████████████████████████████████████████████████▋    | 246687/262326 [14:39<00:57, 271.72it/s]


 94%|████████████████████████████████████████████████████████████████████▋    | 246716/262326 [14:39<00:56, 275.86it/s]


 94%|████████████████████████████████████████████████████████████████████▋    | 246746/262326 [14:39<00:55, 279.72it/s]


 94%|████████████████████████████████████████████████████████████████████▋    | 246776/262326 [14:39<00:55, 277.97it/s]


 94%|████████████████████████████████████████████████████████████████████▋    | 246805/262326 [14:39<00:55, 280.88it/s]


 94%|████████████████████████████████████████████████████████████████████▋    | 246834/262326 [14:39<00:56, 275.70it/s]


 94%|████████████████████████████████████████████████████████████████████▋    | 246862/262326 [14:39<00:58, 265.43it/s]


 94%|████████████████████████████████████████████████████████████████████▋    | 246889/262326 [14:39<00:59, 260.05it/s]


 94%|████████████████████████████████████████████████████████████████████▋    | 246916/262326 [14:39<01:00, 256.43it/s]


 94%|████████████████████████████████████████████████████████████████████▋    | 246942/262326 [14:40<01:00, 254.67it/s]


 94%|████████████████████████████████████████████████████████████████████▋    | 246969/262326 [14:40<01:00, 252.77it/s]


 94%|████████████████████████████████████████████████████████████████████▋    | 246995/262326 [14:40<01:01, 249.94it/s]


 94%|████████████████████████████████████████████████████████████████████▋    | 247021/262326 [14:40<01:01, 248.02it/s]


 94%|████████████████████████████████████████████████████████████████████▋    | 247048/262326 [14:40<01:00, 253.72it/s]


 94%|████████████████████████████████████████████████████████████████████▊    | 247076/262326 [14:40<00:58, 260.07it/s]


 94%|████████████████████████████████████████████████████████████████████▊    | 247103/262326 [14:40<00:59, 257.16it/s]


 94%|████████████████████████████████████████████████████████████████████▊    | 247129/262326 [14:40<01:00, 249.32it/s]


 94%|████████████████████████████████████████████████████████████████████▊    | 247156/262326 [14:40<00:59, 253.23it/s]


 94%|████████████████████████████████████████████████████████████████████▊    | 247182/262326 [14:40<01:00, 250.27it/s]


 94%|████████████████████████████████████████████████████████████████████▊    | 247210/262326 [14:41<00:58, 256.57it/s]


 94%|████████████████████████████████████████████████████████████████████▊    | 247236/262326 [14:41<00:59, 254.79it/s]


 94%|████████████████████████████████████████████████████████████████████▊    | 247264/262326 [14:41<00:57, 260.58it/s]


 94%|████████████████████████████████████████████████████████████████████▊    | 247294/262326 [14:41<00:55, 268.58it/s]


 94%|████████████████████████████████████████████████████████████████████▊    | 247324/262326 [14:41<00:54, 275.20it/s]


 94%|████████████████████████████████████████████████████████████████████▊    | 247352/262326 [14:41<01:00, 246.17it/s]


 94%|████████████████████████████████████████████████████████████████████▊    | 247385/262326 [14:41<00:57, 258.45it/s]


 94%|████████████████████████████████████████████████████████████████████▊    | 247416/262326 [14:41<00:54, 271.19it/s]


 94%|████████████████████████████████████████████████████████████████████▊    | 247445/262326 [14:41<00:53, 276.39it/s]


 94%|████████████████████████████████████████████████████████████████████▊    | 247474/262326 [14:42<00:53, 278.77it/s]


 94%|████████████████████████████████████████████████████████████████████▉    | 247511/262326 [14:42<00:50, 291.17it/s]


 94%|████████████████████████████████████████████████████████████████████▉    | 247541/262326 [14:42<00:51, 289.06it/s]


 94%|████████████████████████████████████████████████████████████████████▉    | 247571/262326 [14:42<00:53, 277.79it/s]


 94%|████████████████████████████████████████████████████████████████████▉    | 247606/262326 [14:42<00:51, 287.99it/s]


 94%|████████████████████████████████████████████████████████████████████▉    | 247643/262326 [14:42<00:49, 297.17it/s]


 94%|████████████████████████████████████████████████████████████████████▉    | 247673/262326 [14:42<00:49, 296.76it/s]


 94%|████████████████████████████████████████████████████████████████████▉    | 247703/262326 [14:42<00:49, 296.65it/s]


 94%|████████████████████████████████████████████████████████████████████▉    | 247733/262326 [14:42<00:49, 296.54it/s]


 94%|████████████████████████████████████████████████████████████████████▉    | 247766/262326 [14:43<00:49, 294.13it/s]


 94%|████████████████████████████████████████████████████████████████████▉    | 247796/262326 [14:43<00:49, 294.62it/s]


 94%|████████████████████████████████████████████████████████████████████▉    | 247826/262326 [14:43<00:49, 290.45it/s]


 94%|████████████████████████████████████████████████████████████████████▉    | 247856/262326 [14:43<00:50, 285.58it/s]


 94%|████████████████████████████████████████████████████████████████████▉    | 247885/262326 [14:43<00:50, 286.13it/s]


 95%|████████████████████████████████████████████████████████████████████▉    | 247914/262326 [14:43<00:50, 286.87it/s]


 95%|████████████████████████████████████████████████████████████████████▉    | 247947/262326 [14:43<00:50, 286.57it/s]


 95%|█████████████████████████████████████████████████████████████████████    | 247976/262326 [14:43<00:50, 285.68it/s]


 95%|█████████████████████████████████████████████████████████████████████    | 248008/262326 [14:43<00:50, 283.75it/s]


 95%|█████████████████████████████████████████████████████████████████████    | 248037/262326 [14:43<00:52, 273.92it/s]


 95%|█████████████████████████████████████████████████████████████████████    | 248065/262326 [14:44<00:59, 238.98it/s]


 95%|█████████████████████████████████████████████████████████████████████    | 248091/262326 [14:44<00:58, 243.24it/s]


 95%|█████████████████████████████████████████████████████████████████████    | 248124/262326 [14:44<00:57, 245.92it/s]


 95%|█████████████████████████████████████████████████████████████████████    | 248150/262326 [14:44<00:57, 248.47it/s]


 95%|█████████████████████████████████████████████████████████████████████    | 248186/262326 [14:44<00:53, 264.57it/s]


 95%|█████████████████████████████████████████████████████████████████████    | 248216/262326 [14:44<00:51, 273.19it/s]


 95%|█████████████████████████████████████████████████████████████████████    | 248244/262326 [14:44<00:51, 275.17it/s]


 95%|█████████████████████████████████████████████████████████████████████    | 248273/262326 [14:44<00:50, 279.27it/s]


 95%|█████████████████████████████████████████████████████████████████████    | 248309/262326 [14:45<00:48, 288.31it/s]


 95%|█████████████████████████████████████████████████████████████████████    | 248340/262326 [14:45<00:47, 293.56it/s]


 95%|█████████████████████████████████████████████████████████████████████    | 248376/262326 [14:45<00:46, 296.90it/s]


 95%|█████████████████████████████████████████████████████████████████████▏   | 248406/262326 [14:45<00:46, 297.37it/s]


 95%|█████████████████████████████████████████████████████████████████████▏   | 248437/262326 [14:45<00:48, 288.88it/s]


 95%|█████████████████████████████████████████████████████████████████████▏   | 248467/262326 [14:45<00:48, 284.03it/s]


 95%|█████████████████████████████████████████████████████████████████████▏   | 248496/262326 [14:45<00:49, 279.76it/s]


 95%|█████████████████████████████████████████████████████████████████████▏   | 248525/262326 [14:45<00:48, 282.34it/s]


 95%|█████████████████████████████████████████████████████████████████████▏   | 248555/262326 [14:45<00:47, 287.06it/s]


 95%|█████████████████████████████████████████████████████████████████████▏   | 248585/262326 [14:45<00:47, 289.71it/s]


 95%|█████████████████████████████████████████████████████████████████████▏   | 248622/262326 [14:46<00:45, 298.21it/s]


 95%|█████████████████████████████████████████████████████████████████████▏   | 248652/262326 [14:46<00:49, 273.55it/s]


 95%|█████████████████████████████████████████████████████████████████████▏   | 248684/262326 [14:46<00:49, 276.67it/s]


 95%|█████████████████████████████████████████████████████████████████████▏   | 248715/262326 [14:46<00:47, 285.22it/s]


 95%|█████████████████████████████████████████████████████████████████████▏   | 248747/262326 [14:46<00:46, 290.70it/s]


 95%|█████████████████████████████████████████████████████████████████████▏   | 248779/262326 [14:46<00:45, 297.88it/s]


 95%|█████████████████████████████████████████████████████████████████████▏   | 248812/262326 [14:46<00:57, 235.28it/s]


 95%|█████████████████████████████████████████████████████████████████████▏   | 248840/262326 [14:46<00:55, 241.12it/s]


 95%|█████████████████████████████████████████████████████████████████████▎   | 248874/262326 [14:47<00:52, 255.43it/s]


 95%|█████████████████████████████████████████████████████████████████████▎   | 248902/262326 [14:47<00:51, 261.74it/s]


 95%|█████████████████████████████████████████████████████████████████████▎   | 248932/262326 [14:47<00:49, 271.61it/s]


 95%|█████████████████████████████████████████████████████████████████████▎   | 248965/262326 [14:47<00:48, 276.30it/s]


 95%|█████████████████████████████████████████████████████████████████████▎   | 248996/262326 [14:47<00:46, 284.71it/s]


 95%|█████████████████████████████████████████████████████████████████████▎   | 249025/262326 [14:47<00:46, 285.91it/s]


 95%|█████████████████████████████████████████████████████████████████████▎   | 249054/262326 [14:47<00:46, 285.09it/s]


 95%|█████████████████████████████████████████████████████████████████████▎   | 249085/262326 [14:47<00:47, 278.15it/s]


 95%|█████████████████████████████████████████████████████████████████████▎   | 249114/262326 [14:47<00:48, 271.44it/s]


 95%|█████████████████████████████████████████████████████████████████████▎   | 249150/262326 [14:48<00:46, 283.94it/s]


 95%|█████████████████████████████████████████████████████████████████████▎   | 249184/262326 [14:48<00:44, 296.83it/s]


 95%|█████████████████████████████████████████████████████████████████████▎   | 249215/262326 [14:48<00:50, 257.94it/s]


 95%|█████████████████████████████████████████████████████████████████████▎   | 249248/262326 [14:48<00:47, 276.00it/s]


 95%|█████████████████████████████████████████████████████████████████████▎   | 249277/262326 [14:48<00:58, 223.03it/s]


 95%|█████████████████████████████████████████████████████████████████████▍   | 249305/262326 [14:48<00:54, 237.09it/s]


 95%|█████████████████████████████████████████████████████████████████████▍   | 249333/262326 [14:48<00:53, 244.34it/s]


 95%|█████████████████████████████████████████████████████████████████████▍   | 249363/262326 [14:48<00:50, 257.60it/s]


 95%|█████████████████████████████████████████████████████████████████████▍   | 249398/262326 [14:48<00:47, 271.14it/s]


 95%|█████████████████████████████████████████████████████████████████████▍   | 249428/262326 [14:49<00:46, 278.58it/s]


 95%|█████████████████████████████████████████████████████████████████████▍   | 249457/262326 [14:49<00:45, 281.90it/s]


 95%|█████████████████████████████████████████████████████████████████████▍   | 249486/262326 [14:49<00:45, 281.66it/s]


 95%|█████████████████████████████████████████████████████████████████████▍   | 249521/262326 [14:49<00:44, 289.66it/s]


 95%|█████████████████████████████████████████████████████████████████████▍   | 249551/262326 [14:49<00:43, 291.43it/s]


 95%|█████████████████████████████████████████████████████████████████████▍   | 249582/262326 [14:49<00:43, 294.58it/s]


 95%|█████████████████████████████████████████████████████████████████████▍   | 249613/262326 [14:49<00:43, 289.20it/s]


 95%|█████████████████████████████████████████████████████████████████████▍   | 249643/262326 [14:49<00:43, 289.27it/s]


 95%|█████████████████████████████████████████████████████████████████████▍   | 249673/262326 [14:49<00:43, 291.03it/s]


 95%|█████████████████████████████████████████████████████████████████████▍   | 249707/262326 [14:50<00:43, 293.12it/s]


 95%|█████████████████████████████████████████████████████████████████████▍   | 249737/262326 [14:50<00:44, 281.74it/s]


 95%|█████████████████████████████████████████████████████████████████████▌   | 249766/262326 [14:50<00:44, 282.82it/s]


 95%|█████████████████████████████████████████████████████████████████████▌   | 249801/262326 [14:50<00:44, 279.21it/s]


 95%|█████████████████████████████████████████████████████████████████████▌   | 249833/262326 [14:50<00:43, 285.22it/s]


 95%|█████████████████████████████████████████████████████████████████████▌   | 249862/262326 [14:50<00:44, 277.02it/s]


 95%|█████████████████████████████████████████████████████████████████████▌   | 249892/262326 [14:50<00:44, 280.77it/s]


 95%|█████████████████████████████████████████████████████████████████████▌   | 249926/262326 [14:50<00:45, 274.10it/s]


 95%|█████████████████████████████████████████████████████████████████████▌   | 249957/262326 [14:50<00:43, 281.94it/s]


 95%|█████████████████████████████████████████████████████████████████████▌   | 249994/262326 [14:51<00:42, 292.40it/s]


 95%|█████████████████████████████████████████████████████████████████████▌   | 250030/262326 [14:51<00:41, 298.66it/s]


 95%|█████████████████████████████████████████████████████████████████████▌   | 250061/262326 [14:51<00:43, 281.53it/s]


 95%|█████████████████████████████████████████████████████████████████████▌   | 250093/262326 [14:51<00:43, 283.35it/s]


 95%|█████████████████████████████████████████████████████████████████████▌   | 250130/262326 [14:51<00:41, 293.56it/s]


 95%|█████████████████████████████████████████████████████████████████████▌   | 250160/262326 [14:51<00:41, 293.36it/s]


 95%|█████████████████████████████████████████████████████████████████████▌   | 250190/262326 [14:51<00:41, 295.03it/s]


 95%|█████████████████████████████████████████████████████████████████████▋   | 250223/262326 [14:51<00:43, 280.90it/s]


 95%|█████████████████████████████████████████████████████████████████████▋   | 250254/262326 [14:51<00:41, 288.68it/s]


 95%|█████████████████████████████████████████████████████████████████████▋   | 250286/262326 [14:52<00:40, 295.44it/s]


 95%|█████████████████████████████████████████████████████████████████████▋   | 250320/262326 [14:52<00:40, 295.27it/s]


 95%|█████████████████████████████████████████████████████████████████████▋   | 250350/262326 [14:52<00:43, 278.36it/s]


 95%|█████████████████████████████████████████████████████████████████████▋   | 250382/262326 [14:52<00:42, 280.60it/s]


 95%|█████████████████████████████████████████████████████████████████████▋   | 250411/262326 [14:52<00:44, 270.68it/s]


 95%|█████████████████████████████████████████████████████████████████████▋   | 250439/262326 [14:52<00:43, 272.14it/s]


 95%|█████████████████████████████████████████████████████████████████████▋   | 250467/262326 [14:52<00:43, 271.13it/s]


 95%|█████████████████████████████████████████████████████████████████████▋   | 250498/262326 [14:52<00:42, 280.18it/s]


 96%|█████████████████████████████████████████████████████████████████████▋   | 250530/262326 [14:52<00:41, 283.21it/s]


 96%|█████████████████████████████████████████████████████████████████████▋   | 250559/262326 [14:53<00:41, 284.51it/s]


 96%|█████████████████████████████████████████████████████████████████████▋   | 250592/262326 [14:53<00:41, 284.92it/s]


 96%|█████████████████████████████████████████████████████████████████████▋   | 250621/262326 [14:53<00:41, 283.76it/s]


 96%|█████████████████████████████████████████████████████████████████████▊   | 250655/262326 [14:53<00:40, 287.88it/s]


 96%|█████████████████████████████████████████████████████████████████████▊   | 250685/262326 [14:53<00:40, 290.77it/s]


 96%|█████████████████████████████████████████████████████████████████████▊   | 250715/262326 [14:53<00:41, 280.37it/s]


 96%|█████████████████████████████████████████████████████████████████████▊   | 250744/262326 [14:53<00:41, 281.20it/s]


 96%|█████████████████████████████████████████████████████████████████████▊   | 250773/262326 [14:53<00:40, 282.55it/s]


 96%|█████████████████████████████████████████████████████████████████████▊   | 250804/262326 [14:53<00:41, 278.11it/s]


 96%|█████████████████████████████████████████████████████████████████████▊   | 250840/262326 [14:54<00:39, 287.32it/s]


 96%|█████████████████████████████████████████████████████████████████████▊   | 250876/262326 [14:54<00:38, 294.40it/s]


 96%|█████████████████████████████████████████████████████████████████████▊   | 250906/262326 [14:54<00:39, 292.40it/s]


 96%|█████████████████████████████████████████████████████████████████████▊   | 250936/262326 [14:54<00:38, 292.29it/s]


 96%|█████████████████████████████████████████████████████████████████████▊   | 250970/262326 [14:54<00:39, 284.37it/s]


 96%|█████████████████████████████████████████████████████████████████████▊   | 251000/262326 [14:54<00:39, 288.17it/s]


 96%|█████████████████████████████████████████████████████████████████████▊   | 251031/262326 [14:54<00:38, 293.00it/s]


 96%|█████████████████████████████████████████████████████████████████████▊   | 251064/262326 [14:54<00:38, 291.94it/s]


 96%|█████████████████████████████████████████████████████████████████████▊   | 251095/262326 [14:54<00:37, 296.03it/s]


 96%|█████████████████████████████████████████████████████████████████████▉   | 251126/262326 [14:55<00:39, 283.61it/s]


 96%|█████████████████████████████████████████████████████████████████████▉   | 251161/262326 [14:55<00:38, 290.46it/s]


 96%|█████████████████████████████████████████████████████████████████████▉   | 251191/262326 [14:55<00:38, 289.25it/s]


 96%|█████████████████████████████████████████████████████████████████████▉   | 251225/262326 [14:55<00:37, 293.05it/s]


 96%|█████████████████████████████████████████████████████████████████████▉   | 251255/262326 [14:55<00:37, 294.03it/s]


 96%|█████████████████████████████████████████████████████████████████████▉   | 251291/262326 [14:55<00:36, 299.40it/s]


 96%|█████████████████████████████████████████████████████████████████████▉   | 251322/262326 [14:55<00:36, 301.33it/s]


 96%|█████████████████████████████████████████████████████████████████████▉   | 251353/262326 [14:55<00:37, 289.47it/s]


 96%|█████████████████████████████████████████████████████████████████████▉   | 251383/262326 [14:55<00:37, 292.46it/s]


 96%|█████████████████████████████████████████████████████████████████████▉   | 251413/262326 [14:55<00:37, 293.83it/s]


 96%|█████████████████████████████████████████████████████████████████████▉   | 251443/262326 [14:56<00:38, 282.18it/s]


 96%|█████████████████████████████████████████████████████████████████████▉   | 251472/262326 [14:56<00:38, 280.08it/s]


 96%|█████████████████████████████████████████████████████████████████████▉   | 251505/262326 [14:56<00:37, 285.60it/s]


 96%|█████████████████████████████████████████████████████████████████████▉   | 251536/262326 [14:56<00:38, 280.23it/s]


 96%|██████████████████████████████████████████████████████████████████████   | 251566/262326 [14:56<00:37, 284.80it/s]


 96%|██████████████████████████████████████████████████████████████████████   | 251597/262326 [14:56<00:36, 290.67it/s]


 96%|██████████████████████████████████████████████████████████████████████   | 251627/262326 [14:56<00:37, 287.48it/s]


 96%|██████████████████████████████████████████████████████████████████████   | 251661/262326 [14:56<00:36, 294.05it/s]


 96%|██████████████████████████████████████████████████████████████████████   | 251692/262326 [14:56<00:35, 298.37it/s]


 96%|██████████████████████████████████████████████████████████████████████   | 251723/262326 [14:57<00:36, 287.67it/s]


 96%|██████████████████████████████████████████████████████████████████████   | 251759/262326 [14:57<00:35, 295.20it/s]


 96%|██████████████████████████████████████████████████████████████████████   | 251789/262326 [14:57<00:37, 280.64it/s]


 96%|██████████████████████████████████████████████████████████████████████   | 251818/262326 [14:57<00:37, 283.10it/s]


 96%|██████████████████████████████████████████████████████████████████████   | 251847/262326 [14:57<00:36, 284.34it/s]


 96%|██████████████████████████████████████████████████████████████████████   | 251877/262326 [14:57<00:36, 288.13it/s]


 96%|██████████████████████████████████████████████████████████████████████   | 251906/262326 [14:57<00:39, 266.59it/s]


 96%|██████████████████████████████████████████████████████████████████████   | 251937/262326 [14:57<00:37, 276.46it/s]


 96%|██████████████████████████████████████████████████████████████████████   | 251967/262326 [14:57<00:36, 281.74it/s]


 96%|██████████████████████████████████████████████████████████████████████▏  | 251996/262326 [14:58<00:42, 240.99it/s]


 96%|██████████████████████████████████████████████████████████████████████▏  | 252022/262326 [14:58<00:43, 239.54it/s]


 96%|██████████████████████████████████████████████████████████████████████▏  | 252054/262326 [14:58<00:40, 250.57it/s]


 96%|██████████████████████████████████████████████████████████████████████▏  | 252082/262326 [14:58<00:40, 249.93it/s]


 96%|██████████████████████████████████████████████████████████████████████▏  | 252114/262326 [14:58<00:38, 266.72it/s]


 96%|██████████████████████████████████████████████████████████████████████▏  | 252144/262326 [14:58<00:36, 275.89it/s]


 96%|██████████████████████████████████████████████████████████████████████▏  | 252174/262326 [14:58<00:36, 281.74it/s]


 96%|██████████████████████████████████████████████████████████████████████▏  | 252208/262326 [14:58<00:36, 274.91it/s]


 96%|██████████████████████████████████████████████████████████████████████▏  | 252241/262326 [14:58<00:35, 286.53it/s]


 96%|██████████████████████████████████████████████████████████████████████▏  | 252271/262326 [14:59<00:40, 245.53it/s]


 96%|██████████████████████████████████████████████████████████████████████▏  | 252300/262326 [14:59<00:38, 257.21it/s]


 96%|██████████████████████████████████████████████████████████████████████▏  | 252331/262326 [14:59<00:38, 257.48it/s]


 96%|██████████████████████████████████████████████████████████████████████▏  | 252367/262326 [14:59<00:36, 271.80it/s]


 96%|██████████████████████████████████████████████████████████████████████▏  | 252396/262326 [14:59<00:35, 276.83it/s]


 96%|██████████████████████████████████████████████████████████████████████▏  | 252425/262326 [14:59<00:35, 279.70it/s]


 96%|██████████████████████████████████████████████████████████████████████▎  | 252454/262326 [14:59<00:34, 282.29it/s]


 96%|██████████████████████████████████████████████████████████████████████▎  | 252485/262326 [14:59<00:35, 278.09it/s]


 96%|██████████████████████████████████████████████████████████████████████▎  | 252516/262326 [15:00<00:34, 286.91it/s]


 96%|██████████████████████████████████████████████████████████████████████▎  | 252546/262326 [15:00<00:35, 276.80it/s]


 96%|██████████████████████████████████████████████████████████████████████▎  | 252574/262326 [15:00<00:36, 267.20it/s]


 96%|██████████████████████████████████████████████████████████████████████▎  | 252604/262326 [15:00<00:35, 272.85it/s]


 96%|██████████████████████████████████████████████████████████████████████▎  | 252632/262326 [15:00<00:45, 214.80it/s]


 96%|██████████████████████████████████████████████████████████████████████▎  | 252657/262326 [15:00<00:43, 222.52it/s]


 96%|██████████████████████████████████████████████████████████████████████▎  | 252686/262326 [15:00<00:40, 238.27it/s]


 96%|██████████████████████████████████████████████████████████████████████▎  | 252716/262326 [15:00<00:37, 253.19it/s]


 96%|██████████████████████████████████████████████████████████████████████▎  | 252748/262326 [15:00<00:36, 260.61it/s]


 96%|██████████████████████████████████████████████████████████████████████▎  | 252778/262326 [15:01<00:36, 259.35it/s]


 96%|██████████████████████████████████████████████████████████████████████▎  | 252809/262326 [15:01<00:35, 271.37it/s]


 96%|██████████████████████████████████████████████████████████████████████▎  | 252837/262326 [15:01<00:34, 272.75it/s]


 96%|██████████████████████████████████████████████████████████████████████▎  | 252866/262326 [15:01<00:34, 274.79it/s]


 96%|██████████████████████████████████████████████████████████████████████▍  | 252901/262326 [15:01<00:32, 285.70it/s]


 96%|██████████████████████████████████████████████████████████████████████▍  | 252931/262326 [15:01<00:32, 289.52it/s]


 96%|██████████████████████████████████████████████████████████████████████▍  | 252961/262326 [15:01<00:32, 292.06it/s]


 96%|██████████████████████████████████████████████████████████████████████▍  | 252991/262326 [15:01<00:33, 282.02it/s]


 96%|██████████████████████████████████████████████████████████████████████▍  | 253020/262326 [15:01<00:32, 284.00it/s]


 96%|██████████████████████████████████████████████████████████████████████▍  | 253050/262326 [15:02<00:32, 287.71it/s]


 96%|██████████████████████████████████████████████████████████████████████▍  | 253080/262326 [15:02<00:31, 291.03it/s]


 96%|██████████████████████████████████████████████████████████████████████▍  | 253110/262326 [15:02<00:31, 293.56it/s]


 96%|██████████████████████████████████████████████████████████████████████▍  | 253140/262326 [15:02<00:32, 285.59it/s]


 97%|██████████████████████████████████████████████████████████████████████▍  | 253169/262326 [15:02<00:32, 284.38it/s]


 97%|██████████████████████████████████████████████████████████████████████▍  | 253198/262326 [15:02<00:33, 274.74it/s]


 97%|██████████████████████████████████████████████████████████████████████▍  | 253226/262326 [15:02<00:33, 273.29it/s]


 97%|██████████████████████████████████████████████████████████████████████▍  | 253254/262326 [15:02<00:33, 269.57it/s]


 97%|██████████████████████████████████████████████████████████████████████▍  | 253284/262326 [15:02<00:32, 276.50it/s]


 97%|██████████████████████████████████████████████████████████████████████▍  | 253313/262326 [15:02<00:32, 279.57it/s]


 97%|██████████████████████████████████████████████████████████████████████▍  | 253342/262326 [15:03<00:31, 281.68it/s]


 97%|██████████████████████████████████████████████████████████████████████▌  | 253371/262326 [15:03<00:31, 282.86it/s]


 97%|██████████████████████████████████████████████████████████████████████▌  | 253400/262326 [15:03<00:32, 274.65it/s]


 97%|██████████████████████████████████████████████████████████████████████▌  | 253429/262326 [15:03<00:31, 278.49it/s]


 97%|██████████████████████████████████████████████████████████████████████▌  | 253457/262326 [15:03<00:31, 277.51it/s]


 97%|██████████████████████████████████████████████████████████████████████▌  | 253488/262326 [15:03<00:30, 286.39it/s]


 97%|██████████████████████████████████████████████████████████████████████▌  | 253521/262326 [15:03<00:30, 292.72it/s]


 97%|██████████████████████████████████████████████████████████████████████▌  | 253551/262326 [15:03<00:29, 293.73it/s]


 97%|██████████████████████████████████████████████████████████████████████▌  | 253581/262326 [15:03<00:30, 283.02it/s]


 97%|██████████████████████████████████████████████████████████████████████▌  | 253610/262326 [15:04<00:32, 270.28it/s]


 97%|██████████████████████████████████████████████████████████████████████▌  | 253639/262326 [15:04<00:31, 275.34it/s]


 97%|██████████████████████████████████████████████████████████████████████▌  | 253670/262326 [15:04<00:30, 283.27it/s]


 97%|██████████████████████████████████████████████████████████████████████▌  | 253702/262326 [15:04<00:29, 289.18it/s]


 97%|██████████████████████████████████████████████████████████████████████▌  | 253732/262326 [15:04<00:31, 274.04it/s]


 97%|██████████████████████████████████████████████████████████████████████▌  | 253761/262326 [15:04<00:30, 277.70it/s]


 97%|██████████████████████████████████████████████████████████████████████▌  | 253789/262326 [15:04<00:30, 276.13it/s]


 97%|██████████████████████████████████████████████████████████████████████▋  | 253817/262326 [15:04<00:31, 274.40it/s]


 97%|██████████████████████████████████████████████████████████████████████▋  | 253851/262326 [15:04<00:30, 282.37it/s]


 97%|██████████████████████████████████████████████████████████████████████▋  | 253885/262326 [15:04<00:29, 285.84it/s]


 97%|██████████████████████████████████████████████████████████████████████▋  | 253914/262326 [15:05<00:29, 286.25it/s]


 97%|██████████████████████████████████████████████████████████████████████▋  | 253943/262326 [15:05<00:30, 273.40it/s]


 97%|██████████████████████████████████████████████████████████████████████▋  | 253971/262326 [15:05<00:31, 269.18it/s]


 97%|██████████████████████████████████████████████████████████████████████▋  | 254003/262326 [15:05<00:31, 266.36it/s]


 97%|██████████████████████████████████████████████████████████████████████▋  | 254030/262326 [15:05<00:31, 264.03it/s]


 97%|██████████████████████████████████████████████████████████████████████▋  | 254060/262326 [15:05<00:30, 271.88it/s]


 97%|██████████████████████████████████████████████████████████████████████▋  | 254090/262326 [15:05<00:30, 271.18it/s]


 97%|██████████████████████████████████████████████████████████████████████▋  | 254121/262326 [15:05<00:29, 279.97it/s]


 97%|██████████████████████████████████████████████████████████████████████▋  | 254151/262326 [15:05<00:28, 285.36it/s]


 97%|██████████████████████████████████████████████████████████████████████▋  | 254187/262326 [15:06<00:27, 293.69it/s]


 97%|██████████████████████████████████████████████████████████████████████▋  | 254217/262326 [15:06<00:28, 281.91it/s]


 97%|██████████████████████████████████████████████████████████████████████▊  | 254246/262326 [15:06<00:28, 282.00it/s]


 97%|██████████████████████████████████████████████████████████████████████▊  | 254277/262326 [15:06<00:28, 278.50it/s]


 97%|██████████████████████████████████████████████████████████████████████▊  | 254307/262326 [15:06<00:28, 283.26it/s]


 97%|██████████████████████████████████████████████████████████████████████▊  | 254336/262326 [15:06<00:28, 284.20it/s]


 97%|██████████████████████████████████████████████████████████████████████▊  | 254368/262326 [15:06<00:28, 282.05it/s]


 97%|██████████████████████████████████████████████████████████████████████▊  | 254402/262326 [15:06<00:27, 285.97it/s]


 97%|██████████████████████████████████████████████████████████████████████▊  | 254431/262326 [15:06<00:27, 285.36it/s]


 97%|██████████████████████████████████████████████████████████████████████▊  | 254460/262326 [15:07<00:29, 262.34it/s]


 97%|██████████████████████████████████████████████████████████████████████▊  | 254487/262326 [15:07<00:31, 251.09it/s]


 97%|██████████████████████████████████████████████████████████████████████▊  | 254514/262326 [15:07<00:30, 255.45it/s]


 97%|██████████████████████████████████████████████████████████████████████▊  | 254547/262326 [15:07<00:29, 264.80it/s]


 97%|██████████████████████████████████████████████████████████████████████▊  | 254577/262326 [15:07<00:28, 273.67it/s]


 97%|██████████████████████████████████████████████████████████████████████▊  | 254608/262326 [15:07<00:27, 282.92it/s]


 97%|██████████████████████████████████████████████████████████████████████▊  | 254641/262326 [15:07<00:27, 283.75it/s]


 97%|██████████████████████████████████████████████████████████████████████▊  | 254670/262326 [15:07<00:27, 283.44it/s]


 97%|██████████████████████████████████████████████████████████████████████▉  | 254704/262326 [15:07<00:26, 286.53it/s]


 97%|██████████████████████████████████████████████████████████████████████▉  | 254734/262326 [15:08<00:26, 288.73it/s]


 97%|██████████████████████████████████████████████████████████████████████▉  | 254770/262326 [15:08<00:25, 296.15it/s]


 97%|██████████████████████████████████████████████████████████████████████▉  | 254800/262326 [15:08<00:25, 292.85it/s]


 97%|██████████████████████████████████████████████████████████████████████▉  | 254833/262326 [15:08<00:25, 294.05it/s]


 97%|██████████████████████████████████████████████████████████████████████▉  | 254863/262326 [15:08<00:25, 293.97it/s]


 97%|██████████████████████████████████████████████████████████████████████▉  | 254893/262326 [15:08<00:26, 281.38it/s]


 97%|██████████████████████████████████████████████████████████████████████▉  | 254922/262326 [15:08<00:26, 283.37it/s]


 97%|██████████████████████████████████████████████████████████████████████▉  | 254954/262326 [15:08<00:26, 282.38it/s]


 97%|██████████████████████████████████████████████████████████████████████▉  | 254985/262326 [15:08<00:25, 288.81it/s]


 97%|██████████████████████████████████████████████████████████████████████▉  | 255019/262326 [15:09<00:26, 280.03it/s]


 97%|██████████████████████████████████████████████████████████████████████▉  | 255049/262326 [15:09<00:26, 271.54it/s]


 97%|██████████████████████████████████████████████████████████████████████▉  | 255077/262326 [15:09<00:28, 252.49it/s]


 97%|██████████████████████████████████████████████████████████████████████▉  | 255108/262326 [15:09<00:27, 263.62it/s]


 97%|██████████████████████████████████████████████████████████████████████▉  | 255135/262326 [15:09<00:27, 264.77it/s]


 97%|███████████████████████████████████████████████████████████████████████  | 255164/262326 [15:09<00:26, 271.86it/s]


 97%|███████████████████████████████████████████████████████████████████████  | 255192/262326 [15:09<00:26, 273.70it/s]


 97%|███████████████████████████████████████████████████████████████████████  | 255225/262326 [15:09<00:25, 278.33it/s]


 97%|███████████████████████████████████████████████████████████████████████  | 255254/262326 [15:09<00:25, 281.14it/s]


 97%|███████████████████████████████████████████████████████████████████████  | 255283/262326 [15:09<00:24, 282.87it/s]


 97%|███████████████████████████████████████████████████████████████████████  | 255312/262326 [15:10<00:24, 284.23it/s]


 97%|███████████████████████████████████████████████████████████████████████  | 255341/262326 [15:10<00:24, 285.87it/s]


 97%|███████████████████████████████████████████████████████████████████████  | 255370/262326 [15:10<00:25, 273.27it/s]


 97%|███████████████████████████████████████████████████████████████████████  | 255398/262326 [15:10<00:25, 266.46it/s]


 97%|███████████████████████████████████████████████████████████████████████  | 255429/262326 [15:10<00:26, 262.96it/s]


 97%|███████████████████████████████████████████████████████████████████████  | 255459/262326 [15:10<00:25, 272.23it/s]


 97%|███████████████████████████████████████████████████████████████████████  | 255488/262326 [15:10<00:24, 276.42it/s]


 97%|███████████████████████████████████████████████████████████████████████  | 255524/262326 [15:10<00:24, 278.15it/s]


 97%|███████████████████████████████████████████████████████████████████████  | 255556/262326 [15:10<00:23, 287.52it/s]


 97%|███████████████████████████████████████████████████████████████████████  | 255588/262326 [15:11<00:22, 296.54it/s]


 97%|███████████████████████████████████████████████████████████████████████▏ | 255621/262326 [15:11<00:22, 293.89it/s]


 97%|███████████████████████████████████████████████████████████████████████▏ | 255651/262326 [15:11<00:22, 292.28it/s]


 97%|███████████████████████████████████████████████████████████████████████▏ | 255681/262326 [15:11<00:22, 293.75it/s]


 97%|███████████████████████████████████████████████████████████████████████▏ | 255715/262326 [15:11<00:22, 294.87it/s]


 97%|███████████████████████████████████████████████████████████████████████▏ | 255751/262326 [15:11<00:21, 299.77it/s]


 98%|███████████████████████████████████████████████████████████████████████▏ | 255782/262326 [15:11<00:21, 301.43it/s]


 98%|███████████████████████████████████████████████████████████████████████▏ | 255813/262326 [15:11<00:22, 288.46it/s]


 98%|███████████████████████████████████████████████████████████████████████▏ | 255842/262326 [15:11<00:23, 281.70it/s]


 98%|███████████████████████████████████████████████████████████████████████▏ | 255875/262326 [15:12<00:22, 288.53it/s]


 98%|███████████████████████████████████████████████████████████████████████▏ | 255911/262326 [15:12<00:21, 295.22it/s]


 98%|███████████████████████████████████████████████████████████████████████▏ | 255941/262326 [15:12<00:21, 295.09it/s]


 98%|███████████████████████████████████████████████████████████████████████▏ | 255976/262326 [15:12<00:21, 297.95it/s]


 98%|███████████████████████████████████████████████████████████████████████▏ | 256007/262326 [15:12<00:21, 300.87it/s]


 98%|███████████████████████████████████████████████████████████████████████▎ | 256038/262326 [15:12<00:21, 296.15it/s]


 98%|███████████████████████████████████████████████████████████████████████▎ | 256068/262326 [15:12<00:21, 289.22it/s]


 98%|███████████████████████████████████████████████████████████████████████▎ | 256100/262326 [15:12<00:21, 295.45it/s]


 98%|███████████████████████████████████████████████████████████████████████▎ | 256134/262326 [15:12<00:20, 296.95it/s]


 98%|███████████████████████████████████████████████████████████████████████▎ | 256164/262326 [15:13<00:20, 296.88it/s]


 98%|███████████████████████████████████████████████████████████████████████▎ | 256194/262326 [15:13<00:21, 283.15it/s]


 98%|███████████████████████████████████████████████████████████████████████▎ | 256223/262326 [15:13<00:22, 276.00it/s]


 98%|███████████████████████████████████████████████████████████████████████▎ | 256255/262326 [15:13<00:21, 283.92it/s]


 98%|███████████████████████████████████████████████████████████████████████▎ | 256286/262326 [15:13<00:20, 291.22it/s]


 98%|███████████████████████████████████████████████████████████████████████▎ | 256320/262326 [15:13<00:20, 294.35it/s]


 98%|███████████████████████████████████████████████████████████████████████▎ | 256350/262326 [15:13<00:20, 292.29it/s]


 98%|███████████████████████████████████████████████████████████████████████▎ | 256384/262326 [15:13<00:20, 292.89it/s]


 98%|███████████████████████████████████████████████████████████████████████▎ | 256415/262326 [15:13<00:19, 296.83it/s]


 98%|███████████████████████████████████████████████████████████████████████▎ | 256451/262326 [15:14<00:19, 302.42it/s]


 98%|███████████████████████████████████████████████████████████████████████▎ | 256482/262326 [15:14<00:19, 302.33it/s]


 98%|███████████████████████████████████████████████████████████████████████▍ | 256513/262326 [15:14<00:19, 292.99it/s]


 98%|███████████████████████████████████████████████████████████████████████▍ | 256543/262326 [15:14<00:19, 290.57it/s]


 98%|███████████████████████████████████████████████████████████████████████▍ | 256573/262326 [15:14<00:21, 272.56it/s]


 98%|███████████████████████████████████████████████████████████████████████▍ | 256605/262326 [15:14<00:20, 282.17it/s]


 98%|███████████████████████████████████████████████████████████████████████▍ | 256635/262326 [15:14<00:19, 285.02it/s]


 98%|███████████████████████████████████████████████████████████████████████▍ | 256664/262326 [15:14<00:19, 286.42it/s]


 98%|███████████████████████████████████████████████████████████████████████▍ | 256699/262326 [15:14<00:19, 291.68it/s]


 98%|███████████████████████████████████████████████████████████████████████▍ | 256730/262326 [15:14<00:18, 294.66it/s]


 98%|███████████████████████████████████████████████████████████████████████▍ | 256760/262326 [15:15<00:18, 295.74it/s]


 98%|███████████████████████████████████████████████████████████████████████▍ | 256794/262326 [15:15<00:18, 295.62it/s]


 98%|███████████████████████████████████████████████████████████████████████▍ | 256826/262326 [15:15<00:18, 291.99it/s]


 98%|███████████████████████████████████████████████████████████████████████▍ | 256856/262326 [15:15<00:19, 279.00it/s]


 98%|███████████████████████████████████████████████████████████████████████▍ | 256887/262326 [15:15<00:19, 285.47it/s]


 98%|███████████████████████████████████████████████████████████████████████▍ | 256920/262326 [15:15<00:18, 285.71it/s]


 98%|███████████████████████████████████████████████████████████████████████▌ | 256949/262326 [15:15<00:18, 285.65it/s]


 98%|███████████████████████████████████████████████████████████████████████▌ | 256984/262326 [15:15<00:18, 290.73it/s]


 98%|███████████████████████████████████████████████████████████████████████▌ | 257019/262326 [15:15<00:17, 295.14it/s]


 98%|███████████████████████████████████████████████████████████████████████▌ | 257050/262326 [15:16<00:18, 281.49it/s]


 98%|███████████████████████████████████████████████████████████████████████▌ | 257084/262326 [15:16<00:18, 286.07it/s]


 98%|███████████████████████████████████████████████████████████████████████▌ | 257113/262326 [15:16<00:18, 286.78it/s]


 98%|███████████████████████████████████████████████████████████████████████▌ | 257145/262326 [15:16<00:17, 295.44it/s]


 98%|███████████████████████████████████████████████████████████████████████▌ | 257176/262326 [15:16<00:17, 298.51it/s]


 98%|███████████████████████████████████████████████████████████████████████▌ | 257211/262326 [15:16<00:16, 300.92it/s]


 98%|███████████████████████████████████████████████████████████████████████▌ | 257242/262326 [15:16<00:17, 292.55it/s]


 98%|███████████████████████████████████████████████████████████████████████▌ | 257274/262326 [15:16<00:17, 294.90it/s]


 98%|███████████████████████████████████████████████████████████████████████▌ | 257308/262326 [15:16<00:16, 295.84it/s]


 98%|███████████████████████████████████████████████████████████████████████▌ | 257338/262326 [15:17<00:17, 282.71it/s]


 98%|███████████████████████████████████████████████████████████████████████▌ | 257367/262326 [15:17<00:17, 283.82it/s]


 98%|███████████████████████████████████████████████████████████████████████▋ | 257396/262326 [15:17<00:17, 276.17it/s]


 98%|███████████████████████████████████████████████████████████████████████▋ | 257427/262326 [15:17<00:17, 281.55it/s]


 98%|███████████████████████████████████████████████████████████████████████▋ | 257457/262326 [15:17<00:16, 286.76it/s]


 98%|███████████████████████████████████████████████████████████████████████▋ | 257486/262326 [15:17<00:17, 282.02it/s]


 98%|███████████████████████████████████████████████████████████████████████▋ | 257519/262326 [15:17<00:16, 286.82it/s]


 98%|███████████████████████████████████████████████████████████████████████▋ | 257548/262326 [15:17<00:16, 287.72it/s]


 98%|███████████████████████████████████████████████████████████████████████▋ | 257577/262326 [15:17<00:16, 287.31it/s]


 98%|███████████████████████████████████████████████████████████████████████▋ | 257606/262326 [15:18<00:17, 275.46it/s]


 98%|███████████████████████████████████████████████████████████████████████▋ | 257635/262326 [15:18<00:16, 279.60it/s]


 98%|███████████████████████████████████████████████████████████████████████▋ | 257664/262326 [15:18<00:16, 276.80it/s]


 98%|███████████████████████████████████████████████████████████████████████▋ | 257692/262326 [15:18<00:17, 266.66it/s]


 98%|███████████████████████████████████████████████████████████████████████▋ | 257726/262326 [15:18<00:16, 276.44it/s]


 98%|███████████████████████████████████████████████████████████████████████▋ | 257762/262326 [15:18<00:15, 287.17it/s]


 98%|███████████████████████████████████████████████████████████████████████▋ | 257791/262326 [15:18<00:15, 285.02it/s]


 98%|███████████████████████████████████████████████████████████████████████▋ | 257824/262326 [15:18<00:15, 285.93it/s]


 98%|███████████████████████████████████████████████████████████████████████▊ | 257854/262326 [15:18<00:15, 288.28it/s]


 98%|███████████████████████████████████████████████████████████████████████▊ | 257884/262326 [15:19<00:15, 291.37it/s]


 98%|███████████████████████████████████████████████████████████████████████▊ | 257919/262326 [15:19<00:14, 298.75it/s]


 98%|███████████████████████████████████████████████████████████████████████▊ | 257949/262326 [15:19<00:14, 292.90it/s]


 98%|███████████████████████████████████████████████████████████████████████▊ | 257982/262326 [15:19<00:14, 297.62it/s]


 98%|███████████████████████████████████████████████████████████████████████▊ | 258012/262326 [15:19<00:14, 291.75it/s]


 98%|███████████████████████████████████████████████████████████████████████▊ | 258042/262326 [15:19<00:18, 230.39it/s]


 98%|███████████████████████████████████████████████████████████████████████▊ | 258069/262326 [15:19<00:17, 237.06it/s]


 98%|███████████████████████████████████████████████████████████████████████▊ | 258104/262326 [15:19<00:16, 253.63it/s]


 98%|███████████████████████████████████████████████████████████████████████▊ | 258134/262326 [15:19<00:16, 258.44it/s]


 98%|███████████████████████████████████████████████████████████████████████▊ | 258168/262326 [15:20<00:15, 272.80it/s]


 98%|███████████████████████████████████████████████████████████████████████▊ | 258198/262326 [15:20<00:14, 280.03it/s]


 98%|███████████████████████████████████████████████████████████████████████▊ | 258227/262326 [15:20<00:14, 281.88it/s]


 98%|███████████████████████████████████████████████████████████████████████▊ | 258262/262326 [15:20<00:14, 289.46it/s]


 98%|███████████████████████████████████████████████████████████████████████▉ | 258292/262326 [15:20<00:14, 279.08it/s]


 98%|███████████████████████████████████████████████████████████████████████▉ | 258321/262326 [15:20<00:14, 280.19it/s]


 98%|███████████████████████████████████████████████████████████████████████▉ | 258350/262326 [15:20<00:15, 259.31it/s]


 98%|███████████████████████████████████████████████████████████████████████▉ | 258379/262326 [15:20<00:14, 265.74it/s]


 99%|███████████████████████████████████████████████████████████████████████▉ | 258415/262326 [15:20<00:14, 279.14it/s]


 99%|███████████████████████████████████████████████████████████████████████▉ | 258447/262326 [15:21<00:13, 289.56it/s]


 99%|███████████████████████████████████████████████████████████████████████▉ | 258478/262326 [15:21<00:13, 294.51it/s]


 99%|███████████████████████████████████████████████████████████████████████▉ | 258508/262326 [15:21<00:13, 290.12it/s]


 99%|███████████████████████████████████████████████████████████████████████▉ | 258540/262326 [15:21<00:13, 291.04it/s]


 99%|███████████████████████████████████████████████████████████████████████▉ | 258571/262326 [15:21<00:12, 295.87it/s]


 99%|███████████████████████████████████████████████████████████████████████▉ | 258605/262326 [15:21<00:12, 296.64it/s]


 99%|███████████████████████████████████████████████████████████████████████▉ | 258635/262326 [15:21<00:13, 283.76it/s]


 99%|███████████████████████████████████████████████████████████████████████▉ | 258664/262326 [15:21<00:12, 282.96it/s]


 99%|███████████████████████████████████████████████████████████████████████▉ | 258693/262326 [15:21<00:12, 281.30it/s]


 99%|███████████████████████████████████████████████████████████████████████▉ | 258730/262326 [15:22<00:12, 295.19it/s]


 99%|████████████████████████████████████████████████████████████████████████ | 258760/262326 [15:22<00:12, 280.50it/s]


 99%|████████████████████████████████████████████████████████████████████████ | 258789/262326 [15:22<00:12, 274.26it/s]


 99%|████████████████████████████████████████████████████████████████████████ | 258817/262326 [15:22<00:13, 267.47it/s]


 99%|████████████████████████████████████████████████████████████████████████ | 258848/262326 [15:22<00:12, 276.44it/s]


 99%|████████████████████████████████████████████████████████████████████████ | 258876/262326 [15:22<00:12, 276.10it/s]


 99%|████████████████████████████████████████████████████████████████████████ | 258905/262326 [15:22<00:12, 274.98it/s]


 99%|████████████████████████████████████████████████████████████████████████ | 258933/262326 [15:22<00:13, 259.37it/s]


 99%|████████████████████████████████████████████████████████████████████████ | 258963/262326 [15:22<00:12, 261.79it/s]


 99%|████████████████████████████████████████████████████████████████████████ | 258997/262326 [15:23<00:12, 271.12it/s]


 99%|████████████████████████████████████████████████████████████████████████ | 259027/262326 [15:23<00:11, 275.31it/s]


 99%|████████████████████████████████████████████████████████████████████████ | 259056/262326 [15:23<00:11, 277.37it/s]


 99%|████████████████████████████████████████████████████████████████████████ | 259088/262326 [15:23<00:11, 270.06it/s]


 99%|████████████████████████████████████████████████████████████████████████ | 259118/262326 [15:23<00:11, 277.49it/s]


 99%|████████████████████████████████████████████████████████████████████████ | 259153/262326 [15:23<00:11, 285.28it/s]


 99%|████████████████████████████████████████████████████████████████████████▏| 259183/262326 [15:23<00:10, 288.44it/s]


 99%|████████████████████████████████████████████████████████████████████████▏| 259212/262326 [15:23<00:10, 287.42it/s]


 99%|████████████████████████████████████████████████████████████████████████▏| 259242/262326 [15:23<00:11, 267.97it/s]


 99%|████████████████████████████████████████████████████████████████████████▏| 259274/262326 [15:24<00:11, 276.49it/s]


 99%|████████████████████████████████████████████████████████████████████████▏| 259309/262326 [15:24<00:10, 285.34it/s]


 99%|████████████████████████████████████████████████████████████████████████▏| 259338/262326 [15:24<00:10, 273.40it/s]


 99%|████████████████████████████████████████████████████████████████████████▏| 259366/262326 [15:24<00:10, 274.94it/s]


 99%|████████████████████████████████████████████████████████████████████████▏| 259394/262326 [15:24<00:10, 275.58it/s]


 99%|████████████████████████████████████████████████████████████████████████▏| 259429/262326 [15:24<00:10, 283.85it/s]


 99%|████████████████████████████████████████████████████████████████████████▏| 259460/262326 [15:24<00:09, 290.40it/s]


 99%|████████████████████████████████████████████████████████████████████████▏| 259490/262326 [15:24<00:10, 279.57it/s]


 99%|████████████████████████████████████████████████████████████████████████▏| 259519/262326 [15:24<00:10, 280.53it/s]


 99%|████████████████████████████████████████████████████████████████████████▏| 259550/262326 [15:24<00:09, 277.99it/s]


 99%|████████████████████████████████████████████████████████████████████████▏| 259580/262326 [15:25<00:09, 283.43it/s]


 99%|████████████████████████████████████████████████████████████████████████▏| 259609/262326 [15:25<00:09, 284.58it/s]


 99%|████████████████████████████████████████████████████████████████████████▎| 259638/262326 [15:25<00:09, 282.44it/s]


 99%|████████████████████████████████████████████████████████████████████████▎| 259672/262326 [15:25<00:09, 278.19it/s]


 99%|████████████████████████████████████████████████████████████████████████▎| 259703/262326 [15:25<00:09, 286.22it/s]


 99%|████████████████████████████████████████████████████████████████████████▎| 259732/262326 [15:25<00:09, 286.59it/s]


 99%|████████████████████████████████████████████████████████████████████████▎| 259766/262326 [15:25<00:08, 290.17it/s]


 99%|████████████████████████████████████████████████████████████████████████▎| 259797/262326 [15:25<00:08, 282.01it/s]


 99%|████████████████████████████████████████████████████████████████████████▎| 259829/262326 [15:25<00:08, 291.81it/s]


 99%|████████████████████████████████████████████████████████████████████████▎| 259861/262326 [15:26<00:08, 298.18it/s]


 99%|████████████████████████████████████████████████████████████████████████▎| 259897/262326 [15:26<00:08, 303.27it/s]


 99%|████████████████████████████████████████████████████████████████████████▎| 259928/262326 [15:26<00:08, 285.15it/s]


 99%|████████████████████████████████████████████████████████████████████████▎| 259961/262326 [15:26<00:08, 286.11it/s]


 99%|████████████████████████████████████████████████████████████████████████▎| 259997/262326 [15:26<00:07, 295.29it/s]


 99%|████████████████████████████████████████████████████████████████████████▎| 260028/262326 [15:26<00:07, 297.71it/s]


 99%|████████████████████████████████████████████████████████████████████████▎| 260059/262326 [15:26<00:07, 288.81it/s]


 99%|████████████████████████████████████████████████████████████████████████▍| 260089/262326 [15:26<00:07, 291.08it/s]


 99%|████████████████████████████████████████████████████████████████████████▍| 260119/262326 [15:26<00:07, 279.20it/s]


 99%|████████████████████████████████████████████████████████████████████████▍| 260148/262326 [15:27<00:07, 282.31it/s]


 99%|████████████████████████████████████████████████████████████████████████▍| 260179/262326 [15:27<00:07, 280.40it/s]


 99%|████████████████████████████████████████████████████████████████████████▍| 260208/262326 [15:27<00:07, 277.07it/s]


 99%|████████████████████████████████████████████████████████████████████████▍| 260236/262326 [15:27<00:08, 236.23it/s]


 99%|████████████████████████████████████████████████████████████████████████▍| 260266/262326 [15:27<00:08, 249.69it/s]


 99%|████████████████████████████████████████████████████████████████████████▍| 260294/262326 [15:27<00:07, 257.79it/s]


 99%|████████████████████████████████████████████████████████████████████████▍| 260324/262326 [15:27<00:07, 263.17it/s]


 99%|████████████████████████████████████████████████████████████████████████▍| 260357/262326 [15:27<00:07, 275.04it/s]


 99%|████████████████████████████████████████████████████████████████████████▍| 260386/262326 [15:27<00:07, 268.41it/s]


 99%|████████████████████████████████████████████████████████████████████████▍| 260414/262326 [15:28<00:07, 268.91it/s]


 99%|████████████████████████████████████████████████████████████████████████▍| 260448/262326 [15:28<00:06, 276.75it/s]


 99%|████████████████████████████████████████████████████████████████████████▍| 260476/262326 [15:28<00:06, 276.76it/s]


 99%|████████████████████████████████████████████████████████████████████████▍| 260507/262326 [15:28<00:06, 285.80it/s]


 99%|████████████████████████████████████████████████████████████████████████▌| 260537/262326 [15:28<00:06, 288.87it/s]


 99%|████████████████████████████████████████████████████████████████████████▌| 260567/262326 [15:28<00:06, 286.09it/s]


 99%|████████████████████████████████████████████████████████████████████████▌| 260600/262326 [15:28<00:05, 290.76it/s]


 99%|████████████████████████████████████████████████████████████████████████▌| 260630/262326 [15:28<00:05, 284.70it/s]


 99%|████████████████████████████████████████████████████████████████████████▌| 260659/262326 [15:28<00:05, 280.88it/s]


 99%|████████████████████████████████████████████████████████████████████████▌| 260688/262326 [15:29<00:06, 247.84it/s]


 99%|████████████████████████████████████████████████████████████████████████▌| 260714/262326 [15:29<00:06, 250.69it/s]


 99%|████████████████████████████████████████████████████████████████████████▌| 260743/262326 [15:29<00:06, 259.38it/s]


 99%|████████████████████████████████████████████████████████████████████████▌| 260774/262326 [15:29<00:05, 260.77it/s]


 99%|████████████████████████████████████████████████████████████████████████▌| 260807/262326 [15:29<00:05, 267.79it/s]


 99%|████████████████████████████████████████████████████████████████████████▌| 260835/262326 [15:29<00:05, 260.56it/s]


 99%|████████████████████████████████████████████████████████████████████████▌| 260862/262326 [15:29<00:05, 260.31it/s]


 99%|████████████████████████████████████████████████████████████████████████▌| 260894/262326 [15:29<00:05, 265.65it/s]


 99%|████████████████████████████████████████████████████████████████████████▌| 260922/262326 [15:29<00:05, 268.96it/s]


 99%|████████████████████████████████████████████████████████████████████████▌| 260956/262326 [15:30<00:04, 277.08it/s]


 99%|████████████████████████████████████████████████████████████████████████▋| 260984/262326 [15:30<00:04, 277.06it/s]


 99%|████████████████████████████████████████████████████████████████████████▋| 261012/262326 [15:30<00:04, 267.48it/s]


100%|████████████████████████████████████████████████████████████████████████▋| 261039/262326 [15:30<00:05, 221.09it/s]


100%|████████████████████████████████████████████████████████████████████████▋| 261066/262326 [15:30<00:05, 225.22it/s]


100%|████████████████████████████████████████████████████████████████████████▋| 261095/262326 [15:30<00:05, 240.36it/s]


100%|████████████████████████████████████████████████████████████████████████▋| 261128/262326 [15:30<00:04, 252.37it/s]


100%|████████████████████████████████████████████████████████████████████████▋| 261158/262326 [15:30<00:04, 264.05it/s]


100%|████████████████████████████████████████████████████████████████████████▋| 261186/262326 [15:30<00:04, 257.60it/s]


100%|████████████████████████████████████████████████████████████████████████▋| 261213/262326 [15:31<00:04, 259.87it/s]


100%|████████████████████████████████████████████████████████████████████████▋| 261244/262326 [15:31<00:04, 262.10it/s]


100%|████████████████████████████████████████████████████████████████████████▋| 261271/262326 [15:31<00:04, 263.21it/s]


100%|████████████████████████████████████████████████████████████████████████▋| 261306/262326 [15:31<00:03, 274.35it/s]


100%|████████████████████████████████████████████████████████████████████████▋| 261336/262326 [15:31<00:03, 280.39it/s]


100%|████████████████████████████████████████████████████████████████████████▋| 261365/262326 [15:31<00:04, 221.96it/s]


100%|████████████████████████████████████████████████████████████████████████▋| 261392/262326 [15:31<00:04, 231.06it/s]


100%|████████████████████████████████████████████████████████████████████████▋| 261419/262326 [15:31<00:03, 241.23it/s]


100%|████████████████████████████████████████████████████████████████████████▊| 261448/262326 [15:32<00:03, 243.37it/s]


100%|████████████████████████████████████████████████████████████████████████▊| 261480/262326 [15:32<00:03, 252.76it/s]


100%|████████████████████████████████████████████████████████████████████████▊| 261509/262326 [15:32<00:03, 262.67it/s]


100%|████████████████████████████████████████████████████████████████████████▊| 261536/262326 [15:32<00:03, 262.82it/s]


100%|████████████████████████████████████████████████████████████████████████▊| 261564/262326 [15:32<00:02, 267.11it/s]


100%|████████████████████████████████████████████████████████████████████████▊| 261594/262326 [15:32<00:02, 275.47it/s]


100%|████████████████████████████████████████████████████████████████████████▊| 261626/262326 [15:32<00:02, 277.01it/s]


100%|████████████████████████████████████████████████████████████████████████▊| 261654/262326 [15:32<00:02, 277.63it/s]


100%|████████████████████████████████████████████████████████████████████████▊| 261688/262326 [15:32<00:02, 282.76it/s]


100%|████████████████████████████████████████████████████████████████████████▊| 261719/262326 [15:33<00:02, 278.11it/s]


100%|████████████████████████████████████████████████████████████████████████▊| 261747/262326 [15:33<00:02, 276.62it/s]


100%|████████████████████████████████████████████████████████████████████████▊| 261775/262326 [15:33<00:02, 268.36it/s]


100%|████████████████████████████████████████████████████████████████████████▊| 261806/262326 [15:33<00:01, 276.15it/s]


100%|████████████████████████████████████████████████████████████████████████▊| 261841/262326 [15:33<00:01, 283.78it/s]


100%|████████████████████████████████████████████████████████████████████████▊| 261870/262326 [15:33<00:01, 281.52it/s]


100%|████████████████████████████████████████████████████████████████████████▉| 261905/262326 [15:33<00:01, 288.08it/s]


100%|████████████████████████████████████████████████████████████████████████▉| 261938/262326 [15:33<00:01, 288.15it/s]


100%|████████████████████████████████████████████████████████████████████████▉| 261970/262326 [15:33<00:01, 289.20it/s]


100%|████████████████████████████████████████████████████████████████████████▉| 262004/262326 [15:34<00:01, 284.08it/s]


100%|████████████████████████████████████████████████████████████████████████▉| 262040/262326 [15:34<00:00, 292.10it/s]


100%|████████████████████████████████████████████████████████████████████████▉| 262070/262326 [15:34<00:00, 291.60it/s]


100%|████████████████████████████████████████████████████████████████████████▉| 262100/262326 [15:34<00:00, 291.89it/s]


100%|████████████████████████████████████████████████████████████████████████▉| 262130/262326 [15:34<00:00, 290.75it/s]


100%|████████████████████████████████████████████████████████████████████████▉| 262166/262326 [15:34<00:00, 302.57it/s]


100%|████████████████████████████████████████████████████████████████████████▉| 262197/262326 [15:34<00:00, 303.41it/s]


100%|████████████████████████████████████████████████████████████████████████▉| 262232/262326 [15:34<00:00, 303.63it/s]


100%|████████████████████████████████████████████████████████████████████████▉| 262263/262326 [15:34<00:00, 304.14it/s]


100%|████████████████████████████████████████████████████████████████████████▉| 262297/262326 [15:34<00:00, 302.05it/s]


100%|█████████████████████████████████████████████████████████████████████████| 262326/262326 [15:35<00:00, 280.54it/s]
In [63]:
#sentences[:10]

Tokenizing

In [64]:
from nltk.tokenize import word_tokenize

final_lst = []
for sentence in sentences:
    tokens = word_tokenize(sentence)
    final_lst.append(tokens)

Tokens

In [66]:
final_lst[:4]
Out[66]:
[['important',
  'notice',
  'important',
  'must',
  'read',
  'following',
  'disclaimer',
  'continuing',
  'following',
  'disclaimer',
  'applies',
  'attached',
  'offering',
  'memorandum',
  'and',
  'therefore',
  'advised',
  'read',
  'disclaimer',
  'page',
  'carefully',
  'reading',
  'accessing',
  'or',
  'making',
  'use',
  'attached',
  'offering',
  'memorandum',
  'accessing',
  'attached',
  'offering',
  'memorandum',
  'agree',
  'bound',
  'following',
  'terms',
  'and',
  'conditions',
  'including',
  'modifications',
  'time',
  'time',
  'time',
  'receive',
  'information',
  'wind',
  'acquisition',
  'finance',
  'sa',
  'issuer',
  'defined',
  'or',
  'wind',
  'telecomunicazioni',
  'spa',
  'guarantor',
  'defined',
  'result',
  'access'],
 ['confirmation',
  'representation',
  'order',
  'eligible',
  'view',
  'offering',
  'memorandum',
  'or',
  'make',
  'investment',
  'decision',
  'respect',
  'securities',
  'must',
  'not',
  'us',
  'person',
  'within',
  'meaning',
  'regulation',
  'us',
  'securities',
  'act',
  'amended',
  'us',
  'securities',
  'act',
  'and',
  'outside',
  'united',
  'states'],
 ['within',
  'meaning',
  'rule',
  'us',
  'securities',
  'act',
  'sent',
  'attached',
  'offering',
  'memorandum',
  'basis',
  'confirmed',
  'initial',
  'purchasers',
  'set',
  'forth',
  'attached',
  'offering',
  'memorandum',
  'collectively',
  'initial',
  'purchasers',
  'sender',
  'or',
  'senders',
  'attached',
  'either',
  'and',
  'customers',
  'represent',
  'not',
  'us',
  'persons'],
 ['electronic',
  'mail',
  'or',
  'email',
  'address',
  'delivered',
  'not',
  'located',
  'united',
  'states',
  'america',
  'territories',
  'and',
  'possessions',
  'state',
  'united',
  'states',
  'and',
  'district',
  'columbia',
  'possessions',
  'include',
  'puerto',
  'rico',
  'us',
  'virgin',
  'islands',
  'guam',
  'american',
  'samoa',
  'wake',
  'island',
  'and',
  'northern',
  'mariana',
  'islands']]
In [67]:
from gensim.models import Word2Vec
In [68]:
model = Word2Vec(final_lst,size=100, window=5, min_count=2, workers= 5 , iter=5)
In [69]:
model.wv.similarity('holdings','issuer')
Out[69]:
0.45281848
In [70]:
model.most_similar("holdings")
C:\Users\ALMUG\Anaconda3\lib\site-packages\ipykernel_launcher.py:1: DeprecationWarning: Call to deprecated `most_similar` (Method will be removed in 4.0.0, use self.wv.most_similar() instead).
  """Entry point for launching an IPython kernel.
Out[70]:
[('vii', 0.7178579568862915),
 ('international', 0.6413118243217468),
 ('bahamas', 0.6342277526855469),
 ('finco', 0.6139472723007202),
 ('bidco', 0.590398907661438),
 ('caribbean', 0.5482168197631836),
 ('nv', 0.5418556928634644),
 ('pool', 0.5395517349243164),
 ('agihl', 0.535971462726593),
 ('sa—the', 0.5347386598587036)]
In [71]:
model.wv.similarity('holdings','company')
Out[71]:
0.3833246
In [72]:
model.most_similar("company")
C:\Users\ALMUG\Anaconda3\lib\site-packages\ipykernel_launcher.py:1: DeprecationWarning: Call to deprecated `most_similar` (Method will be removed in 4.0.0, use self.wv.most_similar() instead).
  """Entry point for launching an IPython kernel.
Out[72]:
[('entity', 0.6955145597457886),
 ('group', 0.5548635721206665),
 ('obligor', 0.5181515216827393),
 ('ultimate', 0.5026206970214844),
 ('lsf', 0.4900195598602295),
 ('debtor', 0.4602721035480499),
 ('agihl', 0.45261603593826294),
 ('sae', 0.4307065010070801),
 ('issuer', 0.42824041843414307),
 ('windppc', 0.4239409565925598)]
In [73]:
model.save("word2vec.model")

========================== Complete ===========================

In [ ]:
from gensim.models import Word2Vec
model = Word2Vec(text,size=150, window=2, min_count=10, workers=4, iter=100)
In [ ]:
Word2Vec(text,size=150, window=2, min_count=10, workers=4, iter=100)
In [ ]:
 
In [45]:
def decontracted(phrase):
    # specific
    phrase = re.sub(r"won't", "will not", phrase)
    phrase = re.sub(r"can\'t", "can not", phrase)

    # general
    phrase = re.sub(r"n\'t", " not", phrase)
    phrase = re.sub(r"\'re", " are", phrase)
    phrase = re.sub(r"\'s", " is", phrase)
    phrase = re.sub(r"\'d", " would", phrase)
    phrase = re.sub(r"\'ll", " will", phrase)
    phrase = re.sub(r"\'t", " not", phrase)
    phrase = re.sub(r"\'ve", " have", phrase)
    phrase = re.sub(r"\'m", " am", phrase)
    return phrase
In [46]:
stopwords= ['i', 'me', 'my', 'myself', 'we', 'our', 'ours', 'ourselves', 'you', "you're", "you've",\
            "you'll", "you'd", 'your', 'yours', 'yourself', 'yourselves', 'he', 'him', 'his', 'himself', \
            'she', "she's", 'her', 'hers', 'herself', 'it', "it's", 'its', 'itself', 'they', 'them', 'their',\
            'theirs', 'themselves', 'what', 'which', 'who', 'whom', 'this', 'that', "that'll", 'these', 'those', \
            'am', 'is', 'are', 'was', 'were', 'be', 'been', 'being', 'have', 'has', 'had', 'having', 'do', 'does', \
            'did', 'doing', 'a', 'an', 'the', 'but', 'if', 'because', 'as', 'until', 'while', 'of', \
            'at', 'by', 'for', 'with', 'about', 'against', 'between', 'into', 'through', 'during', 'before', 'after',\
            'above', 'below', 'to', 'from', 'up', 'down', 'in', 'out', 'on', 'off', 'over', 'under', 'again', 'further',\
            'then', 'once', 'here', 'there', 'when', 'where', 'why', 'how', 'all', 'any', 'both', 'each', 'few', 'more',\
            'most', 'other', 'some', 'such', 'only', 'own', 'same', 'so', 'than', 'too', 'very', \
            's', 't', 'can', 'will', 'just', 'don', "don't", 'should', "should've", 'now', 'd', 'll', 'm', 'o', 're', \
            've', 'y', 'ain', 'aren', "aren't", 'couldn', "couldn't", 'didn', "didn't", 'doesn', "doesn't", 'hadn',\
            "hadn't", 'hasn', "hasn't", 'haven', "haven't", 'isn', "isn't", 'ma', 'mightn', "mightn't", 'mustn',\
            "mustn't", 'needn', "needn't", 'shan', "shan't", 'shouldn', "shouldn't", 'wasn', "wasn't", 'weren', "weren't", \
            'won', "won't", 'wouldn', "wouldn't"]
In [47]:
import re

text = decontracted(text)
text = text.replace('\\r', ' ')
text = text.replace('\\"', ' ')
text = text.replace('\\n', ' ')
text = re.sub('[^A-Za-z0-9]+', ' ', text)
text = re.sub(r'[^\w\s]','',text)
# https://gist.github.com/sebleier/554280
text = ' '.join(e for e in text.split() if e.lower() not in stopwords)
text = text.lower().strip()
In [86]:
import re

text = decontracted(full_data)
text = text.replace('\\r', ' ')
text = text.replace('\\"', ' ')
text = text.replace('\\n', ' ')
text = re.sub('[^A-Za-z0-9]+', ' ', text)
text = re.sub(r'[^\w\s]','',text)
# https://gist.github.com/sebleier/554280
text = ' '.join(e for e in text.split() if e.lower() not in stopwords)
text = text.lower().strip()
In [ ]:
 
In [52]:
#print(text)
[['important', 'notice', 'preliminary', 'offering', 'memorandum', 'available', 'investors', 'either', '1', 'qualified', 'institutional', 'buyers', 'qibs', 'within', 'meaning', 'rule', '144a', 'u', 'securities', 'act', '1933', 'amended', 'u', 'securities', 'act', '2', 'non', 'u', 'persons', 'outside', 'united', 'states', 'purchasing', 'securities', 'reliance', 'regulation', 'u', 'securities', 'act', 'investors', 'resident', 'member', 'state', 'european', 'economic', 'area', 'qualified', 'investor', 'important', 'must', 'read', 'following', 'continuing', 'following', 'applies', 'preliminary', 'offering', 'memorandum', 'following', 'notice', 'therefore', 'advised', 'read', 'carefully', 'reading', 'accessing', 'making', 'use', 'preliminary', 'offering', 'memorandum', 'accessing', 'preliminary', 'offering', 'memorandum', 'agree', 'bound', 'following', 'terms', 'conditions', 'including', 'modifications', 'time', 'receive', 'information', 'us', 'result', 'access', 'nothing', 'electronic', 'transmission', 'constitutes', 'offer', 'notes', 'sale', 'jurisdiction', 'unlawful', 'notes', 'not', 'not', 'registered', 'u', 'securities', 'act', 'securities', 'regulatory', 'authority', 'state', 'jurisdiction', 'united', 'states', 'may', 'not', 'offered', 'sold', 'pledged', 'otherwise', 'transferred', 'within', 'united', 'states', 'account', 'benefit', 'u', 'persons', 'defined', 'regulation', 'u', 'securities', 'act', 'except', 'pursuant', 'exemption', 'transaction', 'not', 'subject', 'registration', 'requirements', 'u', 'securities', 'act', 'applicable', 'state', 'local', 'securities', 'laws', 'following', 'preliminary', 'offering', 'memorandum', 'may', 'not', 'published', 'forwarded', 'distributed', 'otherwise', 'made', 'available', 'whole', 'part', 'person', 'may', 'not', 'reproduced', 'manner', 'whatsoever', 'forwarding', 'distribution', 'reproduction', 'document', 'whole', 'part', 'unauthorized', 'failure', 'comply', 'directive', 'may', 'result', 'violation', 'u', 'securities', 'act', 'applicable', 'laws', 'jurisdictions', 'gained', 'access', 'transmission', 'contrary', 'foregoing', 'restrictions', 'not', 'authorized', 'not', 'able', 'purchase', 'notes', 'described', 'herein', 'confirmation', 'representation', 'order', 'eligible', 'view', 'preliminary', 'offering', 'memorandum', 'make', 'investment', 'decision', 'respect', 'securities', 'investors', 'must', 'either', '1', 'qibs', '2', 'non', 'u', 'persons', 'purchasing', 'securities', 'outside', 'united', 'states', 'reliance', 'regulation', 'u', 'securities', 'act', 'provided', 'investors', 'resident', 'member', 'state', 'european', 'economic', 'area', 'qualified', 'investors', 'within', 'meaning', 'article', '2', '1', 'e', 'directive', '2003', '71', 'ec', 'amendments', 'thereto', 'including', 'directive', '2010', '73', 'eu', 'directive', '2010', '78', 'eu', 'extent', 'implemented', 'relevant', 'member', 'state', 'relevant', 'implementing', 'measure', 'member', 'state', 'european', 'economic', 'area', 'preliminary', 'offering', 'memorandum', 'sent', 'request', 'accepting', 'e', 'mail', 'accessing', 'preliminary', 'offering', 'memorandum', 'shall', 'deemed', 'represented', 'us', '1', 'consent', 'delivery', 'preliminary', 'offering', 'memorandum', 'electronic', 'transmission', '2', 'either', '3', 'customers', 'represent', 'qibs', 'b', 'non', 'u', 'persons', 'outside', 'united', 'states', 'e', 'mail', 'address', 'gave', 'us', 'e', 'mail', 'delivered', 'not', 'located', 'united', 'states', 'territories', 'possessions', 'including', 'puerto', 'rico', 'u', 'virgin', 'islands', 'guam', 'american', 'samoa', 'wake', 'island', 'northern', 'mariana', 'islands', 'state', 'united', 'states', 'district', 'columbia', 'resident', 'member', 'state', 'european', 'economic', 'area', 'qualified', 'investor', 'prospective', 'purchasers', 'qibs', 'hereby', 'notified', 'seller', 'notes', 'may', 'relying', 'exemption', 'provisions', 'section', '5', 'u', 'securities', 'act', 'provided', 'rule', '144a', 'u', 'securities', 'act', 'reminded', 'preliminary', 'offering', 'memorandum', 'delivered', 'basis', 'person', 'whose', 'possession', 'preliminary', 'offering', 'memorandum', 'may', 'lawfully', 'delivered', 'accordance', 'laws', 'jurisdiction', 'located', 'may', 'not', 'nor', 'authorized', 'deliver', 'preliminary', 'offering', 'memorandum', 'person', 'no', 'circumstances', 'shall', 'preliminary', 'offering', 'memorandum', 'constitute', 'offer', 'sell', 'solicitation', 'offer', 'buy', 'nor', 'shall', 'sale', 'securities', 'jurisdiction', 'offer', 'solicitation', 'sale', 'would', 'unlawful', 'jurisdiction', 'requires', 'offering', 'made', 'licensed', 'broker', 'dealer', 'initial', 'purchaser', 'affiliate', 'initial', 'purchaser', 'licensed', 'broker', 'dealer', 'jurisdiction', 'offering', 'shall', 'deemed', 'made', 'initial', 'purchaser', 'affiliate', 'behalf', 'aston', 'martin', 'capital', 'holdings', 'limited', 'issuer', 'jurisdiction', 'preliminary', 'offering', 'memorandum', 'not', 'distributed', 'nor', 'approved', 'purposes', 'section', '21', 'financial', 'services', 'markets', 'act', '2000', 'fsma', 'authorized', 'person', 'fsma', 'preliminary', 'offering', 'memorandum', 'distribution', 'directed', 'persons', 'professional', 'experience', 'matters', 'relating', 'investments', 'investment', 'professionals', 'falling', 'within', 'article', '19', '5', 'financial', 'services', 'markets', 'act', '2000', 'financial', 'promotion', 'order', '2005', 'amended', 'financial', 'promotion', 'order', 'ii', 'persons', 'falling', 'within', 'article', '49', '2', 'high', 'net', 'worth', 'companies', 'unincorporated', 'associations', 'etc', 'financial', 'promotion', 'order', 'iii', 'outside', 'united', 'kingdom', 'iv', 'persons', 'invitation', 'inducement', 'engage', 'investment', 'activity', 'within', 'meaning', 'section', '21', 'fsma', 'connection', 'issue', 'sale', 'securities', 'may', 'otherwise', 'lawfully', 'communicated', 'caused', 'communicated', 'persons', 'together', 'referred', 'relevant', 'persons', 'preliminary', 'offering', 'memorandum', 'directed', 'relevant', 'persons', 'must', 'not', 'acted', 'relied', 'persons', 'not', 'relevant', 'persons', 'investment', 'investment', 'activity', 'preliminary', 'offering', 'memorandum', 'relates', 'available', 'relevant', 'persons', 'engaged', 'relevant', 'persons', 'securities', 'not', 'offered', 'sold', 'person', 'united', 'kingdom', 'except', 'circumstances', 'not', 'result', 'offer', 'securities', 'public', 'united', 'kingdom', 'within', 'meaning', 'part', 'vi', 'fsma', 'no', 'person', 'may', 'communicate', 'cause', 'communicated', 'invitation', 'inducement', 'engage', 'investment', 'activity', 'within', 'meaning', 'section', '21', 'fsma', 'received', 'connection', 'issue', 'sale', 'securities', 'circumstances', 'section', '21', '1', 'fsma', 'not', 'apply', 'issuer', 'company', 'attached', 'preliminary', 'offering', 'memorandum', 'sent', 'electronic', 'format', 'reminded', 'documents', 'transmitted', 'electronic', 'format', 'may', 'altered', 'changed', 'process', 'transmission', 'consequently', 'none', 'issuer', 'initial', 'purchasers', 'respective', 'affiliates', 'directors', 'officers', 'employees', 'representatives', 'agents', 'accepts', 'liability', 'responsibility', 'whatsoever', 'respect', 'discrepancies', 'document', 'distributed', 'electronic', 'format', 'hard', 'copy', 'version', 'information', 'preliminary', 'offering', 'memorandum', 'not', 'complete', 'may', 'changed', 'without', 'notice', 'definitive', 'terms', 'transaction', 'described', 'herein', 'described', 'final', 'version', 'document', 'notes', 'not', 'sold', 'offers', 'buy', 'notes', 'not', 'accepted', 'final', 'offering', 'memorandum', 'delivered', 'preliminary', 'offering', 'memorandum', 'not', 'constitute', 'offer', 'sell', 'notes', 'solicitation', 'offer', 'buy', 'notes', 'jurisdiction', 'offer', 'sale', 'not', 'permitted', 'subject', 'completion', 'dated', 'march', '23', '2017', 'preliminary', 'offering', 'memorandum', 'strictly', 'confidential', 'not', 'general', 'distribution', 'united', 'states', 'aston', 'martin', 'capital', 'holdings', 'limited', '530', '000', '000', 'equivalent', 'senior', 'secured', 'notes', 'due', '2022', 'senior', 'secured', 'notes', 'due', '2022', 'aston', 'martin', 'capital', 'holdings', 'limited', 'issuer', 'public', 'limited', 'company', 'incorporated', 'laws', 'jersey', 'offering', 'aggregate', 'principal', 'amount', 'senior', 'secured', 'notes', 'due', '2022', 'dollar', 'notes', 'aggregate', 'principal', 'amount', 'senior', 'secured', 'notes', 'due', '2022', 'sterling', 'notes', 'together', 'dollar', 'notes', 'notes', 'dollar', 'notes', 'bear', 'interest', 'rate', 'per', 'annum', 'mature', '2022', 'sterling', 'notes', 'bear', 'interest', 'rate', 'per', 'annum', 'mature', '2022', 'interest', 'notes', 'accrue', '2017', 'payable', 'semi', 'annually', 'arrears', 'commencing', '2017', 'prior', '2019', 'issuer', 'entitled', 'option', 'redeem', 'portion', 'notes', 'paying', 'applicable', 'make', 'whole', 'premium', '2019', 'issuer', 'entitled', 'option', 'redeem', 'portion', 'notes', 'time', 'time', 'time', 'applicable', 'redemption', 'prices', 'set', 'forth', 'offering', 'memorandum', 'offering', 'memorandum', 'addition', 'time', 'prior', '2019', 'issuer', 'may', 'redeem', 'option', '40', 'series', 'notes', 'net', 'cash', 'proceeds', 'certain', 'equity', 'offerings', 'redemption', 'price', 'equal', 'principal', 'amount', 'dollar', 'notes', 'principal', 'amount', 'sterling', 'notes', 'redeemed', 'plus', 'accrued', 'unpaid', 'interest', 'provided', 'least', '50', 'original', 'aggregate', 'principal', 'amount', 'dollar', 'notes', 'sterling', 'notes', 'applicable', 'remains', 'outstanding', 'redemption', 'prior', '2019', 'issuer', 'may', 'redeem', 'twelve', 'month', 'period', 'commencing', 'issue', 'date', '10', 'aggregate', 'principal', 'amount', 'notes', 'originally', 'issued', 'including', 'aggregate', 'principal', 'amount', 'additional', 'notes', 'redemption', 'price', 'equal', '103', 'principal', 'amount', 'thereof', 'plus', 'accrued', 'unpaid', 'interest', 'applicable', 'redemption', 'date', 'notes', 'may', 'redeemed', 'price', 'equal', 'principal', 'amount', 'plus', 'accrued', 'unpaid', 'interest', 'upon', 'occurrence', 'certain', 'changes', 'applicable', 'tax', 'law', 'upon', 'occurrence', 'certain', 'change', 'control', 'events', 'issuer', 'may', 'required', 'offer', 'redeem', 'notes', '101', 'principal', 'amount', 'thereof', 'plus', 'accrued', 'unpaid', 'interest', 'date', 'redemption', 'notes', 'senior', 'secured', 'obligations', 'issuer', 'rank', 'equally', 'right', 'payment', 'existing', 'future', 'indebtedness', 'issuer', 'not', 'subordinated', 'right', 'payment', 'notes', 'senior', 'right', 'payment', 'existing', 'future', 'indebtedness', 'issuer', 'expressly', 'subordinated', 'right', 'payment', 'notes', 'notes', 'guaranteed', 'senior', 'secured', 'basis', 'aston', 'martin', 'investments', 'limited', 'investments', 'certain', 'direct', 'indirect', 'subsidiaries', 'guarantors', 'notes', 'guaranteed', 'senior', 'secured', 'basis', 'guarantor', 'guarantee', 'collectively', 'guarantees', 'rank', 'equally', 'right', 'payment', 'existing', 'future', 'indebtedness', 'guarantor', 'not', 'subordinated', 'right', 'payment', 'guarantee', 'senior', 'right', 'payment', 'existing', 'future', 'indebtedness', 'guarantor', 'expressly', 'subordinated', 'right', 'payment', 'guarantee', 'notes', 'guarantees', 'secured', 'liens', 'certain', 'assets', 'also', 'secure', 'obligations', 'new', 'revolving', 'credit', 'facility', 'defined', 'herein', 'certain', 'hedging', 'obligations', 'subject', 'agreed', 'security', 'principles', 'defined', 'herein', 'new', 'revolving', 'credit', 'facility', 'certain', 'hedging', 'obligations', 'secured', 'super', 'priority', 'basis', 'receive', 'proceeds', 'enforcement', 'collateral', 'defined', 'herein', 'ahead', 'notes', 'currently', 'no', 'public', 'market', 'notes', 'application', 'made', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'listing', 'permission', 'deal', 'notes', 'official', 'list', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'detailed', 'description', 'notes', 'see', 'description', 'notes', 'beginning', 'page', '147', 'investment', 'notes', 'involves', 'risks', 'see', 'risk', 'factors', 'beginning', 'page', '25', 'notes', 'guarantees', 'not', 'not', 'registered', 'u', 'securities', 'act', '1933', 'amended', 'u', 'securities', 'act', 'securities', 'laws', 'state', 'united', 'states', 'jurisdiction', 'notes', 'may', 'offered', 'transactions', 'exempt', 'registration', 'u', 'securities', 'act', 'securities', 'laws', 'jurisdiction', 'accordingly', 'offering', 'notes', 'qualified', 'institutional', 'buyers', 'reliance', 'rule', '144a', 'u', 'securities', 'act', 'non', 'u', 'persons', 'outside', 'united', 'states', 'reliance', 'regulation', 'u', 'securities', 'act', 'details', 'eligible', 'offerees', 'resale', 'restrictions', 'see', 'transfer', 'restrictions', 'notes', 'issued', 'form', 'global', 'notes', 'registered', 'form', 'see', 'book', 'entry', 'delivery', 'form', 'dollar', 'notes', 'sterling', 'notes', 'issued', 'denominations', '200', '000', 'integral', 'multiples', '1', '000', 'excess', 'thereof', '100', '000', 'integral', 'multiples', '1', '000', 'excess', 'thereof', 'respectively', 'dollar', 'notes', 'expected', 'delivered', 'investors', 'book', 'entry', 'form', 'depository', 'trust', 'company', 'dtc', 'sterling', 'notes', 'expected', 'delivered', 'investors', 'book', 'entry', 'form', 'euroclear', 'bank', 'sa', 'nv', 'euroclear', 'clearstream', 'banking', 'soci', 'anonyme', 'clearstream', 'case', 'april', '2017', 'issue', 'date', 'dollar', 'notes', 'issue', 'price', 'sterling', 'notes', 'issue', 'price', 'accrued', 'interest', 'issue', 'date', 'accrued', 'interest', 'issue', 'date', 'joint', 'global', 'coordinators', 'j', 'p', 'morgan', 'deutsche', 'bank', 'goldman', 'sachs', 'international', 'joint', 'bookrunners', 'bofa', 'merrill', 'lynch', 'hsbc', 'morgan', 'stanley', 'standard', 'chartered', 'bank', 'unicredit', 'bank', 'offering', 'memorandum', 'dated', '2017', '355280', 'ifc', 'indd', '1', '23', '03', '2017', '10', '32', '54', 'table', 'contents', 'page', 'summary', 'risk', 'factors', 'use', 'proceeds', 'capitalization', 'selected', 'historical', 'consolidated', 'financial', 'data', 'management', 'discussion', 'analysis', 'financial', 'condition', 'results', 'operations', 'industry', 'business', 'management', 'description', 'issuer', 'principal', 'shareholders', 'certain', 'relationships', 'related', 'party', 'transactions', 'description', 'financial', 'arrangements', 'page', '1', '25', '58', '59', 'description', 'notes', 'book', 'entry', 'delivery', 'form', 'certain', 'tax', 'considerations', 'certain', 'insolvency', 'local', 'law', 'limitations', 'transfer', 'restrictions', 'plan', 'distribution', 'legal', 'matters', 'independent', 'auditors', 'find', 'information', 'enforcement', 'civil', 'liabilities', 'listing', 'general', 'information', 'annex', 'additional', 'ebitda', 'information', 'index', 'consolidated', 'financial', 'statements', '60', '63', '85', '91', '117', '121', '123', '125', '128', '147', '235', '241', '247', '255', '259', '263', '264', '265', '266', '268', '270', 'f', '1', 'important', 'information', 'base', 'decision', 'invest', 'notes', 'solely', 'information', 'contained', 'offering', 'memorandum', 'neither', 'nor', 'issuer', 'authorized', 'anyone', 'provide', 'information', 'make', 'representations', 'contained', 'offering', 'memorandum', 'no', 'dealer', 'salesperson', 'person', 'authorized', 'give', 'information', 'represent', 'anything', 'not', 'contained', 'offering', 'memorandum', 'given', 'made', 'information', 'representation', 'must', 'not', 'relied', 'upon', 'authorized', 'issuer', 'guarantors', 'initial', 'purchasers', 'defined', 'elsewhere', 'offering', 'memorandum', 'must', 'not', 'rely', 'unauthorized', 'information', 'representations', 'take', 'no', 'responsibility', 'provide', 'no', 'assurance', 'reliability', 'information', 'others', 'may', 'give', 'information', 'contained', 'offering', 'memorandum', 'current', 'date', 'business', 'financial', 'condition', 'results', 'operations', 'prospects', 'may', 'changed', 'since', 'date', 'offering', 'memorandum', 'offer', 'sell', 'notes', 'offered', 'hereby', 'circumstances', 'jurisdictions', 'lawful', 'no', 'action', 'taken', 'permit', 'public', 'offering', 'jurisdiction', 'action', 'would', 'required', 'purpose', 'accordingly', 'notes', 'may', 'not', 'offered', 'sold', 'directly', 'indirectly', 'nor', 'may', 'offering', 'memorandum', 'distributed', 'jurisdiction', 'except', 'accordance', 'legal', 'requirements', 'applicable', 'jurisdiction', 'must', 'comply', 'laws', 'applicable', 'jurisdiction', 'buy', 'offer', 'sell', 'notes', 'possess', 'distribute', 'offering', 'memorandum', 'must', 'obtain', 'applicable', 'consents', 'approvals', 'neither', 'nor', 'initial', 'purchasers', 'shall', 'responsibility', 'foregoing', 'legal', 'requirements', 'see', 'notice', 'investors', 'offering', 'memorandum', 'document', 'providing', 'prospective', 'purchasers', 'notes', 'read', 'offering', 'memorandum', 'making', 'decision', 'whether', 'purchase', 'notes', 'must', 'not', 'use', 'offering', 'memorandum', 'purpose', 'disclose', 'information', 'offering', 'memorandum', 'person', 'issuer', 'prepared', 'offering', 'memorandum', 'issuer', 'solely', 'responsible', 'contents', 'offering', 'memorandum', 'based', 'information', 'provided', 'us', 'sources', 'believe', 'reliable', 'responsible', 'making', 'examination', 'us', 'assessment', 'merits', 'risks', 'investing', 'notes', 'making', 'investment', 'decision', 'not', 'consider', 'information', 'offering', 'memorandum', 'investment', 'legal', 'tax', 'advice', 'consult', 'counsel', 'accountant', 'advisors', 'legal', 'tax', 'business', 'financial', 'related', 'advice', 'regarding', 'purchasing', 'notes', 'remembered', 'price', 'securities', 'income', 'fluctuate', 'purchasing', 'notes', 'deemed', 'acknowledged', 'reviewed', 'offering', 'memorandum', 'opportunity', 'request', 'receive', 'review', 'additional', 'information', 'need', 'us', 'made', 'certain', 'acknowledgements', 'representations', 'agreements', 'set', 'forth', 'captions', 'transfer', 'restrictions', 'initial', 'purchasers', 'trustee', 'security', 'agent', 'registrar', 'transfer', 'agent', 'calculation', 'agent', 'paying', 'agents', 'not', 'responsible', 'not', 'making', 'representation', 'concerning', 'future', 'performance', 'accuracy', 'completeness', 'offering', 'memorandum', 'issuer', 'accepts', 'responsibility', 'information', 'contained', 'offering', 'memorandum', 'best', 'knowledge', 'belief', 'issuer', 'taken', 'reasonable', 'care', 'ensure', 'case', 'information', 'contained', 'offering', 'memorandum', 'accordance', 'facts', 'material', 'respects', 'not', 'omit', 'anything', 'likely', 'affect', 'import', 'information', 'material', 'respect', 'notes', 'not', 'not', 'registered', 'u', 'securities', 'act', 'securities', 'laws', 'state', 'united', 'states', 'subject', 'certain', 'restrictions', 'transfer', 'ii', 'prospective', 'purchasers', 'united', 'states', 'hereby', 'notified', 'sellers', 'notes', 'may', 'relying', 'exemption', 'section', '5', 'u', 'securities', 'act', 'provided', 'rule', '144a', 'u', 'securities', 'act', 'description', 'certain', 'restrictions', 'offers', 'sales', 'transfers', 'notes', 'distribution', 'offering', 'memorandum', 'see', 'notice', 'investors', 'transfer', 'restrictions', 'purchasing', 'notes', 'deemed', 'represented', 'agreed', 'provisions', 'contained', 'sections', 'offering', 'memorandum', 'securities', 'offered', 'hereby', 'not', 'recommended', 'united', 'states', 'federal', 'state', 'securities', 'commission', 'regulatory', 'authority', 'furthermore', 'foregoing', 'authorities', 'not', 'confirmed', 'accuracy', 'determined', 'adequacy', 'document', 'representation', 'contrary', 'criminal', 'offense', 'distribution', 'offering', 'memorandum', 'offering', 'sale', 'notes', 'certain', 'jurisdictions', 'may', 'restricted', 'law', 'issuer', 'initial', 'purchasers', 'require', 'persons', 'whose', 'possession', 'offering', 'memorandum', 'comes', 'inform', 'observe', 'restrictions', 'neither', 'issuer', 'nor', 'initial', 'purchasers', 'shall', 'responsibility', 'therefor', 'offering', 'memorandum', 'not', 'constitute', 'offer', 'invitation', 'purchase', 'notes', 'jurisdiction', 'offer', 'invitation', 'would', 'unlawful', 'description', 'certain', 'restrictions', 'offers', 'sales', 'resales', 'notes', 'distribution', 'offering', 'memorandum', 'see', 'notice', 'investors', 'jersey', 'financial', 'services', 'commission', 'commission', 'given', 'not', 'withdrawn', 'given', 'prior', 'issue', 'notes', 'not', 'withdrawn', 'consent', 'article', '4', 'control', 'borrowing', 'jersey', 'order', '1958', 'issue', 'notes', 'commission', 'protected', 'control', 'borrowing', 'jersey', 'law', '1947', 'amended', 'liability', 'arising', 'discharge', 'functions', 'law', 'copy', 'offering', 'memorandum', 'delivered', 'registrar', 'companies', 'jersey', 'jersey', 'registrar', 'accordance', 'article', '5', 'companies', 'general', 'provisions', 'jersey', 'order', '2002', 'jersey', 'registrar', 'given', 'not', 'withdrawn', 'consent', 'circulation', 'must', 'distinctly', 'understood', 'giving', 'consents', 'neither', 'jersey', 'registrar', 'nor', 'commission', 'takes', 'responsibility', 'financial', 'soundness', 'issuer', 'correctness', 'statements', 'made', 'opinions', 'expressed', 'regard', 'notes', 'subject', 'restrictions', 'transferability', 'resale', 'may', 'not', 'transferred', 'resold', 'except', 'permitted', 'u', 'securities', 'act', 'applicable', 'securities', 'laws', 'see', 'plan', 'distribution', 'notice', 'investors', 'aware', 'may', 'required', 'bear', 'financial', 'risks', 'investment', 'indefinite', 'period', 'time', 'prepared', 'offering', 'memorandum', 'solely', 'use', 'connection', 'offering', 'united', 'states', 'may', 'not', 'distribute', 'offering', 'memorandum', 'make', 'copies', 'without', 'prior', 'written', 'consent', 'people', 'retained', 'advise', 'connection', 'offering', 'offering', 'memorandum', 'summarizes', 'material', 'documents', 'information', 'refer', 'complete', 'understanding', 'discuss', 'offering', 'memorandum', 'making', 'investment', 'decision', 'must', 'rely', 'examination', 'company', 'terms', 'offering', 'notes', 'including', 'merits', 'risks', 'involved', 'see', 'find', 'information', 'not', 'consider', 'information', 'document', 'legal', 'business', 'tax', 'advice', 'regarding', 'investment', 'notes', 'reserve', 'right', 'withdraw', 'offering', 'notes', 'time', 'initial', 'purchasers', 'reserve', 'right', 'reject', 'commitment', 'subscribe', 'notes', 'whole', 'part', 'allot', 'prospective', 'purchaser', 'less', 'full', 'amount', 'notes', 'sought', 'purchaser', 'initial', 'purchaser', 'certain', 'affiliates', 'may', 'acquire', 'account', 'portion', 'notes', 'application', 'made', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'listing', 'permission', 'deal', 'notes', 'official', 'list', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'issuer', 'submit', 'offering', 'memorandum', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'connection', 'listing', 'application', 'course', 'review', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'iii', 'issuer', 'may', 'requested', 'make', 'changes', 'financial', 'information', 'included', 'offering', 'memorandum', 'producing', 'listing', 'document', 'listing', 'comments', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'may', 'require', 'significant', 'modification', 'reformulation', 'information', 'contained', 'offering', 'memorandum', 'may', 'require', 'inclusion', 'additional', 'information', 'issuer', 'may', 'also', 'required', 'update', 'information', 'offering', 'memorandum', 'reflect', 'changes', 'business', 'financial', 'condition', 'results', 'operations', 'prospects', 'issuer', 'can', 'not', 'guarantee', 'application', 'listing', 'permission', 'deal', 'notes', 'official', 'list', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'approved', 'date', 'issuance', 'notes', 'date', 'thereafter', 'settlement', 'notes', 'not', 'conditioned', 'obtaining', 'listing', 'see', 'risk', 'factors', 'immediately', 'following', 'summary', 'description', 'important', 'factors', 'relating', 'investment', 'notes', 'offered', 'offering', 'memorandum', 'stabilization', 'connection', 'issue', 'notes', 'j', 'p', 'morgan', 'securities', 'llc', 'respect', 'dollar', 'notes', 'j', 'p', 'morgan', 'securities', 'plc', 'respect', 'sterling', 'notes', 'together', 'stabilizing', 'managers', 'person', 'acting', 'behalf', 'stabilizing', 'managers', 'may', 'allot', 'notes', 'effect', 'transactions', 'view', 'supporting', 'market', 'prices', 'notes', 'level', 'higher', 'might', 'otherwise', 'prevail', 'however', 'no', 'assurances', 'stabilizing', 'managers', 'person', 'acting', 'behalf', 'stabilizing', 'manager', 'stabilizing', 'managers', 'undertake', 'stabilization', 'action', 'stabilization', 'action', 'may', 'begin', 'date', 'adequate', 'public', 'disclosure', 'final', 'terms', 'offer', 'notes', 'made', 'begun', 'may', 'ended', 'time', 'must', 'end', 'no', 'later', 'earlier', '30', 'days', 'issue', 'date', 'notes', '60', 'days', 'date', 'allotment', 'notes', 'notice', 'investors', 'notice', 'u', 'investors', 'purchaser', 'notes', 'deemed', 'made', 'representations', 'warranties', 'acknowledgements', 'described', 'offering', 'memorandum', 'transfer', 'restrictions', 'notes', 'not', 'not', 'registered', 'u', 'securities', 'act', 'securities', 'laws', 'state', 'united', 'states', 'subject', 'certain', 'restrictions', 'transfer', 'resale', 'prospective', 'purchasers', 'hereby', 'notified', 'seller', 'new', 'note', 'may', 'relying', 'exemption', 'provisions', 'section', '5', 'u', 'securities', 'act', 'provided', 'rule', '144a', 'u', 'securities', 'act', 'description', 'certain', 'restrictions', 'resale', 'transfer', 'notes', 'see', 'transfer', 'restrictions', 'notes', 'may', 'not', 'offered', 'public', 'within', 'jurisdiction', 'accepting', 'delivery', 'offering', 'memorandum', 'agree', 'not', 'offer', 'sell', 'resell', 'transfer', 'deliver', 'directly', 'indirectly', 'new', 'note', 'public', 'notice', 'prospective', 'investors', 'canada', 'notes', 'may', 'sold', 'purchasers', 'purchasing', 'deemed', 'purchasing', 'principal', 'accredited', 'investors', 'defined', 'national', 'instrument', '45', '106', 'prospectus', 'exemptions', 'subsection', '73', '3', '1', 'securities', 'act', 'ontario', 'section', '1', '1', 'national', 'instrument', '45', '106', 'prospectus', 'exemptions', 'permitted', 'clients', 'defined', 'national', 'instrument', '31', '103', 'registration', 'requirements', 'exemptions', 'ongoing', 'registrant', 'obligations', 'resale', 'notes', 'must', 'made', 'accordance', 'exemption', 'transaction', 'not', 'subject', 'prospectus', 'requirements', 'applicable', 'securities', 'laws', 'securities', 'legislation', 'certain', 'provinces', 'territories', 'canada', 'may', 'provide', 'purchaser', 'remedies', 'rescission', 'damages', 'offering', 'memorandum', 'including', 'amendment', 'thereto', 'contains', 'misrepresentation', 'provided', 'remedies', 'rescission', 'damages', 'exercised', 'purchaser', 'within', 'time', 'limit', 'prescribed', 'securities', 'legislation', 'iv', 'purchaser', 'province', 'territory', 'purchaser', 'refer', 'applicable', 'provisions', 'securities', 'legislation', 'purchaser', 'province', 'territory', 'particulars', 'rights', 'consult', 'legal', 'advisor', 'pursuant', 'section', '3a', '3', 'national', 'instrument', '33', '105', 'underwriting', 'conflicts', 'ni', '33', '105', 'initial', 'purchasers', 'not', 'required', 'comply', 'disclosure', 'requirements', 'ni', '33', '105', 'regarding', 'underwriter', 'conflicts', 'interest', 'connection', 'offering', 'notice', 'european', 'economic', 'area', 'investors', 'relation', 'member', 'state', 'eea', 'implemented', 'prospectus', 'directive', 'relevant', 'member', 'state', 'initial', 'purchaser', 'represented', 'agreed', 'effect', 'including', 'date', 'prospectus', 'directive', 'implemented', 'relevant', 'member', 'state', 'relevant', 'implementation', 'date', 'not', 'made', 'not', 'make', 'offer', 'notes', 'subject', 'offering', 'contemplated', 'offering', 'memorandum', 'public', 'relevant', 'member', 'state', 'legal', 'entity', 'qualified', 'investor', 'defined', 'prospectus', 'directive', 'b', 'fewer', '150', 'natural', 'legal', 'persons', 'qualified', 'investors', 'defined', 'prospectus', 'directive', 'permitted', 'prospectus', 'directive', 'subject', 'obtaining', 'prior', 'consent', 'relevant', 'initial', 'purchaser', 'initial', 'purchasers', 'nominated', 'issuer', 'offer', 'c', 'circumstances', 'falling', 'within', 'article', '3', '2', 'prospectus', 'directive', 'provided', 'no', 'offer', 'notes', 'shall', 'require', 'publication', 'issuer', 'initial', 'purchaser', 'prospectus', 'pursuant', 'article', '3', 'prospectus', 'directive', 'supplement', 'prospectus', 'pursuant', 'article', '16', 'prospective', 'directive', 'reliance', 'article', '3', '2', 'b', 'purposes', 'provision', 'expression', 'offer', 'notes', 'public', 'relation', 'notes', 'relevant', 'member', 'state', 'means', 'communication', 'form', 'means', 'sufficient', 'information', 'terms', 'offer', 'notes', 'offered', 'enable', 'investor', 'decide', 'purchase', 'subscribe', 'notes', 'may', 'varied', 'relevant', 'member', 'state', 'measure', 'implementing', 'prospectus', 'directive', 'relevant', 'member', 'state', 'expression', 'prospectus', 'directive', 'means', 'directive', '2003', '71', 'ec', 'amended', 'including', 'directive', '2010', '73', 'eu', 'includes', 'relevant', 'implementing', 'measure', 'relevant', 'member', 'state', 'subscriber', 'purchaser', 'notes', 'offering', 'located', 'within', 'relevant', 'member', 'state', 'deemed', 'represented', 'acknowledged', 'agreed', 'qualified', 'investor', 'within', 'meaning', 'article', '2', '1', 'e', 'prospectus', 'directive', 'issuer', 'initial', 'purchasers', 'affiliates', 'others', 'rely', 'upon', 'trust', 'accuracy', 'foregoing', 'representation', 'acknowledgement', 'agreement', 'notwithstanding', 'person', 'not', 'qualified', 'investor', 'notified', 'initial', 'purchasers', 'fact', 'writing', 'may', 'consent', 'initial', 'purchasers', 'permitted', 'subscribe', 'purchase', 'notes', 'offering', 'notice', 'certain', 'uk', 'investors', 'offering', 'memorandum', 'directed', 'solely', 'persons', 'outside', 'united', 'kingdom', 'ii', 'investment', 'professionals', 'term', 'defined', 'article', '19', '5', 'financial', 'promotion', 'order', 'iii', 'persons', 'falling', 'within', 'article', '49', '2', 'financial', 'promotion', 'order', 'iv', 'persons', 'invitation', 'inducement', 'engage', 'investment', 'activity', 'within', 'meaning', 'section', '21', 'fsma', 'connection', 'issue', 'sale', 'notes', 'may', 'otherwise', 'lawfully', 'communicated', 'caused', 'communicated', 'persons', 'together', 'referred', 'relevant', 'persons', 'offering', 'memorandum', 'must', 'not', 'acted', 'relied', 'persons', 'not', 'relevant', 'persons', 'investment', 'investment', 'activity', 'offering', 'memorandum', 'relates', 'available', 'relevant', 'persons', 'engaged', 'relevant', 'persons', 'person', 'not', 'relevant', 'person', 'not', 'act', 'rely', 'offering', 'memorandum', 'contents', 'v', 'notice', 'investors', 'austria', 'offering', 'memorandum', 'not', 'not', 'approved', 'published', 'pursuant', 'austrian', 'capital', 'markets', 'act', 'kapitalmarktgesetz', 'amended', 'neither', 'offering', 'memorandum', 'nor', 'document', 'connected', 'therewith', 'constitutes', 'prospectus', 'according', 'austrian', 'capital', 'markets', 'act', 'no', 'prospectus', 'required', 'accordance', 'directive', '2003', '71', 'ec', 'neither', 'offering', 'memorandum', 'nor', 'document', 'connected', 'therewith', 'may', 'distributed', 'passed', 'disclosed', 'person', 'austria', 'no', 'steps', 'may', 'taken', 'would', 'constitute', 'public', 'offering', 'notes', 'austria', 'offering', 'notes', 'may', 'not', 'advertised', 'austria', 'offer', 'notes', 'austria', 'made', 'compliance', 'provisions', 'austrian', 'capital', 'markets', 'act', 'laws', 'regulations', 'austria', 'applicable', 'offer', 'sale', 'notes', 'austria', 'notes', 'available', 'offering', 'memorandum', 'offering', 'material', 'relation', 'notes', 'directed', 'persons', 'qualified', 'investors', 'qualifizierte', 'anleger', 'within', 'meaning', 'section', '3', 'paragraph', '1', 'number', '11', 'austrian', 'capital', 'markets', 'act', 'notice', 'investors', 'belgium', 'offering', 'memorandum', 'relates', 'private', 'placement', 'notes', 'not', 'constitute', 'offer', 'solicitation', 'public', 'belgium', 'subscribe', 'acquire', 'notes', 'offering', 'not', 'not', 'notified', 'offering', 'memorandum', 'not', 'not', 'approved', 'belgian', 'financial', 'services', 'markets', 'authority', 'autoriteit', 'voor', 'financi', 'le', 'diensten', 'en', 'markten', 'autorit', 'des', 'services', 'et', 'march', 'financiers', 'pursuant', 'belgian', 'laws', 'regulations', 'applicable', 'public', 'offering', 'notes', 'accordingly', 'offering', 'well', 'materials', 'relating', 'offering', 'may', 'not', 'advertised', 'notes', 'may', 'not', 'offered', 'sold', 'offering', 'memorandum', 'information', 'circular', 'brochure', 'similar', 'document', 'may', 'not', 'distributed', 'directly', 'indirectly', 'person', 'located', 'resident', 'belgium', 'circumstances', 'not', 'constitute', 'offer', 'public', 'belgium', 'pursuant', 'belgian', 'act', '16', 'june', '2006', 'public', 'offering', 'investment', 'instruments', 'admission', 'investment', 'instruments', 'trading', 'regulated', 'market', 'pursuant', 'belgian', 'act', '3', 'august', '2012', 'certain', 'forms', 'collective', 'management', 'investment', 'portfolios', 'ii', 'person', 'qualifying', 'consumer', 'within', 'meaning', 'book', 'vi', 'belgian', 'code', 'economic', 'law', 'belgian', 'code', 'unless', 'sale', 'made', 'compliance', 'belgian', 'code', 'implementing', 'regulation', 'offering', 'memorandum', 'issued', 'intended', 'recipient', 'personal', 'use', 'exclusively', 'purpose', 'offer', 'therefore', 'may', 'not', 'used', 'purpose', 'passed', 'person', 'belgium', 'notice', 'investors', 'france', 'offering', 'memorandum', 'not', 'prepared', 'not', 'distributed', 'context', 'public', 'offering', 'financial', 'securities', 'france', 'offre', 'au', 'public', 'de', 'titres', 'financiers', 'within', 'meaning', 'article', 'l', '411', '1', 'french', 'code', 'mon', 'taire', 'et', 'financier', 'title', 'book', 'ii', 'r', 'glement', 'g', 'n', 'ral', 'autorit', 'des', 'march', 'financiers', 'french', 'financial', 'markets', 'authority', 'amf', 'therefore', 'not', 'not', 'submitted', 'amf', 'prior', 'approval', 'otherwise', 'not', 'require', 'prospectus', 'submitted', 'approval', 'amf', 'consequently', 'notes', 'may', 'not', 'directly', 'indirectly', 'offered', 'sold', 'public', 'france', 'neither', 'offering', 'memorandum', 'nor', 'offering', 'marketing', 'materials', 'relating', 'notes', 'must', 'made', 'available', 'distributed', 'way', 'would', 'constitute', 'directly', 'indirectly', 'offer', 'public', 'france', 'notes', 'may', 'offered', 'sold', 'france', 'pursuant', 'article', 'l', '411', '2', 'ii', 'french', 'code', 'mon', 'taire', 'et', 'financier', 'providers', 'investment', 'services', 'relating', 'portfolio', 'management', 'account', 'third', 'parties', 'personnes', 'fournissant', 'le', 'service', 'investissement', 'de', 'gestion', 'de', 'portefeuille', 'pour', 'le', 'compte', 'de', 'tiers', 'qualified', 'investors', 'investisseurs', 'qualifi', 'acting', 'account', 'restricted', 'circle', 'investors', 'cercle', 'restreint', 'investisseurs', 'acting', 'account', 'defined', 'accordance', 'l', '411', '1', 'l', '411', '2', '411', '1', '411', '4', '744', '1', '754', '1', '764', '1', 'french', 'code', 'mon', 'taire', 'et', 'financier', 'prospective', 'investors', 'informed', 'offering', 'memorandum', 'not', 'not', 'submitted', 'clearance', 'amf', 'b', 'qualified', 'investors', 'investisseurs', 'qualifi', 'vi', 'restricted', 'circle', 'investors', 'cercle', 'restreint', 'investisseurs', 'referred', 'article', 'l', '411', '2', 'ii', '2', 'french', 'code', 'mon', 'taire', 'et', 'financier', 'may', 'participate', 'offering', 'account', 'provided', 'articles', 'l', '411', '2', 'ii', '2', '411', '1', '411', '4', '744', '1', '754', '1', '764', '1', 'french', 'code', 'mon', 'taire', 'et', 'financier', 'c', 'direct', 'indirect', 'distribution', 'sale', 'public', 'notes', 'acquired', 'may', 'made', 'compliance', 'applicable', 'laws', 'regulations', 'particular', 'relating', 'offer', 'public', 'offre', 'au', 'public', 'de', 'titres', 'financiers', 'embodied', 'articles', 'l', '411', '1', 'l', '411', '2', 'l', '412', '1', 'l', '621', '8', 'l', '621', '8', '3', 'french', 'code', 'mon', 'taire', 'et', 'financier', 'notice', 'investors', 'germany', 'offering', 'not', 'public', 'offering', 'federal', 'republic', 'germany', 'notes', 'may', 'offered', 'sold', 'acquired', 'accordance', 'provisions', 'securities', 'prospectus', 'act', 'federal', 'republic', 'germany', 'securities', 'prospectus', 'act', 'wertpapierprospektgesetz', 'wppg', 'amended', 'commission', 'regulation', 'ec', 'no', '809', '2004', 'april', '29', '2004', 'amended', 'applicable', 'german', 'law', 'no', 'application', 'made', 'made', 'german', 'law', 'permit', 'public', 'offer', 'notes', 'federal', 'republic', 'germany', 'offering', 'memorandum', 'not', 'approved', 'purposes', 'public', 'offer', 'notes', 'accordingly', 'notes', 'may', 'not', 'not', 'offered', 'advertised', 'publicly', 'public', 'promotion', 'germany', 'therefore', 'offering', 'memorandum', 'strictly', 'private', 'use', 'offer', 'made', 'recipients', 'document', 'personally', 'addressed', 'not', 'constitute', 'offer', 'advertisement', 'public', 'notes', 'available', 'offering', 'memorandum', 'offering', 'material', 'relation', 'notes', 'directed', 'persons', 'qualified', 'investors', 'qualifizierte', 'anleger', 'within', 'meaning', 'section', '2', 'no', '6', 'securities', 'prospectus', 'act', 'resale', 'notes', 'germany', 'may', 'made', 'accordance', 'securities', 'prospectus', 'act', 'applicable', 'laws', 'issuer', 'not', 'not', 'intend', 'file', 'securities', 'prospectus', 'german', 'federal', 'financial', 'supervisory', 'authority', 'bundesanstalt', 'f', 'r', 'finanzdienstleistungsaufsicht', 'bafin', 'obtain', 'notification', 'bafin', 'another', 'competent', 'authority', 'member', 'state', 'european', 'economic', 'area', 'securities', 'prospectus', 'may', 'filed', 'pursuant', 'section', '17', '3', 'securities', 'prospectus', 'act', 'notice', 'investors', 'italy', 'offering', 'not', 'cleared', 'commissione', 'nazionale', 'per', 'la', 'societ', 'e', 'la', 'borsa', 'consob', 'italian', 'securities', 'exchange', 'commission', 'pursuant', 'italian', 'securities', 'legislation', 'accordingly', 'no', 'notes', 'may', 'offered', 'sold', 'delivered', 'directly', 'indirectly', 'nor', 'may', 'copies', 'offering', 'memorandum', 'document', 'relating', 'notes', 'distributed', 'republic', 'italy', 'except', 'qualified', 'investors', 'investitori', 'qualificati', 'defined', 'article', '26', 'first', 'paragraph', 'letter', 'consob', 'regulation', 'no', '16190', 'october', '29', '2007', 'amended', 'regulation', 'no', '16190', 'pursuant', 'article', '34', 'ter', 'first', 'paragraph', 'letter', 'b', 'consob', 'regulation', 'no', '11971', 'may', '14', '1999', 'amended', 'issuer', 'regulation', 'implementing', 'article', '100', 'italian', 'legislative', 'decree', 'no', '58', 'february', '24', '1998', 'amended', 'italian', 'financial', 'act', 'b', 'circumstances', 'exempted', 'rules', 'public', 'offerings', 'pursuant', 'article', '100', 'italian', 'financial', 'act', 'implementing', 'consob', 'regulations', 'including', 'issuer', 'regulation', 'initial', 'purchaser', 'represented', 'agreed', 'offer', 'sale', 'delivery', 'notes', 'distribution', 'copies', 'offering', 'memorandum', 'document', 'relating', 'notes', 'republic', 'italy', 'carried', 'accordance', 'italian', 'securities', 'tax', 'exchange', 'control', 'applicable', 'laws', 'regulations', 'offer', 'sale', 'delivery', 'notes', 'distribution', 'copies', 'offering', 'memorandum', 'document', 'relating', 'notes', 'republic', 'italy', 'according', 'provisions', 'must', 'made', 'investment', 'firm', 'bank', 'financial', 'intermediary', 'permitted', 'conduct', 'activities', 'republic', 'italy', 'accordance', 'italian', 'financial', 'act', 'italian', 'legislative', 'decree', 'no', '385', 'september', '1', '1993', 'regulation', 'no', '16190', 'case', 'amended', 'time', 'time', 'applicable', 'laws', 'regulations', 'vii', 'b', 'compliance', 'relevant', 'italian', 'securities', 'tax', 'exchange', 'control', 'applicable', 'laws', 'regulations', 'applicable', 'requirement', 'limitation', 'may', 'imposed', 'time', 'time', 'consob', 'bank', 'italy', 'relevant', 'italian', 'authorities', 'investor', 'purchasing', 'notes', 'solely', 'responsible', 'ensuring', 'offer', 'resale', 'notes', 'investor', 'occurs', 'compliance', 'applicable', 'laws', 'regulations', 'selling', 'restrictions', 'respect', 'italy', 'see', 'also', 'notice', 'european', 'economic', 'area', 'investors', 'notice', 'investors', 'luxembourg', 'offering', 'memorandum', 'not', 'approved', 'not', 'submitted', 'approval', 'luxembourg', 'financial', 'services', 'authority', 'commission', 'de', 'surveillance', 'du', 'secteur', 'financier', 'cssf', 'purposes', 'public', 'offering', 'sale', 'luxembourg', 'luxembourg', 'accordingly', 'notes', 'may', 'not', 'offered', 'sold', 'public', 'luxembourg', 'directly', 'indirectly', 'neither', 'offering', 'memorandum', 'nor', 'circular', 'prospectus', 'form', 'application', 'advertisement', 'communication', 'material', 'may', 'distributed', 'otherwise', 'made', 'available', 'published', 'luxembourg', 'except', 'sole', 'purpose', 'listing', 'official', 'list', 'luxembourg', 'stock', 'exchange', 'admission', 'trading', 'notes', 'euro', 'mtf', 'market', 'except', 'circumstances', 'not', 'constitute', 'offer', 'securities', 'public', 'benefits', 'exemption', 'constitutes', 'transaction', 'otherwise', 'not', 'subject', 'requirement', 'publish', 'prospectus', 'purpose', 'luxembourg', 'prospectus', 'act', 'notice', 'investors', 'netherlands', 'offering', 'memorandum', 'not', 'directed', 'person', 'netherlands', 'qualified', 'investors', 'gekwalificeerde', 'beleggers', 'defined', 'netherlands', 'financial', 'supervision', 'act', 'wet', 'op', 'het', 'financieel', 'toezicht', 'amended', 'notes', 'not', 'may', 'not', 'not', 'offered', 'person', 'netherlands', 'qualified', 'investors', 'gekwalificeerde', 'beleggers', 'offering', 'memorandum', 'must', 'not', 'acted', 'relied', 'persons', 'netherlands', 'not', 'qualified', 'investors', 'gekwalificeerde', 'beleggers', 'notice', 'investors', 'poland', 'notes', 'may', 'not', 'offered', 'sold', 'poland', 'except', 'circumstances', 'not', 'constitute', 'public', 'offering', 'defined', 'act', 'public', 'offering', 'conditions', 'governing', 'introduction', 'financial', 'instruments', 'organized', 'trading', 'public', 'companies', 'july', '29', '2005', 'amended', 'public', 'offering', 'act', 'communication', 'made', 'form', 'means', 'directed', '150', 'people', 'unnamed', 'addressee', 'containing', 'information', 'securities', 'terms', 'acquisition', 'sufficient', 'enable', 'investor', 'decide', 'securities', 'acquisition', 'offering', 'memorandum', 'not', 'prospectus', 'information', 'memorandum', 'not', 'not', 'approved', 'polish', 'financial', 'supervision', 'authority', 'komisja', 'nadzoru', 'finansowego', 'notice', 'investors', 'sweden', 'offering', 'memorandum', 'not', 'prospectus', 'not', 'prepared', 'accordance', 'prospectus', 'requirements', 'provided', 'swedish', 'financial', 'instruments', 'trading', 'act', 'sw', 'lagen', '1991', '980', 'om', 'handel', 'med', 'finansiella', 'instrument', 'nor', 'swedish', 'enactment', 'neither', 'swedish', 'financial', 'supervisory', 'authority', 'sw', 'finansinspektionen', 'nor', 'swedish', 'public', 'body', 'examined', 'approved', 'registered', 'offering', 'memorandum', 'examine', 'approve', 'register', 'offering', 'memorandum', 'accordingly', 'offering', 'memorandum', 'may', 'not', 'made', 'available', 'nor', 'may', 'notes', 'otherwise', 'marketed', 'offered', 'sale', 'sweden', 'circumstances', 'constitute', 'exemption', 'requirement', 'prepare', 'prospectus', 'swedish', 'financial', 'instruments', 'trading', 'act', 'viii', 'notice', 'investors', 'spain', 'notes', 'may', 'not', 'offered', 'sold', 'spain', 'except', 'accordance', 'requirements', 'spanish', 'securities', 'market', 'law', '4', '2015', 'october', '23', 'real', 'decreto', 'legislativo', '4', '2015', 'de', '23', 'de', 'octubre', 'por', 'el', 'que', 'se', 'aprueba', 'el', 'texto', 'refundido', 'de', 'la', 'ley', 'del', 'mercado', 'de', 'valores', 'amended', 'restated', 'royal', 'decree', '1310', '2005', 'november', '4', '2005', 'listing', 'securities', 'public', 'offers', 'applicable', 'prospectus', 'real', 'decreto', '1310', '2005', 'de', '4', 'de', 'noviembre', 'por', 'el', 'que', 'se', 'desarrolla', 'parcialmente', 'la', 'ley', '24', '1988', 'de', '28', 'de', 'julio', 'del', 'mercado', 'de', 'valores', 'en', 'materia', 'de', 'admisi', 'n', 'negociaci', 'n', 'de', 'valores', 'en', 'mercados', 'secundarios', 'oficiales', 'de', 'ofertas', 'p', 'blicas', 'de', 'venta', 'suscripci', 'n', 'del', 'folleto', 'exigible', 'tales', 'efectos', 'amended', 'time', 'time', 'implementing', 'regulations', 'spanish', 'securities', 'market', 'law', 'ii', 'institutions', 'authorized', 'provide', 'investment', 'services', 'spain', 'pursuant', 'spanish', 'securities', 'market', 'law', 'related', 'legislation', 'royal', 'decree', '217', '2008', '15', 'february', 'legal', 'regime', 'applicable', 'investment', 'services', 'companies', 'real', 'decreto', '217', '2008', 'de', '15', 'de', 'febrero', 'sobre', 'el', 'r', 'gimen', 'jur', 'dico', 'de', 'las', 'empresas', 'de', 'servicios', 'de', 'inversi', 'n', 'de', 'las', 'dem', 'entidades', 'que', 'prestan', 'servicios', 'de', 'inversi', 'n', 'notes', 'may', 'not', 'sold', 'offered', 'distributed', 'persons', 'spain', 'except', 'circumstances', 'not', 'constitute', 'public', 'offer', 'oferta', 'p', 'blica', 'securities', 'spain', 'within', 'meaning', 'spanish', 'securities', 'market', 'law', 'none', 'notes', 'offering', 'offering', 'memorandum', 'contents', 'approved', 'registered', 'spanish', 'securities', 'exchange', 'commission', 'comisi', 'n', 'nacional', 'del', 'mercado', 'de', 'valores', 'therefore', 'not', 'intended', 'public', 'offering', 'sale', 'notes', 'spain', 'notice', 'investors', 'switzerland', 'offering', 'memorandum', 'well', 'material', 'relating', 'notes', 'subject', 'offering', 'contemplated', 'offering', 'memorandum', 'not', 'constitute', 'public', 'offering', 'prospectus', 'pursuant', 'article', '652a', 'article', '1156', 'swiss', 'code', 'obligations', 'may', 'not', 'comply', 'directive', 'notes', 'foreign', 'borrowers', 'swiss', 'bankers', 'association', 'notes', 'may', 'not', 'publicly', 'offered', 'sold', 'advertised', 'directly', 'indirectly', 'switzerland', 'not', 'listed', 'six', 'swiss', 'exchange', 'ltd', 'therefore', 'documents', 'relating', 'notes', 'including', 'not', 'limited', 'offering', 'memorandum', 'not', 'claim', 'comply', 'disclosure', 'standards', 'swiss', 'code', 'obligations', 'listing', 'rules', 'six', 'swiss', 'exchange', 'ltd', 'corresponding', 'prospectus', 'schemes', 'annexed', 'listing', 'rules', 'six', 'swiss', 'exchange', 'ltd', 'notes', 'offered', 'switzerland', 'way', 'private', 'placement', 'e', 'limited', 'number', 'selected', 'investors', 'without', 'public', 'advertisement', 'investors', 'not', 'purchase', 'notes', 'intention', 'distribute', 'public', 'investors', 'individually', 'approached', 'directly', 'time', 'time', 'offering', 'memorandum', 'well', 'material', 'relating', 'notes', 'personal', 'confidential', 'not', 'constitute', 'offer', 'person', 'offering', 'memorandum', 'well', 'material', 'relating', 'notes', 'may', 'used', 'investors', 'handed', 'connection', 'offering', 'described', 'herein', 'may', 'neither', 'directly', 'nor', 'indirectly', 'distributed', 'made', 'available', 'persons', 'without', 'issuer', 'express', 'consent', 'offering', 'memorandum', 'well', 'material', 'relating', 'notes', 'may', 'not', 'used', 'connection', 'offer', 'shall', 'particular', 'not', 'copied', 'distributed', 'public', 'switzerland', 'offering', 'memorandum', 'contains', 'important', 'information', 'read', 'make', 'decision', 'respect', 'investment', 'notes', 'ix', 'presentation', 'financial', 'information', 'use', 'non', 'ifrs', 'financial', 'information', 'unless', 'otherwise', 'indicated', 'historical', 'financial', 'data', 'presented', 'offering', 'memorandum', 'derived', 'historical', 'consolidated', 'financial', 'statements', 'holdings', 'included', 'elsewhere', 'offering', 'memorandum', 'financial', 'information', 'holdings', 'consolidated', 'financial', 'statements', 'holdings', 'years', 'ended', 'december', '31', '2014', '2015', '2016', 'presented', 'accordance', 'international', 'financial', 'reporting', 'standards', 'adopted', 'european', 'union', 'ifrs', 'addition', 'included', 'certain', 'non', 'ifrs', 'financial', 'measures', 'offering', 'memorandum', 'including', 'ebitda', 'february', 'ltm', 'ebitda', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'certain', 'financial', 'ratios', 'non', 'ifrs', 'financial', 'measures', 'derived', 'basis', 'methodologies', 'ifrs', 'non', 'ifrs', 'measures', 'present', 'may', 'also', 'defined', 'differently', 'corresponding', 'terms', 'indenture', 'see', 'non', 'ifrs', 'measures', 'holdings', 'not', 'provide', 'guarantee', 'type', 'credit', 'support', 'notes', 'share', 'pledge', 'company', 'capital', 'stock', 'consolidated', 'financial', 'statements', 'holdings', 'include', 'results', 'operations', 'financial', 'position', 'holdings', 'giving', 'effect', 'transactions', 'not', 'attributable', 'company', 'subsidiaries', 'result', 'consolidated', 'financial', 'statements', 'holdings', 'not', 'directly', 'comparable', 'historical', 'financial', 'information', 'company', 'subsidiaries', 'giving', 'effect', 'transactions', 'material', 'differences', 'consolidated', 'financial', 'position', 'results', 'operations', 'holdings', 'company', 'primarily', 'relate', 'liabilities', 'costs', 'associated', 'preference', 'shares', 'including', 'capitalized', 'interest', 'expense', 'respect', 'thereto', 'obligations', 'holdings', 'not', 'company', 'well', '1', '4', 'million', '3', '9', 'million', '1', '1', 'million', 'annual', 'administration', 'costs', 'holdings', 'years', 'ended', 'december', '31', '2014', '2015', '2016', 'respectively', 'therefore', 'presented', 'offering', 'memorandum', 'financial', 'operating', 'results', 'certain', 'information', 'relating', 'holdings', 'lieu', 'company', 'believe', 'holdings', 'consolidated', 'financial', 'statements', 'subject', 'differences', 'noted', 'adequately', 'reflect', 'company', 'consolidated', 'financial', 'results', 'financial', 'position', 'holdings', 'reporting', 'entity', 'covenants', 'issuer', 'newly', 'formed', 'wholly', 'owned', 'direct', 'subsidiary', 'investments', 'company', 'following', 'refinancing', 'holdings', 'transfer', 'entire', 'share', 'capital', 'capital', 'company', 'exchange', 'issuance', 'shares', 'company', 'holdings', 'company', 'transfer', 'entire', 'share', 'capital', 'capital', 'issuer', 'exchange', 'issuance', 'shares', 'issuer', 'company', 'see', 'summary', 'transactions', 'reorganization', 'financial', 'information', 'financial', 'statements', 'included', 'offering', 'memorandum', 'presented', 'pounds', 'sterling', 'certain', 'numerical', 'figures', 'included', 'offering', 'memorandum', 'rounded', 'therefore', 'discrepancies', 'tables', 'totals', 'sums', 'amounts', 'listed', 'may', 'occur', 'due', 'rounding', 'non', 'ifrs', 'measures', 'management', 'uses', 'ebitda', 'february', 'ltm', 'ebitda', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'cash', 'conversion', 'ratio', 'assess', 'operating', 'performance', 'addition', 'believe', 'metrics', 'measures', 'commonly', 'used', 'investors', 'ebitda', 'february', 'ltm', 'ebitda', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'cash', 'conversion', 'ratio', 'not', 'presentations', 'made', 'accordance', 'ifrs', 'use', 'terms', 'varies', 'others', 'industry', 'metrics', 'not', 'considered', 'alternatives', 'net', 'income', 'loss', 'operating', 'income', 'performance', 'measures', 'derived', 'accordance', 'ifrs', 'measures', 'operating', 'performance', 'operating', 'cash', 'flows', 'measures', 'liquidity', 'ebitda', 'february', 'ltm', 'ebitda', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'important', 'limitations', 'analytical', 'tools', 'not', 'x', 'consider', 'isolation', 'substitutes', 'analysis', 'results', 'reported', 'ifrs', 'example', 'ebitda', 'excludes', 'certain', 'tax', 'payments', 'may', 'represent', 'reduction', 'cash', 'available', 'us', 'not', 'reflect', 'cash', 'capital', 'expenditure', 'requirements', 'assets', 'depreciated', 'amortized', 'may', 'replaced', 'future', 'not', 'reflect', 'changes', 'cash', 'requirements', 'working', 'capital', 'needs', 'not', 'reflect', 'significant', 'financial', 'expense', 'cash', 'requirements', 'necessary', 'service', 'interest', 'payments', 'debts', 'ebitda', 'reflects', 'impact', 'earnings', 'charges', 'resulting', 'matters', 'holders', 'notes', 'may', 'consider', 'not', 'indicative', 'ongoing', 'operations', 'therefore', 'also', 'present', 'february', 'ltm', 'ebitda', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'february', 'ltm', 'ebitda', 'defined', 'ebitda', 'year', 'ended', 'december', '31', '2016', 'adjusted', 'include', 'ebitda', 'two', 'months', 'ended', 'february', '28', '2017', 'less', 'ebitda', 'two', 'months', 'ended', 'february', '29', '2016', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'defined', 'february', 'ltm', 'ebitda', 'adjusted', 'give', 'pro', 'forma', 'effect', 'ebitda', 'contribution', 'orders', 'production', 'net', 'expected', 'costs', 'scheduled', 'production', 'period', 'march', '1', '2017', 'may', '31', '2017', 'less', 'ebitda', 'comparable', 'period', '2016', 'see', 'summary', 'historical', 'consolidated', 'financial', 'data', 'non', 'ifrs', 'financial', 'information', 'not', 'audited', 'reviewed', 'kpmg', 'llp', 'non', 'ifrs', 'measures', 'not', 'constitute', 'measure', 'financial', 'performance', 'ifrs', 'not', 'considered', 'substitute', 'operating', 'income', 'net', 'income', 'cash', 'flow', 'financial', 'measures', 'computed', 'accordance', 'ifrs', 'measure', 'future', 'results', 'operations', 'liquidity', 'pro', 'forma', 'financial', 'information', 'offering', 'memorandum', 'also', 'includes', 'certain', 'unaudited', 'pro', 'forma', 'consolidated', 'financial', 'information', 'including', 'pro', 'forma', 'cash', 'cash', 'equivalents', 'pro', 'forma', 'total', 'debt', 'pro', 'forma', 'net', 'debt', 'pro', 'forma', 'interest', 'expense', 'defined', 'offering', 'memorandum', 'leverage', 'coverage', 'ratios', 'adjusted', 'give', 'pro', 'forma', 'effect', 'transactions', 'occurred', 'december', '31', '2016', 'purposes', 'calculation', 'pro', 'forma', 'total', 'debt', 'pro', 'forma', 'net', 'debt', 'ii', 'january', '1', '2016', 'purpose', 'calculation', 'pro', 'forma', 'interest', 'expense', 'pro', 'forma', 'cash', 'cash', 'equivalents', 'adjusted', 'give', 'effect', 'estimated', 'cash', 'position', 'giving', 'effect', 'transactions', 'pro', 'forma', 'measures', 'not', 'financial', 'measures', 'defined', 'accordance', 'ifrs', 'may', 'not', 'comparable', 'similarly', 'titled', 'measures', 'used', 'companies', 'description', 'pro', 'forma', 'financial', 'information', 'see', 'summary', 'summary', 'historical', 'consolidated', 'financial', 'data', 'pro', 'forma', 'february', 'adjusted', 'ltm', 'ebitda', 'last', 'twelve', 'months', 'ended', 'february', '28', '2017', 'based', 'adjusted', 'february', 'ltm', 'ebitda', 'adjusted', 'give', 'effect', 'ebitda', 'contribution', 'value', 'orders', 'production', 'march', '1', '2017', 'may', '31', '2017', 'less', 'ebitda', 'comparable', 'period', '2016', 'however', 'values', 'estimates', 'based', 'management', 'accounts', 'may', 'different', 'anticipated', 'future', 'results', 'see', 'summary', 'summary', 'historical', 'consolidated', 'financial', 'data', 'information', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'pro', 'forma', 'financial', 'information', 'not', 'audited', 'reviewed', 'kpmg', 'llp', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'included', 'offering', 'memorandum', 'believe', 'provides', 'useful', 'measure', 'results', 'operations', 'however', 'information', 'not', 'constitute', 'measure', 'financial', 'performance', 'ifrs', 'not', 'considered', 'substitute', 'operating', 'income', 'net', 'income', 'cash', 'flow', 'financial', 'measures', 'computed', 'accordance', 'ifrs', 'measure', 'future', 'results', 'operations', 'liquidity', 'companies', 'not', 'calculate', 'financial', 'measures', 'manner', 'presentation', 'financial', 'measure', 'may', 'not', 'comparable', 'similarly', 'titled', 'measures', 'used', 'companies', 'unaudited', 'pro', 'forma', 'consolidated', 'financial', 'information', 'not', 'prepared', 'accordance', 'requirements', 'regulation', 'x', 'u', 'securities', 'act', 'prospectus', 'directive', 'generally', 'accepted', 'accounting', 'standards', 'unaudited', 'pro', 'forma', 'adjustments', 'based', 'upon', 'available', 'information', 'certain', 'assumptions', 'believe', 'reasonable', 'neither', 'assumptions', 'underlying', 'pro', 'forma', 'adjustments', 'nor', 'resulting', 'unaudited', 'pro', 'forma', 'combined', 'financial', 'information', 'audited', 'reviewed', 'accordance', 'generally', 'accepted', 'auditing', 'standards', 'xi', 'unaudited', 'pro', 'forma', 'consolidated', 'financial', 'information', 'provided', 'informational', 'purposes', 'results', 'indicated', 'certain', 'measures', 'may', 'not', 'realized', 'funds', 'depicted', 'certain', 'measures', 'may', 'not', 'available', 'management', 'discretionary', 'use', 'results', 'realized', 'unaudited', 'pro', 'forma', 'consolidated', 'financial', 'information', 'not', 'purport', 'indicate', 'future', 'consolidated', 'results', 'operations', 'cash', 'position', 'financial', 'position', 'future', 'date', 'actual', 'results', 'may', 'differ', 'significantly', 'reflected', 'unaudited', 'pro', 'forma', 'financial', 'information', 'number', 'reasons', 'including', 'not', 'limited', 'differences', 'assumptions', 'used', 'prepare', 'unaudited', 'pro', 'forma', 'financial', 'information', 'unaudited', 'pro', 'forma', 'consolidated', 'financial', 'information', 'informational', 'purposes', 'read', 'conjunction', 'information', 'contained', 'summary', 'summary', 'consolidated', 'historical', 'financial', 'data', 'selected', 'financial', 'information', 'management', 'discussion', 'analysis', 'financial', 'condition', 'results', 'operations', 'risk', 'factors', 'adjustments', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'presented', 'offering', 'memorandum', 'treated', 'caution', 'making', 'investment', 'decision', 'risk', 'factors', 'risks', 'relating', 'business', 'industry', 'order', 'book', 'not', 'necessarily', 'indicative', 'future', 'revenue', 'results', 'operations', 'financial', 'statements', 'included', 'offering', 'memorandum', 'order', 'book', 'offering', 'memorandum', 'also', 'includes', 'certain', 'information', 'relating', 'order', 'book', 'management', 'uses', 'order', 'book', 'models', 'including', 'special', 'projects', 'track', 'current', 'future', 'orders', 'assess', 'operating', 'performance', 'business', 'including', 'sales', 'revenue', 'well', 'expected', 'costs', 'although', 'management', 'uses', 'order', 'book', 'calculate', 'ebitda', 'adjustment', 'give', 'pro', 'forma', 'effect', 'ebitda', 'contribution', 'orders', 'production', 'recognize', 'revenue', 'orders', 'production', 'upon', 'delivery', 'car', 'various', 'reasons', 'could', 'delayed', 'not', 'occur', 'see', 'risk', 'factors', 'risks', 'relating', 'business', 'industry', 'order', 'book', 'not', 'necessarily', 'indicative', 'future', 'revenue', 'results', 'operations', 'risk', 'factors', 'risks', 'relating', 'business', 'industry', 'profitability', 'dependent', 'ability', 'secure', 'orders', 'special', 'edition', 'models', 'may', 'delayed', 'unable', 'deliver', 'models', 'applicable', 'timeframe', 'could', 'lead', 'incurrence', 'additional', 'costs', 'loss', 'profitability', 'damage', 'reputation', 'divide', 'order', 'book', 'orders', 'production', 'orders', 'not', 'yet', 'production', 'orders', 'production', 'orders', 'production', 'represents', 'fully', 'committed', 'orders', 'cars', 'customers', 'dealers', 'march', '1', '2017', 'scheduled', 'production', 'period', 'march', '1', '2017', 'may', '31', '2017', 'loaded', 'onto', 'internal', 'scheduling', 'system', 'orders', 'fully', 'specified', 'meaning', 'ordered', 'unit', 'specifications', 'trim', 'upholstery', 'colors', 'material', 'finishes', 'specified', 'customer', 'dealer', 'require', '12', 'weeks', 'minimum', 'satisfy', 'production', 'scheduling', 'order', 'orders', 'production', 'firm', 'orders', 'scheduled', 'supply', 'components', 'suppliers', 'begun', 'production', 'dealers', 'can', 'not', 'unilaterally', 'cancel', 'orders', 'not', 'yet', 'production', 'orders', 'not', 'yet', 'production', 'represents', 'orders', 'cars', 'customers', 'dealers', 'not', 'yet', 'fully', 'specified', 'details', 'trim', 'upholstery', 'color', 'materials', 'finish', 'still', 'need', 'specified', 'customer', 'dealer', 'can', 'not', 'yet', 'loaded', 'onto', 'internal', 'scheduling', 'system', 'therefore', 'production', 'not', 'yet', 'begun', 'march', '1', '2017', 'ii', 'fully', 'specified', 'orders', 'scheduled', 'begin', 'production', 'may', '31', '2017', 'additionally', 'not', 'yet', 'scheduled', 'relevant', 'supply', 'components', 'suppliers', 'order', 'designated', 'order', 'not', 'yet', 'production', 'orders', 'not', 'yet', 'production', 'cancellable', 'dealers', 'orders', 'not', 'yet', 'production', 'not', 'included', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'xii', 'neither', 'orders', 'production', 'nor', 'orders', 'not', 'yet', 'production', 'considered', 'alternatives', 'net', 'income', 'loss', 'operating', 'income', 'performance', 'measures', 'derived', 'accordance', 'ifrs', 'measures', 'operating', 'performance', 'operating', 'cash', 'flows', 'measures', 'liquidity', 'order', 'book', 'important', 'limitations', 'analytical', 'tools', 'figures', 'subject', 'change', 'not', 'consider', 'isolation', 'substitute', 'analysis', 'results', 'reported', 'ifrs', 'unforeseen', 'events', 'circumstances', 'including', 'example', 'termination', 'increased', 'time', 'requirements', 'complete', 'work', 'delays', 'commencing', 'work', 'impacts', 'currency', 'fluctuations', 'disruption', 'work', 'irrecoverable', 'cost', 'overruns', 'product', 'recalls', 'unforeseen', 'events', 'may', 'affect', 'ability', 'fulfil', 'orders', 'production', 'see', 'forwardlooking', 'statements', 'risk', 'factors', 'risks', 'related', 'business', 'industry', 'adjustments', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'presented', 'offering', 'memorandum', 'treated', 'caution', 'making', 'investment', 'decision', 'risk', 'factors', 'risks', 'relating', 'business', 'industry', 'order', 'book', 'not', 'necessarily', 'indicative', 'future', 'revenue', 'results', 'operations', 'xiii', 'market', 'industry', 'data', 'obtained', 'market', 'data', 'certain', 'industry', 'data', 'forecasts', 'included', 'offering', 'memorandum', 'internal', 'company', 'surveys', 'market', 'research', 'consultant', 'surveys', 'publicly', 'available', 'information', 'reports', 'governmental', 'agencies', 'industry', 'publications', 'surveys', 'bain', 'company', 'luxury', 'goods', 'worldwide', 'market', 'study', 'fall', 'winter', '2016', 'capgemini', 'financial', 'services', 'analysis', '2016', 'pwc', 'global', 'economy', 'watch', 'world', 'bank', 'data', 'sources', 'certain', 'data', 'document', 'industry', 'surveys', 'publications', 'consultant', 'surveys', 'forecasts', 'generally', 'state', 'information', 'contained', 'therein', 'obtained', 'sources', 'believed', 'reliable', 'accuracy', 'completeness', 'information', 'not', 'guaranteed', 'not', 'independently', 'verified', 'data', 'third', 'party', 'sources', 'nor', 'ascertained', 'underlying', 'economic', 'assumptions', 'relied', 'upon', 'therein', 'similarly', 'internal', 'surveys', 'industry', 'forecasts', 'market', 'research', 'believe', 'reliable', 'based', 'upon', 'management', 'knowledge', 'industry', 'not', 'independently', 'verified', 'statements', 'market', 'position', 'based', 'recently', 'available', 'data', 'not', 'aware', 'misstatements', 'regarding', 'industry', 'data', 'presented', 'herein', 'estimates', 'involve', 'risks', 'uncertainties', 'subject', 'change', 'based', 'various', 'factors', 'including', 'discussed', 'heading', 'risk', 'factors', 'appearing', 'elsewhere', 'offering', 'memorandum', 'xiv', 'exchange', 'rate', 'currency', 'information', 'unless', 'otherwise', 'indicated', 'references', 'offering', 'memorandum', 'sterling', 'pounds', 'sterling', 'gbp', 'lawful', 'currency', 'united', 'kingdom', 'references', 'u', 'dollars', 'dollars', 'u', 'lawful', 'currency', 'united', 'states', 'america', 'following', 'table', 'sets', 'forth', 'periods', 'set', 'forth', 'high', 'low', 'average', 'period', 'end', 'bloomberg', 'new', 'york', 'composite', 'rate', 'expressed', 'u', 'dollars', 'per', '1', '00', 'bloomberg', 'new', 'york', 'composite', 'rate', 'best', 'market', 'calculation', 'point', 'time', 'bid', 'rate', 'equal', 'highest', 'bid', 'rate', 'contributing', 'bank', 'indications', 'ask', 'rate', 'set', 'lowest', 'ask', 'rate', 'offered', 'banks', 'bloomberg', 'new', 'york', 'composite', 'rate', 'mid', 'value', 'rate', 'applied', 'highest', 'bid', 'rate', 'lowest', 'ask', 'rate', 'rates', 'may', 'differ', 'actual', 'rates', 'used', 'preparation', 'consolidated', 'financial', 'statements', 'financial', 'information', 'appearing', 'offering', 'memorandum', 'none', 'issuer', 'guarantors', 'initial', 'purchasers', 'represent', 'u', 'dollar', 'amounts', 'referred', 'could', 'could', 'converted', 'pounds', 'sterling', 'particular', 'rate', 'indicated', 'rate', 'average', 'rate', 'period', 'means', 'average', 'final', 'daily', 'bloomberg', 'new', 'york', 'composite', 'rates', 'period', 'bloomberg', 'composite', 'rate', 'pounds', 'sterling', 'march', '21', '2017', '1', '2478', 'per', '1', '00', 'u', 'dollar', 'per', '1', '00', 'year', '2012', '2013', '2014', '2015', '2016', 'month', 'september', '2016', 'october', '2016', 'november', '2016', 'december', '2016', 'january', '2017', 'february', '2017', 'march', '2017', 'march', '21', '2017', 'high', 'low', 'average', '1', 'period', 'end', '1', '6279', '1', '6556', '1', '7166', '1', '5881', '1', '4880', '1', '5317', '1', '4867', '1', '5517', '1', '4632', '1', '2123', '1', '5852', '1', '5649', '1', '6476', '1', '5285', '1', '3554', '1', '6248', '1', '6556', '1', '5578', '1', '4736', '1', '2357', 'high', 'low', 'average', '1', 'period', 'end', '1', '3439', '1', '2842', '1', '2593', '1', '2732', '1', '2633', '1', '2659', '1', '2478', '1', '2968', '1', '2123', '1', '2243', '1', '2225', '1', '2049', '1', '2381', '1', '2153', '1', '3149', '1', '2335', '1', '2442', '1', '2473', '1', '2354', '1', '2487', '1', '2282', '1', '2977', '1', '2244', '1', '2506', '1', '2357', '1', '2579', '1', '2381', '1', '2478', '1', 'average', 'final', 'exchange', 'rates', 'business', 'day', 'relevant', 'period', 'xv', 'forward', 'looking', 'statements', 'offering', 'memorandum', 'includes', 'forward', 'looking', 'statements', 'used', 'document', 'words', 'anticipate', 'believe', 'estimate', 'forecast', 'expect', 'intend', 'plan', 'project', 'similar', 'expressions', 'relate', 'us', 'management', 'third', 'parties', 'identify', 'forward', 'looking', 'statements', 'forward', 'looking', 'statements', 'include', 'statements', 'regarding', 'business', 'strategy', 'financial', 'condition', 'results', 'operations', 'market', 'data', 'well', 'statements', 'not', 'historical', 'facts', 'statements', 'reflect', 'beliefs', 'management', 'well', 'assumptions', 'made', 'management', 'information', 'currently', 'available', 'us', 'although', 'believe', 'beliefs', 'assumptions', 'reasonable', 'statements', 'subject', 'numerous', 'factors', 'risks', 'uncertainties', 'could', 'cause', 'actual', 'outcomes', 'results', 'materially', 'different', 'projected', 'factors', 'risks', 'uncertainties', 'expressly', 'qualify', 'subsequent', 'oral', 'written', 'forward', 'looking', 'statements', 'attributable', 'us', 'persons', 'acting', 'behalf', 'include', 'addition', 'listed', 'risk', 'factors', 'elsewhere', 'offering', 'memorandum', 'following', 'future', 'success', 'depends', 'continued', 'ability', 'introduce', 'next', 'generation', 'cars', 'require', 'significant', 'capital', 'expenditures', 'future', 'business', 'success', 'depends', 'ability', 'develop', 'attractive', 'products', 'tailored', 'customers', 'needs', 'tastes', 'future', 'business', 'success', 'depends', 'ability', 'maintain', 'high', 'quality', 'cars', 'brand', 'able', 'pass', 'cost', 'high', 'quality', 'customers', 'aston', 'martin', 'brand', 'could', 'damaged', 'weakened', 'demand', 'products', 'pricing', 'power', 'dependent', 'consumers', 'sentiment', 'purchasing', 'power', 'profitability', 'dependent', 'ability', 'secure', 'orders', 'special', 'edition', 'models', 'may', 'delayed', 'unable', 'deliver', 'models', 'applicable', 'timeframe', 'could', 'lead', 'incurrence', 'additional', 'costs', 'loss', 'profitability', 'damage', 'reputation', 'face', 'strong', 'competition', 'could', 'lead', 'significant', 'drop', 'unit', 'sales', 'price', 'deterioration', 'could', 'experience', 'significant', 'disruption', 'production', 'capabilities', 'result', 'dependence', 'limited', 'number', 'key', 'suppliers', 'particular', 'ford', 'daimler', 'business', 'seasonal', 'nature', 'substantial', 'decrease', 'sales', 'certain', 'quarters', 'could', 'material', 'adverse', 'impact', 'financial', 'performance', 'conditions', 'global', 'economy', 'may', 'adversely', 'affect', 'us', 'legal', 'political', 'economic', 'uncertainty', 'surrounding', 'planned', 'exit', 'united', 'kingdom', 'european', 'union', 'may', 'source', 'instability', 'international', 'markets', 'create', 'significant', 'currency', 'fluctuations', 'adversely', 'impact', 'current', 'trading', 'supply', 'arrangements', 'could', 'material', 'adverse', 'effect', 'business', 'results', 'operations', 'financial', 'condition', 'long', 'term', 'success', 'depends', 'attracting', 'retaining', 'key', 'management', 'personnel', 'failure', 'attract', 'retain', 'maintain', 'good', 'relationships', 'employees', 'may', 'adversely', 'affect', 'business', 'face', 'risks', 'arising', 'foreign', 'currency', 'exchange', 'rates', 'related', 'hedging', 'low', 'volume', 'strategy', 'may', 'limit', 'potential', 'profits', 'trend', 'towards', 'smaller', 'cars', 'engines', 'lower', 'engine', 'capacity', 'new', 'drive', 'technologies', 'could', 'negatively', 'impact', 'us', 'new', 'laws', 'regulations', 'policies', 'governmental', 'organizations', 'regarding', 'increased', 'fuel', 'economy', 'requirements', 'reduced', 'greenhouse', 'gas', 'pollutant', 'emissions', 'vehicle', 'safety', 'environmental', 'health', 'safety', 'laws', 'changes', 'existing', 'laws', 'may', 'significant', 'effect', 'business', 'xvi', 'effects', 'certain', 'vehicle', 'safety', 'regulations', 'may', 'adverse', 'impact', 'us', 'effects', 'certain', 'european', 'regulatory', 'changes', 'may', 'material', 'adverse', 'impact', 'us', 'exposed', 'risks', 'connection', 'product', 'related', 'guarantees', 'warranties', 'well', 'provision', 'voluntary', 'services', 'particular', 'relation', 'recall', 'campaigns', 'may', 'costly', 'harm', 'reputation', 'dependent', 'upon', 'dealers', 'sale', 'promotion', 'products', 'growth', 'strategy', 'exposes', 'us', 'risks', 'developments', 'emerging', 'markets', 'may', 'adversely', 'affect', 'business', 'currently', 'dependent', 'sole', 'manufacturing', 'facility', 'gaydon', 'united', 'kingdom', 'may', 'incur', 'unanticipated', 'costs', 'delays', 'launching', 'new', 'plant', 'st', 'athan', 'car', 'sales', 'depend', 'part', 'availability', 'affordable', 'financing', 'may', 'become', 'subject', 'risks', 'arising', 'legal', 'disputes', 'may', 'become', 'subject', 'government', 'investigations', 'changes', 'tax', 'tariff', 'fiscal', 'policies', 'could', 'adversely', 'affect', 'demand', 'products', 'may', 'not', 'succeed', 'adequately', 'protecting', 'intellectual', 'property', 'know', 'can', 'not', 'ruled', 'may', 'held', 'liable', 'infringement', 'third', 'party', 'intellectual', 'property', 'misappropriation', 'third', 'party', 'know', 'trade', 'secrets', 'may', 'dependent', 'upon', 'costly', 'use', 'third', 'party', 'intellectual', 'property', 'rely', 'confidential', 'know', 'trade', 'secrets', 'protect', 'intellectual', 'property', 'can', 'not', 'patented', 'depends', 'confidentiality', 'information', 'maintained', 'exposed', 'operational', 'risks', 'including', 'risks', 'connection', 'use', 'information', 'technology', 'may', 'lose', 'fail', 'maintain', 'licenses', 'permission', 'certifications', 'currently', 'use', 'import', 'products', 'markets', 'operate', 'number', 'pension', 'arrangements', 'including', 'uk', 'defined', 'benefit', 'pension', 'scheme', 'required', 'increase', 'contributions', 'fund', 'increase', 'cost', 'future', 'benefits', 'funding', 'shortfalls', 'pensions', 'regulator', 'united', 'kingdom', 'statutory', 'power', 'certain', 'circumstances', 'issue', 'contribution', 'notices', 'financial', 'support', 'directions', 'issued', 'could', 'result', 'significant', 'liabilities', 'arising', 'us', 'significant', 'shareholders', 'insurance', 'coverage', 'may', 'not', 'adequate', 'protect', 'us', 'potential', 'losses', 'may', 'subject', 'could', 'material', 'adverse', 'effect', 'business', 'adjustments', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'presented', 'offering', 'memorandum', 'treated', 'caution', 'making', 'investment', 'decision', 'order', 'book', 'not', 'necessarily', 'indicative', 'future', 'revenue', 'results', 'operations', 'business', 'model', 'based', 'availability', 'wholesale', 'finance', 'facility', 'involves', 'certain', 'liquidity', 'risks', 'loss', 'ability', 'draw', 'facility', 'credit', 'insurance', 'backing', 'could', 'adversely', 'affect', 'group', 'liquidity', 'therefore', 'material', 'adverse', 'effect', 'business', 'risks', 'related', 'indebtedness', 'notes', 'discussed', 'risk', 'factors', 'risks', 'related', 'indebtedness', 'notes', 'foregoing', 'factors', 'others', 'described', 'risk', 'factors', 'not', 'construed', 'exhaustive', 'not', 'assume', 'obligation', 'update', 'forward', 'looking', 'statements', 'disclaim', 'obligation', 'update', 'view', 'risks', 'uncertainties', 'described', 'herein', 'publicly', 'announce', 'result', 'revisions', 'forward', 'looking', 'statements', 'made', 'offering', 'memorandum', 'except', 'required', 'law', 'xvii', 'addition', 'offering', 'memorandum', 'contains', 'information', 'concerning', 'industry', 'market', 'business', 'segments', 'generally', 'forward', 'looking', 'nature', 'based', 'variety', 'assumptions', 'regarding', 'ways', 'industry', 'market', 'business', 'segments', 'develop', 'based', 'assumptions', 'information', 'currently', 'available', 'us', 'including', 'market', 'research', 'industry', 'reports', 'referred', 'offering', 'memorandum', 'although', 'believe', 'information', 'reliable', 'take', 'responsibility', 'correct', 'extraction', 'reproduction', 'information', 'not', 'independently', 'verified', 'can', 'not', 'guarantee', 'accuracy', 'completeness', 'one', 'assumptions', 'turn', 'incorrect', 'actual', 'market', 'results', 'may', 'differ', 'predicted', 'not', 'know', 'impact', 'differences', 'may', 'business', 'differences', 'could', 'material', 'adverse', 'effect', 'future', 'results', 'operations', 'financial', 'condition', 'trading', 'price', 'notes', 'use', 'terms', 'unless', 'otherwise', 'specified', 'context', 'requires', 'otherwise', 'offering', 'memorandum', 'references', 'agreed', 'security', 'principles', 'means', 'agreed', 'security', 'principles', 'set', 'schedule', 'new', 'revolving', 'credit', 'facility', 'agreement', 'applied', 'mutatis', 'mutandis', 'respect', 'notes', 'good', 'faith', 'issuer', 'american', 'inventory', 'funding', 'facility', 'inventory', 'funding', 'facility', 'entered', 'aml', 'standard', 'chartered', 'bank', 'march', '28', '2012', 'amended', 'pursuant', 'side', 'letters', 'dated', 'april', '19', '2013', 'april', '29', '2014', 'january', '16', '2015', 'april', '1', '2016', 'amended', 'issue', 'date', 'capital', 'aston', 'martin', 'capital', 'limited', 'holdings', 'aston', 'martin', 'holdings', 'uk', 'limited', 'not', 'subsidiaries', 'investments', 'aston', 'martin', 'investments', 'limited', 'not', 'subsidiaries', 'aml', 'aston', 'martin', 'lagonda', 'limited', 'not', 'subsidiaries', 'aml', 'group', 'ltd', 'aston', 'martin', 'lagonda', 'group', 'limited', 'not', 'subsidiaries', 'asia', 'pacific', 'australia', 'hong', 'kong', 'indonesia', 'japan', 'macau', 'malaysia', 'new', 'zealand', 'philippines', 'singapore', 'south', 'korea', 'taiwan', 'thailand', 'vietnam', 'chinese', 'inventory', 'funding', 'arrangements', 'four', 'inventory', 'funding', 'arrangements', 'two', 'entered', 'aston', 'martin', 'lagonda', 'china', 'automobile', 'distribution', 'co', 'ningbo', 'commerce', 'bank', 'one', 'china', 'guangfa', 'bank', 'one', 'union', 'leatop', 'financial', 'leasing', 'ltd', 'collateral', 'subject', 'agreed', 'security', 'principles', 'limited', 'recourse', 'firstpriority', 'security', 'interest', 'english', 'law', 'granted', 'holdings', 'issued', 'capital', 'stock', 'company', 'ii', 'first', 'priority', 'security', 'interest', 'jersey', 'law', 'security', 'interest', 'agreement', 'granted', 'company', 'issued', 'share', 'capital', 'issuer', 'iii', 'first', 'priority', 'security', 'interest', 'jersey', 'law', 'security', 'interest', 'agreement', 'granted', 'issuer', 'issued', 'share', 'capital', 'capital', 'iv', 'first', 'priority', 'security', 'interest', 'english', 'law', 'debenture', 'referred', 'ix', 'definition', 'granted', 'company', 'issued', 'capital', 'stock', 'aml', 'group', 'limited', 'v', 'first', 'priority', 'security', 'interest', 'english', 'law', 'debenture', 'referred', 'ix', 'definition', 'granted', 'aml', 'group', 'limited', 'issued', 'capital', 'stock', 'aml', 'vi', 'first', 'priority', 'security', 'interest', 'new', 'york', 'law', 'granted', 'aml', 'group', 'limited', 'issued', 'capital', 'stock', 'aston', 'martin', 'lagonda', 'north', 'america', 'inc', 'vii', 'first', 'priority', 'assignment', 'governed', 'english', 'law', 'issuer', 'rights', 'notes', 'proceeds', 'loan', 'viii', 'extent', 'still', 'outstanding', 'first', 'priority', 'assignment', 'governed', 'english', 'law', 'capital', 'rights', 'existing', 'notes', 'proceeds', 'loan', 'ix', 'english', 'law', 'debenture', 'creating', 'fixed', 'floating', 'security', 'material', 'operating', 'bank', 'accounts', 'material', 'intercompany', 'receivables', 'material', 'intellectual', 'property', 'shares', 'guarantors', 'certain', 'material', 'companies', 'company', 'aml', 'group', 'limited', 'aml', 'xviii', 'derivative', 'variation', 'existing', 'model', 'suite', 'upgrades', 'engine', 'chassis', 'design', 'interior', 'lighting', 'upgrade', 'casings', 'center', 'console', 'door', 'dollar', 'notes', 'million', 'aggregate', 'principal', 'amount', 'issuer', 'senior', 'secured', 'notes', 'due', '2022', 'offered', 'hereby', 'dollar', 'notes', 'initial', 'purchasers', 'collectively', 'j', 'p', 'morgan', 'securities', 'llc', 'deutsche', 'bank', 'securities', 'inc', 'goldman', 'sachs', 'international', 'merrill', 'lynch', 'international', 'hsbc', 'bank', 'plc', 'morgan', 'stanley', 'co', 'international', 'plc', 'standard', 'chartered', 'bank', 'unicredit', 'bank', 'ag', 'eea', 'european', 'economic', 'area', 'eu', 'european', 'union', 'existing', 'notes', '304', '000', '000', '9', '25', 'senior', 'secured', 'notes', 'due', '2018', 'issued', 'capital', 'existing', 'pik', 'notes', '165', '000', '000', '10', '25', 'senior', 'subordinated', 'pik', 'notes', 'due', '2018', 'issued', 'holdings', 'existing', 'notes', 'proceeds', 'loan', 'approximately', '150', '1', 'million', 'december', '31', '2016', 'debt', 'due', 'holdings', 'capital', 'remain', 'outstanding', 'issue', 'date', 'obligation', 'not', 'accrue', 'cash', 'interest', 'existing', 'revolving', 'credit', 'facility', '40', '000', '000', 'revolving', 'credit', 'facility', 'initially', 'entered', 'june', '21', '2011', 'amended', 'restated', 'time', 'time', 'among', 'inter', 'alios', 'aston', 'martin', 'lagonda', 'limited', 'borrower', 'guarantor', 'aston', 'martin', 'capital', 'limited', 'aston', 'martin', 'holdings', 'uk', 'limited', 'aston', 'martin', 'investments', 'limited', 'aston', 'martin', 'lagonda', 'group', 'limited', 'aston', 'martin', 'lagonda', 'limited', 'guarantors', 'deutsche', 'bank', 'ag', 'london', 'branch', 'agent', 'security', 'agent', 'guarantee', 'fee', 'agreement', 'agreement', 'certain', 'representatives', 'government', 'wales', 'aml', 'holdings', 'dated', 'december', '8', '2016', 'pursuant', 'agreed', 'pay', 'government', 'wales', 'fee', 'connection', 'guarantee', 'certain', 'obligations', 'respect', 'occupation', 'premises', 'st', 'athan', 'plant', 'housed', 'guarantees', 'unconditional', 'guarantees', 'notes', 'initially', 'provided', 'guarantors', 'pursuant', 'indenture', 'guarantors', 'company', 'aml', 'group', 'ltd', 'aml', 'capital', 'hls', 'high', 'luxury', 'sports', 'segment', 'automotive', 'industry', 'hnwi', 'high', 'net', 'worth', 'individuals', 'typically', 'defined', 'individuals', 'investable', 'assets', 'financial', 'assets', 'not', 'including', 'primary', 'residence', 'collectibles', 'consumables', 'consumer', 'durables', 'excess', '1', 'million', 'ifrs', 'international', 'financial', 'reporting', 'standards', 'adopted', 'eu', 'indenture', 'indenture', 'governing', 'terms', 'notes', 'among', 'issuer', 'guarantors', 'u', 'bank', 'trustees', 'limited', 'trustee', 'security', 'agent', 'dated', 'date', 'issuance', 'notes', 'initial', 'purchasers', 'collectively', 'dollar', 'notes', 'initial', 'purchasers', 'sterling', 'notes', 'initial', 'purchasers', 'intercreditor', 'agreement', 'intercreditor', 'agreement', 'dated', 'date', 'offering', 'memorandum', 'among', 'issuer', 'guarantors', 'u', 'bank', 'trustees', 'limited', 'security', 'agent', 'lenders', 'new', 'revolving', 'credit', 'facility', 'trustee', 'accede', 'issue', 'date', 'inventory', 'funding', 'facilities', 'american', 'inventory', 'funding', 'facility', 'chinese', 'inventory', 'funding', 'arrangements', 'xix', 'issue', 'date', 'date', 'notes', 'issued', 'issuer', 'aston', 'martin', 'capital', 'holdings', 'limited', 'wholly', 'owned', 'subsidiary', 'company', 'incorporated', 'laws', 'jersey', 'public', 'limited', 'company', 'new', 'revolving', 'credit', 'facility', '80', '000', '000', 'revolving', 'credit', 'facility', 'initially', 'entered', 'entered', 'date', 'offering', 'memorandum', 'amended', 'restated', 'time', 'time', 'among', 'inter', 'alios', 'aml', 'borrower', 'guarantor', 'company', 'parent', 'original', 'guarantor', 'issuer', 'capital', 'aml', 'group', 'ltd', 'original', 'guarantors', 'j', 'p', 'morgan', 'limited', 'deutsche', 'bank', 'ag', 'london', 'branch', 'goldman', 'sachs', 'bank', 'usa', 'lead', 'arrangers', 'jpmorgan', 'chase', 'bank', 'n', 'london', 'branch', 'goldman', 'sachs', 'bank', 'usa', 'deutsche', 'bank', 'ag', 'london', 'branch', 'morgan', 'stanley', 'senior', 'funding', 'inc', 'hsbc', 'bank', 'plc', 'unicredit', 'bank', 'ag', 'london', 'branch', 'standard', 'chartered', 'bank', 'bank', 'america', 'merrill', 'lynch', 'international', 'limited', 'original', 'lenders', 'elavon', 'financial', 'services', 'dac', 'uk', 'branch', 'facility', 'agent', 'u', 'bank', 'trustees', 'limited', 'security', 'agent', 'notes', 'dollar', 'notes', 'sterling', 'notes', 'notes', 'proceeds', 'loan', 'subordinated', 'intercompany', 'loan', 'issuer', 'lender', 'aml', 'borrower', 'dated', 'issue', 'date', 'whereby', 'gross', 'proceeds', 'offering', 'notes', 'lent', 'aml', 'order', 'book', 'order', 'book', 'divide', 'orders', 'production', 'orders', 'not', 'yet', 'production', 'management', 'uses', 'evaluate', 'current', 'performance', 'business', 'described', 'presentation', 'financial', 'information', 'order', 'book', 'orders', 'production', 'fully', 'committed', 'orders', 'cars', 'customers', 'dealers', 'march', '1', '2017', 'scheduled', 'production', 'period', 'march', '1', '2017', 'may', '31', '2017', 'loaded', 'internal', 'scheduling', 'system', 'orders', 'fully', 'specified', 'meaning', 'ordered', 'unit', 'specifications', 'trim', 'upholstery', 'colors', 'material', 'finishes', 'specified', 'customer', 'dealer', 'require', '12', 'weeks', 'minimum', 'satisfy', 'production', 'scheduling', 'order', 'orders', 'production', 'firm', 'orders', 'scheduled', 'supply', 'components', 'suppliers', 'begun', 'production', 'dealers', 'can', 'not', 'unilaterally', 'cancel', 'orders', 'not', 'yet', 'production', 'orders', 'cars', 'customers', 'dealers', 'not', 'yet', 'fully', 'specified', 'details', 'trim', 'upholstery', 'color', 'materials', 'finish', 'still', 'need', 'specified', 'customer', 'dealer', 'can', 'not', 'yet', 'loaded', 'onto', 'internal', 'scheduling', 'system', 'therefore', 'production', 'not', 'yet', 'begun', 'march', '1', '2017', 'ii', 'specified', 'orders', 'scheduled', 'begin', 'production', 'may', '31', '2017', 'additionally', 'not', 'yet', 'scheduled', 'relevant', 'supply', 'components', 'suppliers', 'order', 'designated', 'order', 'not', 'yet', 'production', 'orders', 'not', 'yet', 'production', 'cancellable', 'dealers', 'not', 'counted', 'toward', 'adjustments', 'give', 'pro', 'forma', 'effect', 'ebitda', 'preference', 'shares', 'preference', 'shares', 'issued', 'holdings', 'certain', 'allotted', 'april', '29', '2015', 'remaining', 'preference', 'shares', 'allotted', 'april', '15', '2016', 'qualified', 'marketing', 'lead', 'potential', 'customers', 'shown', 'interest', 'buying', 'one', 'cars', 'either', 'visiting', 'dealership', 'inquiring', 'phone', 'email', 'financial', 'means', 'complete', 'purchase', 'refinancing', 'issuance', 'issuer', '530', '0', 'million', 'equivalent', 'aggregate', 'principal', 'amount', 'notes', 'offered', 'hereby', 'contribution', 'issuer', 'proceeds', 'notes', 'subordinated', 'intercompany', 'loan', 'aml', 'pursuant', 'notes', 'proceeds', 'loan', 'turn', 'aml', 'use', 'redeem', 'existing', 'notes', 'behalf', 'capital', 'ii', 'redeem', 'existing', 'pik', 'notes', 'behalf', 'holdings', 'iii', 'pay', 'commissions', 'fees', 'expenses', 'associated', 'transactions', 'well', 'fee', 'expected', 'paid', 'holders', 'preference', 'shares', 'relating', 'certain', 'proposed', 'amendments', 'terms', 'preference', 'shares', 'iv', 'general', 'corporate', 'purposes', 'including', 'working', 'capital', 'xx', 'repayment', 'extent', 'applicable', 'cancellation', 'existing', 'revolving', 'credit', 'facility', 'entrance', 'new', 'revolving', 'credit', 'facility', 'agreement', 'restricted', 'group', 'company', 'subsidiaries', 'subject', 'indenture', 'issue', 'date', 'excludes', 'subsidiaries', 'identified', 'later', 'company', 'unrestricted', 'subsidiary', 'reorganization', 'formation', 'issuer', 'newly', 'formed', 'wholly', 'owned', 'direct', 'subsidiary', 'company', 'immediately', 'following', 'redemption', 'existing', 'notes', 'transfer', 'holdings', 'entire', 'share', 'capital', 'capital', 'company', 'exchange', 'issuance', 'shares', 'company', 'holdings', 'subsequent', 'transfer', 'company', 'entire', 'share', 'capital', 'capital', 'issuer', 'exchange', 'issuance', 'shares', 'issuer', 'company', 'sterling', 'notes', 'million', 'aggregate', 'principal', 'amount', 'issuer', 'senior', 'secured', 'notes', 'due', '2022', 'offered', 'hereby', 'sterling', 'notes', 'initial', 'purchasers', 'collectively', 'j', 'p', 'morgan', 'securities', 'plc', 'deutsche', 'bank', 'ag', 'london', 'branch', 'goldman', 'sachs', 'international', 'merrill', 'lynch', 'international', 'hsbc', 'bank', 'plc', 'morgan', 'stanley', 'co', 'international', 'plc', 'standard', 'chartered', 'bank', 'unicredit', 'bank', 'ag', 'transactions', 'refinancing', 'reorganization', 'wholesale', 'finance', 'facility', 'trade', 'finance', 'facility', 'agreement', 'aston', 'martin', 'lagonda', 'limited', 'aston', 'martin', 'lagonda', 'north', 'america', 'inc', 'standard', 'chartered', 'bank', 'dated', 'may', '31', '2007', 'amended', 'time', 'time', 'addition', 'terms', 'defined', 'terms', 'company', 'group', 'us', 'aston', 'martin', 'similar', 'terms', 'refer', 'investments', 'direct', 'indirect', 'subsidiaries', 'except', 'otherwise', 'indicated', 'context', 'otherwise', 'requires', 'immediately', 'following', 'redemption', 'existing', 'notes', 'holdings', 'not', 'part', 'restricted', 'group', 'xxi', 'summary', 'summary', 'highlights', 'information', 'contained', 'elsewhere', 'offering', 'memorandum', 'information', 'set', 'forth', 'summary', 'not', 'contain', 'information', 'consider', 'making', 'investment', 'decision', 'carefully', 'read', 'entire', 'offering', 'memorandum', 'including', 'section', 'risk', 'factors', 'consolidated', 'financial', 'statements', 'related', 'notes', 'making', 'investment', 'decision', 'summary', 'contains', 'forwardlooking', 'statements', 'contain', 'risks', 'uncertainties', 'actual', 'results', 'may', 'differ', 'significantly', 'future', 'results', 'result', 'factors', 'set', 'forth', 'risk', 'factors', 'forwardlooking', 'statements', 'unless', 'context', 'otherwise', 'requires', 'references', 'herein', 'us', 'company', 'aston', 'martin', 'aston', 'martin', 'holdings', 'uk', 'limited', 'consolidated', 'subsidiaries', 'aston', 'martin', 'investments', 'limited', 'consolidated', 'subsidiaries', 'company', 'aston', 'martin', 'brand', 'one', 'world', 'iconic', 'leading', 'luxury', 'brands', 'focused', 'design', 'engineering', 'manufacturing', 'luxury', 'sports', 'cars', 'brand', 'history', '100', 'years', 'symbolizes', 'luxury', 'exclusivity', 'elegance', 'power', 'beauty', 'sophistication', 'innovation', 'performance', 'exceptional', 'standard', 'styling', 'design', 'believe', 'rich', 'prestigious', 'heritage', 'defines', 'aston', 'martin', 'something', 'truly', 'unique', 'within', 'automotive', 'industry', 'cars', 'solely', 'address', 'high', 'luxury', 'sports', 'hls', 'segment', 'believe', 'epitome', 'performance', 'luxury', 'styling', 'current', 'core', 'model', 'line', 'comprises', 'five', 'core', 'models', 'including', 'two', 'sports', 'cars', 'v8', 'vantage', 'v12', 'vantage', 'one', 'grand', 'tourer', 'new', 'db11', 'one', 'four', 'door', 'four', 'seat', 'sports', 'coupe', 'rapide', 'one', 'super', 'car', 'vanquish', 'models', 'available', 'different', 'model', 'types', 'well', 'coupe', 'convertible', 'models', 'also', 'regularly', 'develop', 'produce', 'special', 'edition', 'niche', 'models', 'vantage', 'gt12', 'aston', 'martin', 'vulcan', 'lagonda', 'taraf', 'vanquish', 'zagato', 'new', 'hyper', 'car', 'aston', 'martin', 'valkyrie', '2015', 'introduced', 'new', 'second', 'century', 'plan', 'based', 'three', 'key', 'principles', 'one', 'two', 'new', 'core', 'models', 'derivatives', 'per', 'year', 'promoting', 'self', 'funding', 'business', 'diversifying', 'portfolio', 'products', 'cover', 'sports', 'cars', 'sedans', 'sports', 'utility', 'vehicles', 'suv', 'three', 'pillar', 'strategy', 'plan', 'four', 'phases', 'business', 'stabilization', 'core', 'strengthening', 'expansion', 'products', 'portfolio', 'culminating', 'final', 'phase', 'solidify', 'position', 'self', 'sustaining', 'luxury', 'business', 'begun', 'transition', 'phase', 'two', 'phase', 'three', 'plan', 'following', 'successful', 'introduction', 'db11', 'recent', 'unveiling', 'aston', 'martin', 'valkyrie', 'also', 'made', 'significant', 'progress', 'plans', 'expand', 'diversify', 'product', 'line', 'finalizing', 'acquisition', 'st', 'athan', 'wales', 'manufacturing', 'site', 'dbx', 'first', 'suv', 'made', 'adoption', 'second', 'century', 'plan', 'based', 'strategy', 'introduce', 'one', 'two', 'new', 'core', 'models', 'derivatives', 'every', 'year', 'next', 'seven', 'years', 'drive', 'highly', 'profitable', 'growth', 'manage', 'cash', 'flow', 'introduced', 'db11', 'fall', '2016', 'launch', 'db11', 'marked', 'start', 'new', 'chapter', 'aston', 'martin', 'inflection', 'point', 'business', 'march', '1', '2017', 'combined', 'sales', 'total', 'orders', '2', '462', 'db11', 'cars', '1', '371', 'sold', 'end', 'february', '2017', '993', 'constitute', 'orders', 'production', 'date', 'year', 'ended', 'december', '31', '2016', 'sold', '3', '687', 'cars', '1', '005', 'db11', 'cars', 'product', 'development', 'team', 'comprised', '747', 'designers', 'engineers', 'technicians', 'covering', 'almost', 'aspects', 'new', 'car', 'planning', 'design', 'development', 'products', 'design', 'resulted', 'numerous', 'awards', 'including', 'recently', 'car', 'design', 'year', '2016', 'salone', 'dell', 'auto', 'sports', 'car', 'year', '2016', 'autonis', 't3', 'design', 'year', '2016', 'db11', 'best', 'car', '2016', 'auto', 'motor', 'und', 'sport', 'vanquish', 'best', 'car', '2014', 'auto', 'motor', 'und', 'sport', 'rapide', 'production', 'facility', 'located', 'gaydon', 'united', 'kingdom', 'uk', 'gaydon', 'facility', 'opened', '2003', 'developed', 'specific', 'needs', 'aston', 'martin', 'believe', 'one', 'europe', 'modern', 'automotive', 'manufacturing', 'facilities', 'one', 'advanced', '1', 'manufacturing', 'facilities', 'hls', 'segment', 'design', 'activities', 'centered', 'gaydon', 'ensuring', 'maximum', 'efficiency', 'ease', 'oversight', 'promotion', 'harmony', 'design', 'teams', 'engineers', 'technicians', 'addition', 'currently', 'building', 'new', 'plant', 'wales', 'uk', 'future', 'production', 'suvs', 'anticipate', 'begin', 'full', 'production', '2019', 'december', '31', '2016', 'employed', '1', '594', 'employees', '727', 'contractors', 'sell', 'cars', 'global', 'dealer', 'network', '165', 'dealers', 'december', '31', '2016', 'allows', 'us', 'benefit', 'geographical', 'diversification', 'revenues', 'access', 'high', 'growth', 'markets', 'divide', 'markets', 'following', 'regions', 'europe', 'uk', 'south', 'africa', 'americas', 'china', 'asia', 'pacific', 'middle', 'east', 'north', 'africa', 'following', 'chart', 'represents', 'revenue', 'geography', 'year', 'ended', 'december', '31', '2016', 'revenue', 'geography', '1', 'middle', 'east', 'north', 'africa', '4', '5', '1', 'asia', 'pacific', '5', '13', 'americas', '2', '22', '2', 'china', '7', '3', 'europe', '3', '22', '1', 'united', 'kingdom', 'south', 'africa', '30', '3', '1', 'revenue', 'geography', 'based', 'location', 'dealer', 'sell', 'cars', '2', 'americas', 'consists', 'brazil', 'canada', 'chile', 'mexico', 'peru', 'united', 'states', '3', 'europe', 'excludes', 'united', 'kingdom', '4', 'middle', 'east', 'north', 'africa', 'consists', 'azerbaijan', 'bahrain', 'egypt', 'kuwait', 'india', 'israel', 'jordan', 'lebanon', 'oman', 'qatar', 'saudi', 'arabia', 'turkey', '5', 'asia', 'pacific', 'consists', 'australia', 'hong', 'kong', 'indonesia', 'japan', 'macau', 'malaysia', 'new', 'zealand', 'philippines', 'singapore', 'south', 'korea', 'taiwan', 'thailand', 'vietnam', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'twelve', 'months', 'ended', 'february', '28', '2017', 'would', '161', '0', 'million', 'ebitda', 'year', 'ended', 'december', '31', '2016', '100', '9', 'million', 'strengths', 'believe', 'following', 'key', 'competitive', 'strengths', 'help', 'us', 'realize', 'strategic', 'goals', 'reinforce', 'competitive', 'position', 'quintessential', 'luxury', 'brand', 'believe', 'aston', 'martin', 'brand', 'one', 'globally', 'recognized', 'luxury', 'brands', 'leader', 'luxury', 'sports', 'cars', 'segment', 'strong', 'heritage', 'global', 'recognition', 'aston', 'martin', 'brand', 'enabled', 'us', 'achieve', 'market', 'position', 'place', 'us', 'competitive', 'class', 'exceptional', 'brand', 'authority', 'aston', 'martin', 'brand', 'internationally', 'recognized', 'iconic', 'beautiful', 'design', 'luxury', 'experience', 'associated', 'meticulously', 'crafted', 'products', 'founded', '1913', 'aston', '2', 'martin', 'long', 'tradition', 'exceptional', 'design', 'engineering', 'manufacturing', 'luxury', 'sports', 'cars', 'sedans', 'addition', 'racing', 'pedigree', 'includes', 'motorsport', 'debut', 'french', 'grand', 'prix', '1923', 'well', 'dbr1', 'famous', 'le', 'mans', '24', 'hour', 'race', 'victory', '1959', 'inspired', 'various', 'aston', 'martin', 'models', 'last', 'hundred', 'years', 'aston', 'martin', 'recognized', 'elegant', 'sophisticated', 'british', 'style', 'iconic', 'db5', 'introduced', '1964', 'james', 'bond', 'film', 'goldfinger', 'newest', 'db', 'model', 'award', 'winning', 'db11', 'long', 'established', 'strong', 'player', 'within', 'segment', 'brand', 'exclusive', 'understated', 'elegantly', 'styled', 'yet', 'aston', 'martin', 'product', 'remains', 'visible', 'sought', 'including', 'legacy', 'models', 'typically', 'command', 'high', 'resale', 'prices', 'today', 'perpetuate', 'exclusive', 'brand', 'image', 'pairing', 'power', 'performance', 'refinement', 'style', 'cars', 'well', 'comprehensive', 'brand', 'management', 'effective', 'public', 'relations', 'including', 'high', 'end', 'dealer', 'showrooms', 'customers', 'able', 'experience', 'emotional', 'link', 'brand', 'design', 'performance', 'quality', 'ensure', 'experience', 'high', 'class', 'unique', 'experience', 'emotional', 'connection', 'driver', 'car', 'furthered', 'newly', 'relaunched', 'q', 'aston', 'martin', 'program', 'whereby', 'customer', 'work', 'award', 'winning', 'design', 'team', 'completely', 'customize', 'aston', 'martin', 'adding', 'personalized', 'distinctive', 'touches', 'link', 'customers', 'products', 'also', 'enabled', 'us', 'build', 'loyal', 'consumer', 'base', 'continue', 'cater', 'loyal', 'customers', 'benefit', 'exclusive', 'offers', 'opportunities', 'example', '150', 'road', 'going', 'models', 'aston', 'martin', 'valkyrie', 'largely', 'allocated', 'existing', 'aston', 'martin', 'car', 'owners', 'future', 'special', 'edition', 'models', 'expect', 'primarily', 'target', 'existing', 'aston', 'martin', 'car', 'owners', 'continual', 'advances', 'automotive', 'performance', 'innovation', 'styling', 'design', 'resulted', 'proud', 'heritage', 'prestige', 'luxury', 'quality', 'beauty', 'materially', 'contributed', 'financial', 'success', 'proven', 'pricing', 'power', 'value', 'resilience', 'result', 'aston', 'martin', 'brand', 'strength', 'past', 'present', 'proven', 'pricing', 'power', 'value', 'resilience', 'customers', 'purchase', 'products', 'variety', 'reasons', 'purchasing', 'decisions', 'primarily', 'based', 'emotive', 'factors', 'design', 'performance', 'quality', 'able', 'increase', 'average', 'selling', 'prices', 'core', 'models', '96', '2007', '2016', 'mainly', 'due', 'strategic', 'introduction', 'new', 'core', 'models', 'enhanced', 'versions', 'existing', 'models', 'capitalize', 'emotive', 'factors', 'product', 'launches', 'whether', 'new', 'models', 'derivatives', 'generally', 'met', 'enthusiastically', 'demand', 'outpacing', 'production', 'year', 'launch', 'limited', 'production', 'enhanced', 'versions', 'existing', 'models', 'promotes', 'exclusivity', 'brand', 'image', 'allows', 'us', 'raise', 'price', 'points', 'cars', 'enhanced', 'features', 'increase', 'price', 'existing', 'models', 'example', 'road', 'going', 'version', 'newly', 'unveiled', 'aston', 'martin', 'valkyrie', 'latest', 'special', 'edition', 'model', 'fully', 'sold', 'shortly', 'launch', 'despite', 'customer', 'selection', 'price', 'deposit', 'requirements', 'cars', 'also', 'maintain', 'values', 'often', 'command', 'collector', 'premiums', 'strength', 'brand', 'beautiful', 'innovative', 'design', 'products', 'pricing', 'power', 'resilient', 'even', 'economic', 'downturns', 'demonstrates', 'leadership', 'luxury', 'sports', 'car', 'segment', 'global', 'access', 'fast', 'growing', 'wealth', 'creation', 'market', 'sell', 'vehicles', 'global', 'sales', 'distribution', 'network', 'designed', 'achieve', 'geographically', 'diversified', 'sales', 'facilitate', 'growth', 'key', 'markets', 'including', 'asia', 'pacific', 'region', 'china', 'north', 'america', 'middle', 'east', 'europe', 'united', 'kingdom', 'past', '16', 'years', 'dealer', 'network', 'undergone', 'extensive', 'expansion', 'grown', '61', 'dealerships', '19', 'countries', '2000', '165', 'dealers', '52', 'countries', '2016', 'aston', 'martin', 'well', 'positioned', 'within', 'hls', 'segment', 'automotive', 'market', 'experienced', 'significant', 'growth', 'due', 'sustained', 'growth', 'number', 'wealth', 'high', 'net', 'worth', 'individuals', 'hnwi', 'hnwi', 'wealth', 'nearly', 'tripled', 'last', 'decade', 'growth', 'number', 'wealth', 'hnwi', 'positively', 'correlated', 'growth', 'potential', 'clientele', 'stand', 'greatly', 'benefit', 'large', 'diversified', 'global', 'dealer', 'network', 'dealers', 'well', 'positioned', 'attractive', 'key', 'growth', 'markets', 'provide', 'us', 'critical', 'resources', 'help', 'us', 'take', 'advantage', 'trend', 'establish', 'aston', 'martin', 'brand', '3', 'unique', 'design', 'engineering', 'capabilities', 'advanced', 'technology', 'state', 'art', 'facility', 'consistently', 'develop', 'manufacture', 'luxury', 'vehicles', 'believe', 'seamlessly', 'combine', 'customers', 'demands', 'technologically', 'advanced', 'cars', 'maintaining', 'traditional', 'style', 'beauty', 'essence', 'aston', 'martin', 'brand', 'creators', 'beautiful', 'cars', 'business', 'supported', 'award', 'winning', 'design', 'capabilities', 'distinctive', 'model', 'line', 'ups', 'product', 'development', 'design', 'team', '747', 'designers', 'engineers', 'several', 'prestigious', 'design', 'awards', 'car', 'design', 'year', '2016', 'salone', 'dell', 'auto', 't3', 'design', 'year', '2016', 'db11', 'product', 'launch', 'able', 'showcase', 'evolving', 'style', 'influenced', 'changing', 'tastes', 'demands', 'consumer', 'base', 'maintaining', 'elements', 'design', 'historically', 'defined', 'continue', 'define', 'aston', 'martin', 'introduction', 'db11', 'prime', 'example', 'ability', 'successfully', 'introduce', 'aston', 'martin', 'car', 'distinctively', 'new', 'yet', 'unequivocally', 'aston', 'martin', 'design', 'products', 'beautifully', 'designed', 'crafted', 'embodying', 'elements', 'sophistication', 'elegance', 'proudly', 'hold', 'brand', 'incredibly', 'high', 'standard', 'order', 'cars', 'earn', 'iconic', 'aston', 'martin', 'wings', 'must', 'undergo', 'final', '175', 'point', 'inspection', 'concludes', 'inspector', 'name', 'stamped', 'engine', 'bay', 'mark', 'quality', 'aston', 'martin', 'wings', 'affixed', 'beautifully', 'crafted', 'cars', 'world', 'class', 'technical', 'capabilities', 'used', 'modular', 'architecture', 'basis', 'models', '12', 'years', 'starting', 'db9', '2004', 'introduction', 'db11', 'revitalised', 'product', 'portfolio', 'introduced', 'new', 'modular', 'architecture', 'including', 'revised', 'aluminum', 'body', 'structure', 'electrical', 'electronic', 'architecture', 'infotainment', 'system', 'efficient', 'v12', 'engine', 'signifying', 'next', 'step', 'implementation', 'second', 'century', 'plan', 'updated', 'advanced', 'world', 'class', 'modular', 'architecture', 'backbone', 'product', 'portfolio', 'employs', 'carry', 'carry', 'across', 'principle', 'key', 'systems', 'components', 'reduce', 'engineering', 'cost', 'complexity', 'following', 'models', 'invested', 'significantly', 'modular', 'architecture', 'db11', 'intend', 'develop', 'future', 'models', 'based', 'architecture', 'highly', 'flexible', 'modular', 'architecture', 'allows', 'high', 'degree', 'product', 'differentiation', 'enables', 'us', 'easily', 'adapt', 'production', 'new', 'models', 'thereby', 'reducing', 'production', 'development', 'costs', 'incremental', 'models', 'based', 'architecture', 'reduced', 'carbon', 'dioxide', 'co2', 'output', 'european', 'fleet', '30', 'last', 'sixteen', 'years', '470', 'g', 'km', '312', 'g', 'km', 'introduction', 'improved', 'materials', 'technologies', 'including', 'lightweight', 'bonded', 'aluminum', 'body', 'structure', 'efficient', 'engines', 'transmissions', 'use', 'composite', 'carbon', 'fiber', 'panels', 'lightweight', 'components', 'targeting', 'reductions', '285', 'g', 'km', '2021', 'example', 'ongoing', 'improvements', 'past', 'decade', '2006', 'final', 'db9', 'model', '2016', 'reduced', 'co2', 'emissions', 'db9', '23', 'increasing', 'power', 'output', '20', 'utilized', 'added', 'efficiency', 'developing', 'db11', 'db9', 'replacement', '18', 'efficient', 'predecessor', 'similarly', 'since', 'launch', 'v8', 'vantage', 'model', '2005', 'reduced', 'co2', 'emissions', '27', 'enhancing', 'competitiveness', 'power', 'increase', '13', 'believe', 'bonded', 'aluminium', 'body', 'structure', 'use', 'lightweight', 'materials', 'including', 'carbon', 'fiber', 'certain', 'models', 'modular', 'approach', 'combined', 'recent', 'continuing', 'efforts', 'maintain', 'performance', 'decreasing', 'emissions', 'demonstrates', 'valuable', 'industry', 'leading', 'capabilities', 'highly', 'scalable', 'efficient', 'manufacturing', 'capabilities', 'state', 'art', 'facility', 'gaydon', 'facility', 'houses', 'manufacturing', 'facility', 'design', 'team', 'senior', 'management', 'adding', 'element', 'collaboration', 'would', 'not', 'expected', 'largeproduction', 'manufacturing', 'facilities', 'opened', '2003', 'highly', 'modern', 'advanced', '4', 'manufacturing', 'facility', 'result', 'investments', 'gaydon', 'created', 'factory', 'fundamental', 'infrastructure', 'support', 'flexible', 'production', 'capacity', 'able', 'expand', 'production', 'limited', 'additional', 'investment', 'flexibility', 'enabled', 'us', 'lower', 'costs', 'periods', 'economic', 'uncertainty', 'declining', 'sales', 'also', 'permitted', 'us', 'increase', 'production', 'capacity', 'meet', 'expected', 'unit', 'growth', 'case', 'introduction', 'db11', 'gaydon', 'facility', 'also', 'boasts', 'highly', 'flexible', 'employee', 'base', 'trained', 'production', 'station', 'models', 'allows', 'us', 'add', 'reduce', 'personnel', 'needed', 'flexible', 'employee', 'base', 'allows', 'us', 'accommodate', 'production', 'requirements', 'shift', 'employees', 'across', 'different', 'areas', 'production', 'order', 'maximize', 'production', 'capacity', 'utilization', 'able', 'increase', 'production', 'volumes', 'production', 'line', 'rate', 'increases', 'additional', 'shifts', 'extra', 'working', 'days', 'production', 'db11', 'introduced', 'new', 'lean', 'manufacturing', 'techniques', 'implemented', 'throughout', 'production', 'process', 'yielded', 'efficiency', 'savings', 'unique', 'business', 'model', 'built', 'around', 'second', 'century', 'plan', 'drive', 'revenues', 'cash', 'flow', 'shareholders', 'management', 'team', 'provided', 'clear', 'strategic', 'guidance', 'company', 'since', 'came', 'board', 'second', 'century', 'plan', 'focused', 'three', 'key', 'principles', 'one', 'two', 'new', 'core', 'models', 'derivatives', 'per', 'year', 'self', 'funding', 'business', 'model', 'three', 'pillar', 'strategy', 'detailed', 'stable', 'constant', 'new', 'products', 'invested', 'significantly', 'aston', 'martin', 'product', 'offerings', 'diverse', 'product', 'portfolio', 'five', 'core', 'models', 'variations', 'core', 'models', 'addition', 'special', 'edition', 'models', 'recently', 'announced', 'aston', 'martin', 'valkyrie', 'second', 'century', 'plan', 'intend', 'introduce', 'one', 'two', 'new', 'core', 'models', 'derivatives', 'models', 'year', 'next', 'seven', 'years', 'first', 'car', 'plan', 'db11', 'enthusiastically', 'received', 'market', 'generated', 'strong', 'sales', 'orders', 'outpacing', 'production', 'availability', 'order', 'book', 'march', '1', '2017', 'included', '1', '438', '993', 'db11', 'orders', 'orders', 'production', 'period', 'march', '1', '2017', 'may', '31', '2017', 'primarily', 'result', 'higher', 'sales', 'volumes', 'driven', 'db11', 'launch', 'second', 'century', 'plan', 'revenue', 'ebitda', 'net', 'cash', 'flows', 'operating', 'activities', 'grew', '593', '5', 'million', '100', '9', 'million', '164', '4', 'million', 'respectively', 'year', 'ended', 'december', '31', '2016', '510', '2', 'million', '61', '2', 'million', '75', '2', 'million', 'respectively', 'year', 'ended', '2015', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'twelve', 'months', 'ended', 'february', '28', '2017', 'would', '161', '0', 'million', 'believe', 'second', 'century', 'plan', 'strong', 'executive', 'management', 'leadership', 'achieve', 'profitable', 'growth', 'self', 'sustaining', 'business', 'three', 'pillar', 'strategy', 'current', 'model', 'line', 'addresses', 'high', 'luxury', 'sport', 'hls', 'segment', 'currently', 'primarily', 'focused', 'sports', 'cars', 'second', 'century', 'plan', 'transitioning', 'three', 'pillar', 'product', 'strategy', 'sports', 'cars', 'suvs', 'sedans', 'based', 'flexible', 'architecture', 'enables', 'us', 'easily', 'adapt', 'production', 'new', 'models', 'thereby', 'reducing', 'production', 'development', 'costs', 'incremental', 'models', 'believe', 'introduction', 'one', 'two', 'new', 'core', 'models', 'derivatives', 'models', 'every', 'year', 'second', 'century', 'plan', 'continue', 'support', 'highly', 'attractive', 'cash', 'flow', 'model', 'provide', 'us', 'capital', 'cost', 'flexibility', 'anticipate', 'launch', 'next', 'generation', 'four', 'door', 'sports', 'sedan', '2020', 'anticipate', 'funded', 'future', 'cash', 'flows', 'production', 'model', 'funds', 'working', 'capital', 'requirements', 'aston', 'martin', 'produces', 'vehicles', 'client', 'order', 'whether', 'actual', 'final', 'customer', 'dealer', 'customers', 'additionally', 'required', 'pay', 'range', 'deposits', 'get', 'access', 'waiting', 'list', 'special', 'edition', 'models', 'approach', 'allows', 'us', 'efficiently', 'manage', 'working', 'capital', 'positively', 'support', 'cash', 'flows', 'wait', 'lists', 'range', 'three', 'months', '5', 'several', 'years', 'special', 'editions', 'cases', 'aston', 'martin', 'valkyrie', 'db4', 'gt', 'vanquish', 'zagato', 'deposits', 'already', 'funded', 'entire', 'working', 'capital', 'needed', 'deliver', 'upcoming', 'project', 'well', 'advance', 'production', 'commencing', 'able', 'manage', 'working', 'capital', 'requirements', 'orders', 'model', 'can', 'not', 'unilaterally', 'cancelled', 'dealers', 'production', 'begun', 'approximately', 'twelve', 'weeks', 'prior', 'delivery', 'experienced', 'management', 'team', 'long', 'term', 'committed', 'shareholders', 'highly', 'experienced', 'respected', 'senior', 'management', 'team', 'led', 'ceo', 'dr', 'andrew', 'palmer', 'personally', 'inspected', 'signed', 'first', '1', '000', 'db11s', 'produced', 'demonstrating', 'top', 'commitment', 'quality', 'aston', 'martin', 'brand', 'senior', 'management', 'team', 'comprised', 'senior', 'automotive', 'executives', 'extensive', 'experience', 'automotive', 'industry', 'supportive', 'shareholders', 'also', 'committed', 'brand', 'made', 'significant', 'investments', 'aston', 'martin', 'second', 'century', 'plan', 'believe', 'shareholders', 'believe', 'rejuvenate', 'business', 'materially', 'positive', 'effect', 'business', 'whole', 'believe', 'experience', 'industry', 'knowledge', 'leadership', 'senior', 'management', 'team', 'continued', 'support', 'shareholders', 'contributed', 'success', 'help', 'us', 'implement', 'strategy', 'described', 'continue', 'achieve', 'profitable', 'growth', 'strategies', 'leader', 'performance', 'luxury', 'car', 'market', 'due', 'iconic', 'exclusive', 'brand', 'unique', 'design', 'engineering', 'capabilities', 'business', 'model', 'built', 'around', 'second', 'century', 'plan', 'experienced', 'management', 'team', 'supportive', 'shareholders', 'aim', 'achieve', 'profitable', 'growth', 'enhance', 'cash', 'flow', 'generation', 'pursuing', 'strategy', 'focused', 'continuously', 'renewing', 'product', 'offerings', 'expansion', 'new', 'existing', 'markets', 'order', 'achieve', 'goals', 'pursuing', 'following', 'strategies', 'near', 'term', 'growth', 'pinned', 'strong', 'product', 'offerings', 'strategic', 'business', 'plan', 'second', 'century', 'plan', 'focuses', 'new', 'product', 'launches', 'new', 'derivatives', 'refurbishments', 'existing', 'models', 'scheduled', 'next', 'years', 'based', 'successful', 'launch', 'db11', 'expect', 'future', 'launches', 'second', 'century', 'plan', 'key', 'driver', 'revenue', 'profit', 'growth', 'intend', 'introduce', 'average', 'one', 'two', 'new', 'core', 'models', 'derivatives', 'existing', 'models', 'year', 'next', 'seven', 'years', 'response', 'consumer', 'demand', 'line', 'strategy', 'diversify', 'customer', 'offering', 'introduce', 'fresh', 'products', 'year', 'begun', 'research', 'development', 'respect', 'electrification', 'suv', '2015', 'announced', 'dbx', 'first', 'suv', 'produced', 'facility', 'st', 'athan', 'wales', 'currently', 'construction', 'address', 'fastest', 'growing', 'part', 'car', 'market', 'stylish', 'luxurious', 'vehicle', 'also', 'practical', 'family', 'friendly', 'believe', 'products', 'dbx', 'allow', 'us', 'address', 'new', 'markets', 'diversify', 'profitably', 'increase', 'revenue', 'stream', 'also', 'intend', 'continue', 'leverage', 'aston', 'martin', 'brand', 'design', 'technology', 'engineering', 'strengths', 'take', 'advantage', 'flexible', 'manufacturing', 'facility', 'pursue', 'opportunities', 'attractive', 'market', 'niches', 'example', 'anticipate', 'late', '2018', 'begin', 'production', 'fully', 'electric', 'concept', 'rapide', 'four', 'door', 'sports', 'coupe', 'known', 'rapide', 'targeting', 'niche', 'market', 'hnwi', 'market', 'environmentally', 'friendly', 'luxury', 'cars', 'determining', 'number', 'cars', 'produce', 'year', 'try', 'achieve', 'balance', 'volume', 'cars', 'produce', 'brand', 'exclusivity', 'balance', 'central', 'production', 'philosophy', 'believe', 'increase', 'production', 'much', 'meet', 'demand', 'could', 'lead', 'brand', 'dilution', 'therefore', 'result', 'erosion', 'consumer', 'demand', 'cars', 'currently', 'believe', 'optimal', 'balance', 'around', '7', '000', 'sports', 'cars', 'per', 'year', 'deepen', 'penetration', 'existing', 'markets', 'expand', 'new', 'markets', 'well', 'positioned', 'within', 'hls', 'segment', 'automotive', 'market', 'experienced', 'significant', 'global', 'growth', 'due', 'proliferation', 'hnwi', 'increasing', '6', 'availability', 'certain', 'hls', 'cars', 'among', 'individuals', 'current', 'strategy', 'actively', 'seeking', 'gain', 'better', 'foothold', 'emerging', 'markets', 'asia', 'pacific', 'region', 'experienced', 'hnwi', 'growth', 'currently', 'represented', 'could', 'provide', 'us', 'significant', 'growth', 'potential', 'may', 'well', 'positioned', 'meet', 'growing', 'demand', 'hls', 'cars', 'markets', 'intend', 'increase', 'sales', 'emerging', 'markets', 'markets', 'expanding', 'dealer', 'network', 'regions', 'investing', 'strengthening', 'brand', 'power', 'markets', 'also', 'intend', 'capitalize', 'potential', 'increasing', 'penetration', 'established', 'markets', 'united', 'states', 'management', 'existing', 'dealers', 'appointment', 'additional', 'dealers', 'increasing', 'brand', 'awareness', 'core', 'second', 'century', 'plan', 'enhanced', 'ability', 'successfully', 'enter', 'new', 'markets', 'achieve', 'higher', 'penetration', 'existing', 'markets', 'considered', 'deliberate', 'targeting', 'broader', 'range', 'customers', 'plan', 'continue', 'support', 'growth', 'balanced', 'geographical', 'mix', 'sales', 'order', 'minimize', 'dependence', 'given', 'region', 'expanding', 'new', 'regions', 'attract', 'growing', 'customer', 'base', 'focus', 'cash', 'flow', 'generation', 'cost', 'savings', 'support', 'future', 'deleveraging', 'committed', 'pursuing', 'available', 'revenue', 'generating', 'opportunities', 'manner', 'generates', 'high', 'incremental', 'return', 'investments', 'key', 'priorities', 'develop', 'new', 'products', 'focus', 'new', 'growth', 'areas', 'increase', 'revenue', 'implement', 'cost', 'savings', 'thereby', 'achieve', 'operationally', 'driven', 'deleveraging', 'medium', 'term', 'combination', 'growth', 'ebitda', 'combined', 'cash', 'flow', 'generation', 'second', 'part', 'second', 'century', 'plan', 'expect', 'advances', 'modular', 'based', 'engineering', 'allows', 'us', 'use', 'shared', 'systems', 'components', 'reduce', 'engineering', 'complexities', 'result', 'cost', 'saving', 'model', 'synergies', 'going', 'forward', 'body', 'structure', 'cars', 'comprised', 'number', 'common', 'structures', 'provides', 'flexibility', 'overall', 'car', 'dimensions', 'wheelbase', 'front', 'rear', 'overhangs', 'maximum', 'component', 'commonality', 'minimizing', 'engineering', 'tooling', 'investment', 'time', 'market', 'therefore', 'reducing', 'working', 'capital', 'requirements', 'addition', 'flexibility', 'structure', 'modular', 'strategy', 'enables', 'optimization', 'common', 'systems', 'components', 'chassis', 'system', 'steering', 'systems', 'infotainment', 'systems', 'heating', 'ventilation', 'air', 'conditioning', 'components', 'enabling', 'us', 'deliver', 'range', 'products', 'efficient', 'investment', 'levels', 'example', 'believe', 'following', 'investment', 'modular', 'architecture', 'employs', 'carry', 'carry', 'across', 'principle', 'key', 'systems', 'components', 'introduced', 'db11', 'new', 'vanquish', 'new', 'vantage', 'require', 'approximately', '51', '87', 'less', 'capital', 'expenditure', 'db11', 'respectively', 'expect', 'hit', 'peak', 'capital', 'expenditures', 'near', 'term', 'generation', 'vehicles', 'aim', 'fund', 'capital', 'expenditure', 'working', 'capital', 'cash', 'flows', 'operations', 'addtion', 'expect', 'anticipated', 'ebitda', 'growth', 'improved', 'cash', 'positions', 'allow', 'us', 'delever', 'near', 'term', 'enhance', 'strategic', 'partnerships', 'key', 'partners', 'believe', 'carefully', 'chosen', 'partnerships', 'source', 'technical', 'expertise', 'brand', 'strengthening', 'future', 'growth', 'significant', 'strategic', 'partnership', 'daimler', 'ag', 'develop', 'supply', 'high', 'powered', 'bespoke', 'v8', 'powertrains', 'future', 'models', 'enable', 'us', 'access', 'cutting', 'edge', 'technology', 'including', 'electronical', 'electronic', 'systems', 'addition', 'widely', 'anticipated', 'aston', 'martin', 'red', 'bull', 'co', 'designed', 'hyper', 'car', 'aston', 'martin', 'valkyrie', 'product', 'strategic', 'partnership', 'red', 'bull', 'technologies', 'aston', 'martin', 'valkyrie', 'official', 'name', 'unveiling', 'geneva', 'motor', 'show', 'generated', 'piqued', 'interest', 'aston', 'martin', '150', 'road', 'car', 'version', 'units', 'aston', 'martin', 'valkyries', 'slated', 'production', 'already', 'allocated', 'partnership', 'red', 'bull', 'technologies', 'including', 'sponsorship', 'formula', 'one', 'team', 'given', 'us', 'global', 'brand', 'exposure', 'particularly', 'key', 'growth', 'markets', 'created', 'opportunity', 'share', 'technology', 'processes', 'advanced', 'form', 'racing', 'also', 'launched', 'aston', 'martin', 'consulting', '2016', 'collaborate', 'companies', 'share', 'expertise', 'design', 'manufacturing', 'engineering', 'believe', 'current', 'partnerships', 'future', 'partnerships', 'continue', 'result', 'exceptional', 'products', 'help', 'us', 'achieve', 'profitable', 'growth', '7', 'recent', 'developments', 'caution', 'information', 'not', 'regarded', 'indication', 'forecast', 'representation', 'us', 'person', 'regarding', 'financial', 'performance', 'three', 'months', 'ending', 'march', '31', '2017', 'future', 'period', 'see', 'forward', 'looking', 'statements', 'risk', 'factors', 'complete', 'discussion', 'certain', 'factors', 'could', 'affect', 'future', 'performance', 'results', 'operation', 'recent', 'financial', 'trading', 'revenue', 'ebitda', 'two', 'months', 'ended', 'february', '28', '2017', '99', '4', 'million', '17', '5', 'million', 'respectively', 'compared', 'revenue', '56', '4', 'million', 'ebitda', '3', '5', 'million', 'case', 'two', 'months', 'ended', 'february', '29', '2016', 'increase', 'revenue', 'ebitda', '43', '0', 'million', '14', '0', 'million', 'respectively', 'primarily', 'due', 'introduction', 'db11', 'fourth', 'quarter', '2016', 'resulted', 'significant', 'increase', 'sales', 'first', 'two', 'months', '2017', 'see', 'annex', 'additional', 'ebitda', 'information', 'foregoing', 'not', 'audited', 'reviewed', 'independent', 'auditors', 'information', 'based', 'solely', 'internal', 'information', 'used', 'management', 'based', 'management', 'accounts', 'ebitda', 'not', 'constitute', 'measure', 'financial', 'performance', 'ifrs', 'not', 'considered', 'substitute', 'operating', 'income', 'net', 'income', 'cash', 'flow', 'financial', 'measures', 'computed', 'accordance', 'ifrs', 'recent', 'operational', 'trading', 'march', '1', '2017', '1', '438', 'orders', 'production', '743', 'orders', 'not', 'yet', 'production', 'addition', 'march', '1', '2017', '2', '018', 'qualified', 'marketing', 'leads', 'respect', 'db11', 'not', 'track', 'measures', 'prior', 'periods', 'see', 'presentation', 'financial', 'information', 'use', 'non', 'ifrs', 'financial', 'information', 'order', 'book', 'risk', 'factors', 'order', 'book', 'not', 'necessarily', 'indicative', 'future', 'revenue', 'results', 'operations', 'forwardlooking', 'statements', 'transactions', 'refinancing', 'gross', 'proceeds', 'offering', 'approximately', '530', '0', 'million', 'equivalent', 'primarily', 'used', 'issuer', 'fund', 'notes', 'proceeds', 'loan', 'aml', 'turn', 'use', 'funds', 'received', 'redeem', 'existing', 'notes', 'behalf', 'capital', 'ii', 'redeem', 'existing', 'pik', 'notes', 'issued', 'fund', 'investment', 'group', 'behalf', 'holdings', 'iii', 'pay', 'commissions', 'fees', 'expenses', 'associated', 'transactions', 'iv', 'general', 'corporate', 'purposes', 'including', 'working', 'capital', 'addition', 'company', 'certain', 'subsidiaries', 'cancel', 'existing', 'revolving', 'credit', 'facility', 'enter', 'new', '80', 'million', 'revolving', 'credit', 'facility', 'agreement', 'among', 'inter', 'alios', 'j', 'p', 'morgan', 'limited', 'deutsche', 'bank', 'ag', 'london', 'branch', 'goldman', 'sachs', 'bank', 'usa', 'lead', 'arrangers', 'jpmorgan', 'chase', 'bank', 'n', 'london', 'branch', 'deutsche', 'bank', 'ag', 'london', 'branch', 'goldman', 'sachs', 'bank', 'usa', 'bank', 'america', 'merrill', 'lynch', 'international', 'limited', 'hsbc', 'bank', 'plc', 'morgan', 'stanley', 'senior', 'funding', 'inc', 'standard', 'chartered', 'bank', 'unicredit', 'bank', 'ag', 'london', 'branch', 'original', 'lenders', 'elavon', 'financial', 'services', 'dac', 'uk', 'branch', 'facility', 'agent', 'u', 'bank', 'trustees', 'limited', 'security', 'agent', 'new', 'revolving', 'credit', 'facility', 'agreement', 'description', 'new', 'revolving', 'credit', 'facility', 'agreement', 'see', 'description', 'financial', 'arrangements', 'new', 'revolving', 'credit', 'facility', 'agreement', '8', 'following', 'table', 'sets', 'forth', 'estimated', 'sources', 'uses', 'proceeds', 'offering', 'actual', 'amounts', 'vary', 'estimated', 'amounts', 'depending', 'several', 'factors', 'including', 'differences', 'estimate', 'fees', 'expenses', 'foreign', 'exchange', 'rates', 'outstanding', 'amounts', 'upon', 'repayment', 'sources', 'funds', 'notes', 'offered', 'hereby', '1', 'millions', 'total', 'uses', 'funds', 'millions', '530', '0', 'redemption', 'existing', 'notes', '2', 'redemption', 'existing', 'pik', 'notes', '3', 'transaction', 'fees', '4', 'general', 'corporate', 'purposes', '5', '530', '0', 'total', '318', '6', '183', '9', '11', '0', '16', '6', '530', '0', '1', 'represents', 'pounds', 'sterling', 'equivalent', 'expected', 'gross', 'proceeds', 'notes', 'offered', 'hereby', 'assuming', 'issue', 'price', 'par', 'series', 'notes', 'translated', 'exchange', 'rate', '1', '2478', '1', '0', 'represents', 'rate', 'exchange', 'march', '21', '2017', 'published', 'bloomberg', 'composite', 'rate', 'new', 'york', 'not', 'view', 'translations', 'representation', 'pounds', 'sterling', 'amounts', 'actually', 'represent', 'u', 'dollar', 'amounts', 'could', 'could', 'converted', 'u', 'dollars', 'rate', 'indicated', 'rate', 'issue', 'date', 'date', 'purposes', 'calculation', 'assumed', 'offering', '400', '0', 'million', 'dollar', 'notes', '209', '0', 'million', 'sterling', 'notes', '2', 'represents', 'redemption', 'price', 'entire', '304', 'million', 'aggregate', 'principal', 'amount', 'existing', 'notes', 'applicable', 'redemption', 'price', '102', '3125', 'plus', '7', '6', 'million', 'accrued', 'unpaid', 'interest', 'excluding', 'assumed', 'redemption', 'date', 'april', '22', '2017', '3', 'represents', 'redemption', 'price', 'entire', '218', '4', 'million', 'aggregate', 'principal', 'amount', 'existing', 'pik', 'notes', 'applicable', 'redemption', 'price', '102', 'plus', '6', '8', 'million', 'capitalized', 'interest', 'since', 'january', '1', '2017', 'excluding', 'assumed', 'redemption', 'date', 'april', '22', '2017', 'translated', 'exchange', 'rate', '1', '2478', '1', '0', 'represents', 'rate', 'exchange', 'march', '21', '2017', 'published', 'bloomberg', 'composite', 'rate', 'new', 'york', '4', 'represents', 'estimated', 'fees', 'expenses', 'associated', 'offering', 'use', 'proceeds', 'therefrom', 'including', 'initial', 'purchasers', 'fees', 'legal', 'accounting', 'expenses', 'transaction', 'costs', 'well', 'fee', 'expected', 'paid', 'holders', 'preference', 'shares', 'relating', 'certain', 'proposed', 'amendments', 'terms', 'preference', 'shares', '5', 'general', 'corporate', 'purposes', 'may', 'include', 'working', 'capital', 'capital', 'expenditures', 'investments', 'among', 'items', 'reorganization', 'issuer', 'newly', 'formed', 'wholly', 'owned', 'direct', 'subsidiary', 'investments', 'company', 'immediately', 'following', 'redemption', 'existing', 'notes', 'holdings', 'transfer', 'entire', 'share', 'capital', 'capital', 'company', 'exchange', 'issuance', 'shares', 'company', 'holdings', 'company', 'transfer', 'entire', 'share', 'capital', 'capital', 'issuer', 'exchange', 'issuance', 'shares', 'issuer', 'company', 'existing', 'notes', 'proceeds', 'loan', 'amount', '150', '1', 'million', 'december', '31', '2016', 'remain', 'outstanding', 'obligation', 'holdings', 'capital', 'obligation', 'not', 'accrue', 'cash', 'interest', 'following', 'steps', 'holdings', 'not', 'part', 'restricted', 'group', 'issuer', 'company', 'information', 'issuer', 'public', 'company', 'limited', 'liability', 'incorporated', 'jersey', 'march', '21', '2017', 'connection', 'offering', 'notes', 'hereby', 'company', 'number', '123447', 'companies', 'jersey', 'law', '1991', 'amended', 'also', 'relevant', 'primary', 'legislation', 'issuer', 'operates', 'issuer', 'special', 'purpose', 'finance', 'subsidiary', 'issuer', 'not', 'engaged', 'not', 'engage', 'activity', 'business', 'activities', 'described', 'referred', 'offering', 'memorandum', 'issuer', 'lend', 'proceeds', 'offering', 'notes', 'aml', 'issuer', 'also', 'provide', 'guarantee', 'new', 'revolving', 'credit', 'facility', 'issuer', 'managed', 'controlled', 'directors', 'united', 'kingdom', 'registered', 'office', 'issuer', 'located', 'po', 'box', '218', '43', '45', 'la', 'motte', 'street', 'st', 'helier', 'jersey', 'je4', '8sd', 'telephone', 'number', '44', '0', '1534', '702', '800', 'memorandum', 'articles', 'association', 'issuer', 'may', 'inspected', 'registered', 'address', 'issuer', '9', 'company', 'incorporated', 'private', 'limited', 'company', 'laws', 'england', 'wales', 'registered', 'office', 'banbury', 'road', 'gaydon', 'warwick', 'united', 'kingdom', 'cv35', '0db', 'telephone', 'number', 'address', '44', '0', '1926', '644', '644', 'summary', 'pro', 'forma', 'corporate', 'structure', 'following', 'chart', 'simplified', 'summary', 'corporate', 'structure', 'principal', 'indebtedness', 'pro', 'forma', 'basis', 'giving', 'effect', 'transactions', 'see', 'use', 'proceeds', 'capitalization', 'issuer', 'guarantor', 'non', 'guarantor', 'shareholders', '1', 'aston', 'mar', 'n', 'holdings', 'uk', 'limited', '2', '8', 'preference', 'shares', '1', '8', 'restricted', 'group', '100', 'aston', 'mar', 'n', 'investments', 'limited', '2', '3', '4', 'exis', 'ng', 'notes', 'proceeds', 'loan', '8', '100', 'aston', 'mar', 'n', 'capital', 'holdings', 'limited', '2', '3', 'issuer', 'aston', 'mar', 'n', 'lagonda', 'group', 'limited', '3', '4', 'notes', 'proceeds', 'loan', '5', '100', 'subsidiaries', 'aston', 'mar', 'n', 'lagonda', 'north', 'america', 'inc', '3', '4', '100', 'aston', 'mar', 'n', 'lagonda', 'limited', '3', '4', 'aston', 'mar', 'n', 'capital', 'limited', '3', '8', '50', 'amws', 'limited', '9', '80', 'million', 'new', 'revolving', 'credit', 'facility', '3', '7', '530', 'million', 'notes', 'ered', 'hereby', '3', '6', '1', 'full', 'description', 'principal', 'shareholders', 'see', 'principal', 'shareholders', 'following', 'transactions', 'holdings', 'not', 'part', 'restricted', 'group', 'preference', 'shares', 'not', 'attributable', 'company', 'subsidiaries', '2', 'issuer', 'public', 'company', 'limited', 'liability', 'incorporated', 'jersey', 'march', '21', '2017', 'connection', 'offering', 'notes', 'hereby', 'issuer', 'special', 'purpose', 'finance', 'subsidiary', 'no', 'significant', 'assets', 'notes', 'proceeds', 'loan', 'giving', 'effect', 'transactions', 'shares', 'hold', 'capital', '3', 'notes', 'new', 'revolving', 'credit', 'facility', 'subject', 'agreed', 'security', 'principles', 'benefit', 'guarantees', 'guarantors', 'secured', 'limited', 'recourse', 'first', 'priority', 'security', 'interest', 'english', 'law', 'granted', 'holdings', 'issued', 'capital', 'stock', 'company', 'ii', 'first', 'priority', 'security', 'interest', 'jersey', 'law', 'security', 'interest', 'agreement', 'granted', 'company', 'issued', 'share', 'capital', 'issuer', 'iii', 'first', 'priority', 'security', 'interest', 'jersey', 'law', 'security', 'interest', 'agreement', 'granted', 'issuer', 'issued', 'share', 'capital', 'capital', 'iv', 'first', 'priority', 'security', 'interest', 'english', 'law', 'debenture', 'referred', 'ix', 'footnote', 'granted', 'company', 'issued', 'capital', 'stock', 'aml', 'group', 'limited', 'v', 'first', 'priority', 'security', 'interest', 'english', 'law', 'debenture', 'referred', 'ix', 'footnote', 'granted', 'aml', 'group', 'limited', 'issued', 'capital', 'stock', 'aml', 'vi', 'first', 'priority', 'security', 'interest', 'new', 'york', 'law', 'granted', 'aml', 'group', 'limited', 'issued', 'capital', 'stock', 'aston', 'martin', 'lagonda', 'north', 'america', 'inc', 'vii', 'first', 'priority', 'assignment', 'governed', 'english', 'law', 'issuer', 'rights', 'notes', 'proceeds', 'loan', 'viii', 'extent', 'still', 'outstanding', 'first', 'priority', 'assignment', 'governed', 'english', 'law', 'capital', 'rights', 'existing', 'notes', 'proceeds', 'loan', 'ix', 'english', 'law', 'debenture', 'creating', 'fixed', 'floating', 'security', 'material', 'operating', 'bank', 'accounts', 'material', 'intercompany', 'receivables', 'material', 'intellectual', 'property', 'shares', 'guarantors', 'certain', 'material', 'companies', 'company', 'aml', 'group', 'limited', 'aml', '4', 'company', 'holding', 'company', 'no', 'significant', 'assets', 'shares', 'issuer', 'aml', 'group', 'limited', 'year', 'ended', 'december', '31', '2016', 'guarantors', 'represented', '65', 'revenue', '92', 'total', 'assets', 'generated', '96', 'ebitda', 'december', '31', '2016', 'giving', 'effect', 'offering', 'use', 'proceeds', 'therefrom', 'consolidated', 'basis', 'subsidiaries', 'not', 'guarantee', 'notes', 'would', '3', '9', 'million', 'outstanding', 'debt', '10', '5', 'expect', 'use', 'proceeds', 'notes', 'offered', 'hereby', 'fund', 'notes', 'proceeds', 'loan', 'aml', 'turn', 'use', 'funds', 'received', 'redeem', 'existing', 'notes', 'behalf', 'capital', 'ii', 'redeem', 'existing', 'pik', 'notes', 'behalf', 'holdings', 'iii', 'pay', 'commissions', 'fees', 'expenses', 'associated', 'transactions', 'iv', 'general', 'corporate', 'purposes', 'including', 'working', 'capital', 'see', 'use', 'proceeds', 'issuer', 'rights', 'notes', 'proceeds', 'loan', 'assigned', 'benefit', 'holders', 'notes', '6', 'represents', 'assumed', '400', '0', 'million', 'principal', 'amount', 'dollar', 'notes', 'assumed', '209', '0', 'million', 'principal', 'amount', 'sterling', 'notes', 'principal', 'amount', 'dollar', 'notes', 'translated', 'exchange', 'rate', '1', '2478', '1', '00', 'represents', 'rate', 'exchange', 'march', '21', '2017', 'published', 'bloomberg', 'composite', 'rate', 'new', 'york', 'not', 'view', 'translations', 'representation', 'pounds', 'sterling', 'amounts', 'actually', 'represent', 'u', 'dollar', 'amounts', 'could', 'could', 'converted', 'u', 'dollars', 'rate', 'indicated', 'rate', 'issue', 'date', 'date', '7', 'connection', 'transactions', 'cancel', 'existing', 'revolving', 'credit', 'facility', 'date', 'offering', 'memorandum', 'aml', 'enter', 'new', 'revolving', 'credit', 'facility', 'amount', '80', 'million', 'issue', 'date', 'new', 'revolving', 'credit', 'facility', 'expected', 'undrawn', 'fully', 'available', 'see', 'description', 'financial', 'arrangements', 'new', 'revolving', 'credit', 'facility', 'agreement', '8', 'holdings', 'issued', 'preference', 'shares', 'two', 'tranches', 'april', '2015', 'april', '2016', 'preference', 'shares', 'treated', 'debt', 'purposes', 'ifrs', 'see', 'principal', 'shareholders', 'preference', 'shares', 'date', 'offering', 'memorandum', '100', 'capital', 'share', 'capital', 'held', 'holdings', 'immediately', 'following', 'redemption', 'existing', 'notes', 'holdings', 'transfer', 'entire', 'share', 'capital', 'capital', 'company', 'exchange', 'issue', 'holdings', 'shares', 'company', 'turn', 'transfer', 'entire', 'share', 'capital', 'capital', 'issuer', 'exchange', 'issue', 'shares', 'issuer', 'thereafter', 'holdings', 'not', 'part', 'restricted', 'group', 'preference', 'shares', 'not', 'attributable', 'company', 'subsidiaries', 'existing', 'notes', 'proceeds', 'loan', 'amount', '150', '1', 'million', 'december', '31', '2016', 'due', 'holdings', 'capital', 'remain', 'outstanding', 'obligation', 'not', 'accrue', 'cash', 'interest', '9', 'aston', 'martin', 'works', 'limited', 'owns', 'servicing', 'business', 'wholly', 'owned', 'subsidiary', 'amws', 'limited', 'whose', 'shares', '50', 'owned', 'aston', 'martin', 'lagonda', 'limited', '50', 'owned', 'affiliate', 'certain', 'shareholders', 'see', 'certain', 'relationships', 'related', 'party', 'transactions', 'aston', 'martin', 'works', 'limited', 'amws', 'limited', 'remain', 'fully', 'consolidated', 'group', 'accounts', '11', 'offering', 'summary', 'describes', 'principal', 'terms', 'notes', 'guarantees', 'intercreditor', 'agreement', 'collateral', 'not', 'intended', 'complete', 'certain', 'terms', 'conditions', 'described', 'subject', 'important', 'exceptions', 'carefully', 'review', 'description', 'notes', 'description', 'financial', 'arrangements', 'intercreditor', 'agreement', 'sections', 'offering', 'memorandum', 'detailed', 'descriptions', 'terms', 'conditions', 'notes', 'intercreditor', 'agreement', 'issuer', 'aston', 'martin', 'capital', 'holdings', 'limited', 'wholly', 'owned', 'subsidiary', 'company', 'public', 'limited', 'company', 'limited', 'liability', 'incorporated', 'laws', 'jersey', 'notes', 'offered', 'dollar', 'notes', 'aggregate', 'principal', 'amount', 'issuer', 'senior', 'secured', 'notes', 'due', '2022', 'dollar', 'notes', 'sterling', 'notes', 'aggregate', 'principal', 'amount', 'issuer', 'senior', 'secured', 'notes', 'due', '2022', 'sterling', 'notes', 'issue', 'date', 'april', '2017', 'issue', 'date', 'issue', 'price', 'dollar', 'notes', 'plus', 'accrued', 'unpaid', 'interest', 'issue', 'date', 'sterling', 'notes', 'plus', 'accrued', 'unpaid', 'interest', 'issue', 'date', 'maturity', 'date', '2022', 'interest', 'dollar', 'notes', 'sterling', 'notes', 'interest', 'payment', 'dates', 'semi', 'annually', 'commencing', 'issue', 'date', 'year', '2017', 'interest', 'accrue', 'minimum', 'denominations', 'dollar', 'notes', 'sterling', 'notes', 'issued', 'denominations', '200', '000', 'integral', 'multiples', '1', '000', 'excess', 'thereof', '100', '000', 'integral', 'multiples', '1', '000', 'excess', 'thereof', 'respectively', 'ranking', 'notes', 'notes', 'senior', 'secured', 'obligations', 'issuer', 'unconditionally', 'guaranteed', 'senior', 'secured', 'basis', 'guarantors', 'subject', 'certain', 'guarantee', 'limitations', 'secured', 'liens', 'collateral', 'terms', 'intercreditor', 'agreement', 'holders', 'receive', 'proceeds', 'enforcement', 'security', 'collateral', 'obligations', 'secured', 'super', 'priority', 'basis', 'including', 'obligations', 'owed', 'lenders', 'new', 'revolving', 'credit', 'facility', 'counterparties', 'certain', 'hedging', 'obligations', 'paid', 'full', 'described', 'description', 'notes', 'security', '12', 'pari', 'passu', 'right', 'payment', 'existing', 'future', 'indebtedness', 'issuer', 'not', 'subordinated', 'right', 'payment', 'notes', 'including', 'guarantee', 'given', 'issuer', 'favor', 'new', 'revolving', 'credit', 'facility', 'senior', 'right', 'payment', 'existing', 'future', 'indebtedness', 'issuer', 'subordinated', 'right', 'payment', 'notes', 'effectively', 'subordinated', 'existing', 'future', 'indebtedness', 'issuer', 'secured', 'property', 'assets', 'issuer', 'not', 'secure', 'notes', 'extent', 'value', 'property', 'assets', 'securing', 'indebtedness', 'effectively', 'subordinated', 'existing', 'future', 'indebtedness', 'subsidiaries', 'company', 'issuer', 'not', 'guarantee', 'notes', 'guarantees', 'notes', 'guaranteed', 'jointly', 'severally', 'senior', 'secured', 'basis', 'aston', 'martin', 'investments', 'limited', 'company', 'aston', 'martin', 'lagonda', 'group', 'limited', 'aml', 'group', 'ltd', 'aston', 'martin', 'lagonda', 'limited', 'aml', 'aston', 'martin', 'capital', 'limited', 'capital', 'together', 'guarantors', 'issuer', 'can', 'not', 'make', 'payments', 'notes', 'due', 'guarantors', 'must', 'make', 'instead', 'laws', 'certain', 'jurisdictions', 'may', 'limit', 'enforceability', 'certain', 'guarantees', 'rights', 'collateral', 'supporting', 'guarantees', 'see', 'description', 'notes', 'guarantees', 'risk', 'factors', 'risks', 'related', 'indebtedness', 'notes', 'insolvency', 'laws', 'jersey', 'england', 'wales', 'may', 'not', 'favorable', 'u', 'bankruptcy', 'laws', 'may', 'preclude', 'holders', 'notes', 'recovering', 'payments', 'due', 'notes', 'risk', 'factors', 'risks', 'related', 'indebtedness', 'notes', 'guarantee', 'security', 'interest', 'subject', 'certain', 'limitations', 'enforcement', 'may', 'limited', 'applicable', 'laws', 'subject', 'certain', 'defenses', 'may', 'limit', 'validity', 'enforceability', 'year', 'ended', 'december', '31', '2016', 'guarantors', 'represented', '65', 'revenue', '92', 'total', 'assets', 'generated', '96', 'ebitda', 'issuer', 'guarantors', 'also', 'guarantee', 'new', 'revolving', 'credit', 'facility', 'december', '31', '2016', 'giving', 'effect', 'offering', 'use', 'proceeds', 'therefrom', 'consolidated', 'basis', 'subsidiaries', 'not', 'guarantee', 'notes', 'would', '3', '9', 'million', 'outstanding', 'debt', 'guarantees', 'subject', 'terms', 'intercreditor', 'agreement', 'see', 'description', 'financial', 'arrangements', 'intercreditor', 'agreement', '13', 'ranking', 'guarantees', 'guarantee', 'senior', 'secured', 'obligation', 'relevant', 'guarantor', 'secured', 'liens', 'collateral', 'terms', 'intercreditor', 'agreement', 'receive', 'proceeds', 'enforcement', 'security', 'collateral', 'obligations', 'secured', 'super', 'priority', 'basis', 'including', 'obligations', 'owed', 'lenders', 'new', 'revolving', 'credit', 'facility', 'counterparties', 'certain', 'hedging', 'obligations', 'paid', 'full', 'pari', 'passu', 'right', 'payment', 'guarantors', 'existing', 'future', 'indebtedness', 'not', 'subordinated', 'right', 'payment', 'notes', 'including', 'indebtedness', 'new', 'revolving', 'credit', 'facility', 'certain', 'hedging', 'obligations', 'senior', 'right', 'payment', 'existing', 'future', 'subordinated', 'indebtedness', 'guarantors', 'effectively', 'subordinated', 'existing', 'future', 'indebtedness', 'guarantors', 'secured', 'property', 'assets', 'not', 'secure', 'guarantors', 'guarantees', 'notes', 'equal', 'basis', 'extent', 'value', 'property', 'assets', 'securing', 'indebtedness', 'effectively', 'subordinated', 'existing', 'future', 'indebtedness', 'subsidiaries', 'company', 'not', 'guarantee', 'notes', 'collateral', 'subject', 'operation', 'agreed', 'security', 'principles', 'certain', 'perfection', 'requirements', 'release', 'security', 'granted', 'favor', 'existing', 'notes', 'existing', 'pik', 'notes', 'existing', 'revolving', 'credit', 'facility', 'permitted', 'collateral', 'liens', 'defined', 'description', 'notes', 'certain', 'definitions', 'notes', 'secured', 'limited', 'recourse', 'first', 'priority', 'security', 'interest', 'english', 'law', 'granted', 'holdings', 'issued', 'capital', 'stock', 'company', 'ii', 'first', 'priority', 'security', 'interest', 'jersey', 'law', 'security', 'interest', 'agreement', 'granted', 'company', 'issued', 'share', 'capital', 'issuer', 'iii', 'first', 'priority', 'security', 'interest', 'jersey', 'law', 'security', 'interest', 'agreement', 'granted', 'issuer', 'issued', 'share', 'capital', 'capital', 'iv', 'first', 'priority', 'security', 'interest', 'english', 'law', 'debenture', 'referred', 'ix', 'paragraph', 'granted', 'company', 'issued', 'capital', 'stock', 'aml', 'group', 'limited', 'v', 'first', 'priority', 'security', 'interest', 'english', 'law', 'debenture', 'referred', 'ix', 'paragraph', 'granted', 'aml', 'group', 'limited', 'issued', 'capital', 'stock', 'aml', 'vi', 'first', 'priority', 'security', 'interest', 'new', 'york', 'law', 'granted', 'aml', 'group', 'limited', 'issued', 'capital', 'stock', 'aston', 'martin', 'lagonda', 'north', 'america', 'inc', 'vii', 'first', 'priority', 'assignment', 'governed', 'english', 'law', 'issuer', 'rights', 'notes', 'proceeds', 'loan', 'viii', 'extent', 'still', 'outstanding', '14', 'first', 'priority', 'assignment', 'governed', 'english', 'law', 'capital', 'rights', 'existing', 'notes', 'proceeds', 'loan', 'ix', 'english', 'law', 'debenture', 'creating', 'fixed', 'floating', 'security', 'material', 'operating', 'bank', 'accounts', 'material', 'intercompany', 'receivables', 'material', 'intellectual', 'property', 'shares', 'guarantors', 'certain', 'material', 'companies', 'company', 'aml', 'group', 'limited', 'aml', 'pursuant', 'terms', 'intercreditor', 'agreement', 'liabilities', 'respect', 'obligations', 'new', 'revolving', 'credit', 'facility', 'certain', 'hedging', 'obligations', 'receive', 'priority', 'relation', 'proceeds', 'received', 'upon', 'enforcement', 'action', 'collateral', 'remaining', 'proceeds', 'received', 'upon', 'enforcement', 'action', 'collateral', 'applied', 'pro', 'rata', 'repayment', 'obligations', 'indenture', 'notes', 'senior', 'secured', 'indebtedness', 'issuer', 'guarantors', 'permitted', 'incurred', 'secured', 'collateral', 'pursuant', 'indenture', 'intercreditor', 'agreement', 'see', 'description', 'financing', 'arrangements', 'intercreditor', 'agreement', 'optional', 'redemption', 'dollar', 'notes', 'prior', '2019', 'issuer', 'may', 'redeem', 'option', 'portion', 'dollar', 'notes', 'redemption', 'price', 'equal', '100', 'principal', 'amount', 'dollar', 'notes', 'plus', 'applicable', 'make', 'whole', 'premium', 'described', 'offering', 'memorandum', 'accrued', 'unpaid', 'interest', 'additional', 'amounts', 'redemption', 'date', '2019', 'issuer', 'may', 'redeem', 'option', 'portion', 'dollar', 'notes', 'applicable', 'redemption', 'prices', 'set', 'forth', 'caption', 'description', 'notes', 'optional', 'redemption', 'optional', 'redemption', 'dollar', 'notes', 'plus', 'accrued', 'unpaid', 'interest', 'additional', 'amounts', 'redemption', 'date', 'prior', '2019', 'issuer', 'may', 'redeem', 'option', 'one', 'occasions', 'dollar', 'notes', 'aggregate', 'principal', 'amount', 'not', 'exceed', '40', 'aggregate', 'principal', 'amount', 'dollar', 'notes', 'net', 'cash', 'proceeds', 'certain', 'equity', 'offerings', 'redemption', 'price', 'equal', 'principal', 'amount', 'notes', 'outstanding', 'plus', 'accrued', 'unpaid', 'interest', 'additional', 'amounts', 'applicable', 'redemption', 'date', 'provided', 'least', '50', 'aggregate', 'principal', 'amount', 'dollar', 'notes', 'remains', 'outstanding', 'immediately', 'redemption', 'redemption', 'occurs', 'within', '180', 'days', 'closing', 'date', 'relevant', 'equity', 'offering', 'prior', '2019', 'issuer', 'may', 'redeem', 'twelve', 'month', 'period', 'commencing', 'issue', 'date', '10', 'aggregate', 'principal', 'amount', '15', 'dollar', 'notes', 'originally', 'issued', 'including', 'aggregate', 'principal', 'amount', 'additional', 'dollar', 'notes', 'redemption', 'price', 'equal', '103', 'principal', 'amount', 'thereof', 'plus', 'accrued', 'unpaid', 'interest', 'additional', 'amounts', 'applicable', 'redemption', 'date', 'sterling', 'notes', 'prior', '2019', 'issuer', 'may', 'redeem', 'option', 'portion', 'sterling', 'notes', 'redemption', 'price', 'equal', '100', 'principal', 'amount', 'sterling', 'notes', 'plus', 'applicable', 'make', 'whole', 'premium', 'described', 'offering', 'memorandum', 'accrued', 'unpaid', 'interest', 'additional', 'amounts', 'redemption', 'date', '2019', 'issuer', 'may', 'redeem', 'option', 'portion', 'sterling', 'notes', 'applicable', 'redemption', 'prices', 'set', 'forth', 'caption', 'description', 'notes', 'optional', 'redemption', 'optional', 'redemption', 'sterling', 'notes', 'plus', 'accrued', 'unpaid', 'interest', 'additional', 'amounts', 'redemption', 'date', 'prior', '2019', 'issuer', 'may', 'redeem', 'option', 'one', 'occasions', 'sterling', 'notes', 'aggregate', 'principal', 'amount', 'not', 'exceed', '40', 'aggregate', 'principal', 'amount', 'sterling', 'notes', 'net', 'cash', 'proceeds', 'certain', 'equity', 'offerings', 'redemption', 'price', 'equal', 'principal', 'amount', 'notes', 'outstanding', 'plus', 'accrued', 'unpaid', 'interest', 'applicable', 'redemption', 'date', 'long', 'least', '50', 'aggregate', 'principal', 'amount', 'sterling', 'notes', 'remains', 'outstanding', 'immediately', 'redemption', 'redemption', 'occurs', 'within', '180', 'days', 'closing', 'date', 'relevant', 'equity', 'offering', 'prior', '2019', 'issuer', 'may', 'redeem', 'twelve', 'month', 'period', 'commencing', 'issue', 'date', '10', 'aggregate', 'principal', 'amount', 'sterling', 'notes', 'originally', 'issued', 'including', 'aggregate', 'principal', 'amount', 'additional', 'sterling', 'notes', 'redemption', 'price', 'equal', '103', 'principal', 'amount', 'thereof', 'plus', 'accrued', 'unpaid', 'interest', 'additional', 'amounts', 'applicable', 'redemption', 'date', 'original', 'issue', 'discount', 'notes', 'either', 'series', 'offered', 'hereby', 'may', 'issued', 'original', 'issue', 'discount', 'oid', 'united', 'states', 'federal', 'income', 'tax', 'purposes', 'case', 'addition', 'stated', 'interest', 'notes', 'holder', 'subject', 'united', 'states', 'federal', 'income', 'taxation', 'required', 'include', 'oid', 'gross', 'income', 'ordinary', 'income', 'constant', 'yield', 'maturity', 'basis', 'advance', 'receipt', 'cash', 'payment', 'thereof', 'regardless', 'holder', 'regular', 'method', 'accounting', 'united', 'states', 'federal', 'income', 'tax', 'purposes', 'see', 'certain', 'tax', 'considerations', 'certain', 'united', 'states', 'federal', 'tax', 'consequences', '16', 'optional', 'redemption', 'tax', 'reasons', 'event', 'certain', 'developments', 'affecting', 'taxation', 'issuer', 'may', 'redeem', 'notes', 'whole', 'not', 'part', 'redemption', 'price', '100', 'principal', 'amount', 'plus', 'accrued', 'unpaid', 'interest', 'additional', 'amounts', 'date', 'redemption', 'see', 'description', 'notes', 'optional', 'redemption', 'redemption', 'taxation', 'reasons', 'change', 'control', 'upon', 'occurrence', 'certain', 'events', 'defined', 'constituting', 'change', 'control', 'issuer', 'may', 'required', 'offer', 'repurchase', 'outstanding', 'notes', 'purchase', 'price', 'cash', 'equal', '101', 'principal', 'amount', 'thereof', 'date', 'purchase', 'plus', 'accrued', 'unpaid', 'interest', 'additional', 'amounts', 'date', 'purchase', 'additional', 'amounts', 'payments', 'made', 'behalf', 'issuer', 'guarantor', 'respect', 'notes', 'guarantees', 'made', 'without', 'withholding', 'deduction', 'taxes', 'unless', 'required', 'law', 'taxes', 'required', 'law', 'withheld', 'deducted', 'relevant', 'taxing', 'jurisdiction', 'respect', 'payment', 'respect', 'notes', 'guarantee', 'issuer', 'guarantors', 'pay', 'additional', 'amounts', 'necessary', 'net', 'amount', 'received', 'withholding', 'deduction', 'equal', 'amounts', 'would', 'received', 'absence', 'withholding', 'deduction', 'subject', 'certain', 'exceptions', 'see', 'description', 'notes', 'withholding', 'taxes', 'certain', 'covenants', 'indenture', 'governing', 'notes', 'contain', 'covenants', 'among', 'things', 'limit', 'ability', 'ability', 'restricted', 'subsidiaries', 'incur', 'guarantee', 'additional', 'indebtedness', 'issue', 'certain', 'preferred', 'stock', 'create', 'incur', 'certain', 'liens', 'make', 'certain', 'payments', 'including', 'dividends', 'distributions', 'prepay', 'redeem', 'subordinated', 'debt', 'equity', 'make', 'certain', 'investments', 'create', 'encumbrances', 'restrictions', 'payment', 'dividends', 'distributions', 'loans', 'advances', 'transfer', 'assets', 'restricted', 'group', 'sell', 'lease', 'transfer', 'certain', 'assets', 'including', 'stock', 'restricted', 'subsidiaries', 'engage', 'certain', 'transactions', 'affiliates', 'enter', 'unrelated', 'businesses', 'engage', 'prohibited', 'activities', 'consolidate', 'merge', 'entities', 'impair', 'security', 'interests', 'benefit', 'holders', 'notes', '17', 'covenants', 'subject', 'significant', 'exceptions', 'qualifications', 'see', 'description', 'notes', 'certain', 'covenants', 'use', 'proceeds', 'expect', 'use', 'proceeds', 'notes', 'offered', 'hereby', 'fund', 'notes', 'proceeds', 'loan', 'aml', 'turn', 'use', 'funds', 'received', 'redeem', 'existing', 'notes', 'behalf', 'capital', 'ii', 'redeem', 'existing', 'pik', 'notes', 'behalf', 'holdings', 'iii', 'pay', 'commissions', 'fees', 'expenses', 'associated', 'transactions', 'iv', 'general', 'corporate', 'purposes', 'including', 'working', 'capital', 'see', 'use', 'proceeds', 'transfer', 'restrictions', 'notes', 'guarantees', 'not', 'not', 'registered', 'u', 'securities', 'act', 'securities', 'laws', 'jurisdiction', 'subject', 'restrictions', 'transferability', 'resale', 'not', 'agreed', 'otherwise', 'undertaken', 'register', 'notes', 'including', 'way', 'exchange', 'offer', 'notes', 'subject', 'certain', 'restrictions', 'transfer', 'described', 'transfer', 'restrictions', 'no', 'prior', 'market', 'notes', 'new', 'securities', 'currently', 'no', 'market', 'although', 'initial', 'purchasers', 'informed', 'us', 'intend', 'make', 'market', 'notes', 'not', 'obligated', 'may', 'discontinue', 'market', 'making', 'time', 'without', 'notice', 'accordingly', 'can', 'not', 'assure', 'liquid', 'market', 'notes', 'develop', 'maintained', 'listing', 'application', 'made', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'listing', 'permission', 'deal', 'notes', 'official', 'list', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'governing', 'law', 'indenture', 'notes', 'guarantees', 'new', 'york', 'governing', 'law', 'intercreditor', 'agreement', 'england', 'wales', 'governing', 'law', 'security', 'documents', 'england', 'wales', 'jersey', 'new', 'york', 'trustee', 'u', 'bank', 'trustees', 'limited', 'principal', 'paying', 'agent', 'transfer', 'agent', 'elavon', 'financial', 'services', 'dac', 'u', 'k', 'branch', 'u', 'paying', 'agent', 'transfer', 'agent', 'u', 'bank', 'national', 'association', 'registrar', 'elavon', 'financial', 'services', 'dac', 'listing', 'sponsor', 'carey', 'olsen', 'corporate', 'finance', 'limited', 'calculation', 'agent', 'elavon', 'financial', 'services', 'dac', 'u', 'k', 'branch', 'security', 'agent', 'u', 'bank', 'trustees', 'limited', 'isin', 'dollar', 'notes', 'reg', '18', 'rule', '144a', 'sterling', 'notes', 'reg', 'rule', '144a', 'dollar', 'notes', 'reg', 'rule', '144a', 'sterling', 'notes', 'reg', 'rule', '144a', 'rule', '144a', 'common', 'code', 'cusip', 'dollar', 'notes', 'reg', 'risk', 'factors', 'investment', 'notes', 'involves', 'high', 'degree', 'risk', 'carefully', 'consider', 'information', 'set', 'forth', 'risk', 'factors', 'information', 'offering', 'memorandum', 'deciding', 'invest', 'notes', '19', 'summary', 'historical', 'consolidated', 'financial', 'data', 'unless', 'otherwise', 'indicated', 'historical', 'financial', 'data', 'presented', 'following', 'tables', 'derived', 'historical', 'consolidated', 'financial', 'statements', 'holdings', 'included', 'elsewhere', 'offering', 'memorandum', 'financial', 'information', 'holdings', 'consolidated', 'financial', 'statements', 'holdings', 'years', 'ended', 'december', '31', '2014', '2015', '2016', 'presented', 'accordance', 'international', 'financial', 'reporting', 'standards', 'adopted', 'european', 'union', 'ifrs', 'holdings', 'not', 'provide', 'guarantee', 'type', 'credit', 'support', 'notes', 'share', 'pledge', 'company', 'shares', 'consolidated', 'financial', 'statements', 'holdings', 'include', 'results', 'operations', 'financial', 'position', 'holdings', 'giving', 'effect', 'transactions', 'not', 'attributable', 'company', 'subsidiaries', 'result', 'consolidated', 'financial', 'statements', 'holdings', 'not', 'directly', 'comparable', 'historical', 'financial', 'information', 'company', 'subsidiaries', 'giving', 'effect', 'transactions', 'material', 'differences', 'consolidated', 'financial', 'position', 'results', 'operations', 'holdings', 'company', 'primarily', 'relate', 'liabilities', 'costs', 'associated', 'preference', 'shares', 'including', 'capitalized', 'interest', 'expense', 'respect', 'thereto', 'obligations', 'holdings', 'not', 'company', 'well', '1', '4', 'million', '3', '9', 'million', '1', '1', 'million', 'annual', 'administration', 'costs', 'holdings', 'years', 'ended', 'december', '31', '2014', '2015', '2016', 'respectively', 'therefore', 'presented', 'offering', 'memorandum', 'financial', 'operating', 'results', 'certain', 'information', 'relating', 'holdings', 'lieu', 'company', 'believe', 'holdings', 'consolidated', 'financial', 'statements', 'subject', 'differences', 'noted', 'adequately', 'reflect', 'company', 'consolidated', 'financial', 'results', 'financial', 'position', 'pro', 'forma', 'non', 'ifrs', 'financial', 'information', 'following', 'tables', 'also', 'include', 'certain', 'unaudited', 'pro', 'forma', 'consolidated', 'financial', 'information', 'including', 'pro', 'forma', 'cash', 'cash', 'equivalents', 'pro', 'forma', 'total', 'debt', 'pro', 'forma', 'net', 'debt', 'pro', 'forma', 'interest', 'expense', 'defined', 'offering', 'memorandum', 'leverage', 'coverage', 'ratios', 'adjusted', 'give', 'pro', 'forma', 'effect', 'transactions', 'occurred', 'december', '31', '2016', 'purposes', 'calculation', 'pro', 'forma', 'total', 'debt', 'pro', 'forma', 'net', 'debt', 'ii', 'january', '1', '2016', 'purpose', 'calculation', 'pro', 'forma', 'interest', 'expense', 'pro', 'forma', 'cash', 'cash', 'equivalents', 'adjusted', 'give', 'effect', 'estimated', 'cash', 'position', 'given', 'effect', 'transactions', 'pro', 'forma', 'measures', 'not', 'financial', 'measures', 'defined', 'accordance', 'ifrs', 'may', 'not', 'comparable', 'similarly', 'titled', 'measured', 'used', 'companies', 'february', 'ltm', 'ebitda', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'well', 'relevant', 'adjustments', 'based', 'solely', 'internal', 'information', 'used', 'management', 'based', 'management', 'accounts', 'plus', 'case', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'expectation', 'future', 'periods', 'based', 'order', 'book', 'caution', 'foregoing', 'information', 'not', 'audited', 'reviewed', 'independent', 'auditors', 'not', 'regarded', 'indication', 'forecast', 'representation', 'us', 'person', 'see', 'forward', 'looking', 'statements', 'risk', 'factors', 'adjustments', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'presented', 'offering', 'memorandum', 'treated', 'caution', 'making', 'investment', 'decision', 'unaudited', 'pro', 'forma', 'consolidated', 'financial', 'information', 'not', 'prepared', 'accordance', 'requirements', 'regulation', 'x', 'u', 'securities', 'act', 'prospectus', 'directive', 'generally', 'accepted', 'accounting', 'standards', 'unaudited', 'pro', 'forma', 'adjustments', 'based', 'upon', 'available', 'information', 'certain', 'assumptions', 'believe', 'reasonable', '20', 'neither', 'assumptions', 'underlying', 'pro', 'forma', 'adjustments', 'nor', 'resulting', 'unaudited', 'pro', 'forma', 'combined', 'financial', 'information', 'audited', 'reviewed', 'accordance', 'generally', 'accepted', 'auditing', 'standards', 'unaudited', 'pro', 'forma', 'consolidated', 'financial', 'information', 'informational', 'purposes', 'read', 'conjunction', 'information', 'contained', 'presentation', 'financial', 'information', 'use', 'non', 'ifrs', 'financial', 'information', 'selected', 'financial', 'information', 'management', 'discussion', 'analysis', 'financial', 'condition', 'results', 'operations', 'financial', 'statements', 'included', 'offering', 'memorandum', 'results', 'operations', 'prior', 'years', 'not', 'necessarily', 'indicative', 'results', 'expected', 'future', 'period', 'year', 'ended', 'december', '31', 'millions', 'unless', 'otherwise', 'indicated', '2014', '2015', '2016', 'consolidated', 'statement', 'comprehensive', 'income', 'data', 'revenue', 'cost', 'sales', '468', '4', '313', '5', '510', '2', '345', '3', '593', '5', '371', '9', 'gross', 'profit', 'selling', 'distribution', 'expenses', 'administrative', 'expenses', '1', '154', '9', '33', '4', '139', '8', '164', '9', '32', '1', '191', '1', '221', '6', '41', '9', '212', '0', 'operating', 'profit', 'loss', 'finance', 'income', 'finance', 'expense', '2', '18', '3', '2', '5', '56', '0', '58', '3', '2', '1', '71', '8', '32', '3', '2', '5', '133', '0', 'net', 'financing', 'expense', '2', '53', '5', '69', '7', '130', '5', 'profit', 'loss', 'tax', '2', 'income', 'tax', 'credit', 'expense', '71', '8', '7', '1', '128', '0', '21', '0', '162', '8', '15', '2', 'profit', 'loss', 'year', '2', '64', '7', '107', '0', '147', '6', 'comprehensive', 'income', 'year', 'net', 'income', 'tax', '12', '1', 'total', 'comprehensive', 'income', 'expense', 'year', '2', '76', '8', '6', '9', '100', '1', '53', '2', '200', '8', '1', 'administrative', 'expenses', 'includes', '1', '4', 'million', '3', '9', 'million', '1', '1', 'million', 'years', 'ended', 'december', '31', '2014', '2015', '2016', 'respectively', 'costs', 'attributable', 'holdings', 'giving', 'effect', 'transactions', 'holdings', 'not', 'part', 'restricted', 'group', 'costs', 'not', 'attributable', 'company', 'subsidiaries', '2', 'finance', 'expense', 'includes', 'interest', 'expense', 'respect', 'preference', 'shares', 'obligations', 'holdings', 'giving', 'effect', 'transactions', 'holdings', 'not', 'part', 'restricted', 'group', 'preference', 'shares', 'not', 'attributable', 'company', 'subsidiaries', 'finance', 'expense', 'respect', 'preference', 'shares', 'nil', '10', '8', 'million', '29', '1', 'million', 'years', 'ended', 'december', '31', '2014', '2015', '2016', 'respectively', 'following', 'table', 'presents', 'line', 'items', 'finance', 'expense', 'total', 'comprehensive', 'income', 'expense', 'year', 'adjusted', 'exclude', 'impact', 'preference', 'shares', 'year', 'ended', 'december', '31', 'millions', 'unless', 'otherwise', 'indicated', '2014', '2015', 'finance', 'expense', '56', '0', '61', '0', '103', '9', 'net', 'financing', 'expense', '53', '5', '58', '9', '101', '4', 'profit', 'loss', 'tax', 'income', 'tax', 'credit', 'expense', '71', '8', '7', '1', '117', '2', '21', '0', '133', '7', '15', '2', 'profit', 'loss', 'year', '64', '7', '96', '2', '118', '5', 'comprehensive', 'income', 'year', 'net', 'income', 'tax', '12', '1', '6', '9', '53', '2', 'total', 'comprehensive', 'income', 'expense', 'year', '76', '8', '89', '3', '171', '7', 'figures', 'table', 'adjusted', 'exclude', 'impact', 'preference', 'shares', '21', '2016', 'year', 'ended', 'december', '31', 'millions', 'unless', 'otherwise', 'indicated', 'consolidated', 'balance', 'sheet', 'data', 'cash', 'cash', 'equivalents', 'working', 'capital', '1', 'property', 'plant', 'equipment', 'total', 'assets', 'total', 'current', 'liabilities', 'total', 'non', 'current', 'liabilities', '2', 'total', 'shareholders', 'equity', 'total', 'liabilities', '2014', '2015', '89', '3', '46', '4', '174', '4', '1', '084', '0', '193', '3', '412', '5', '352', '8', '731', '1', '65', '6', '2', '7', '166', '3', '1', '109', '2', '212', '3', '532', '2', '264', '1', '845', '2', '2016', '101', '7', '41', '0', '196', '3', '1', '269', '8', '373', '0', '696', '1', '72', '7', '1', '197', '1', '1', 'working', 'capital', 'calculated', 'current', 'assets', 'less', 'current', 'liabilities', '2', 'represents', 'book', 'value', 'total', 'debt', 'determined', 'compliance', 'ifrs', 'total', 'non', 'current', 'liabilities', 'includes', 'preference', 'shares', 'obligations', 'holdings', 'excludes', 'financial', 'liabilities', '2', '9', 'million', '1', '5', 'million', '9', '6', 'million', 'years', 'ended', 'december', '31', '2014', '2015', '2016', 'respectively', 'related', 'hedging', 'ii', 'employee', 'benefits', 'provisions', 'deferred', 'tax', 'liabilities', 'together', 'amounted', '122', '4', 'million', '99', '1', 'million', '118', '4', 'million', 'years', 'ended', 'december', '31', '2014', '2015', '2016', 'respectively', 'giving', 'effect', 'transactions', 'holdings', 'not', 'part', 'restricted', 'group', 'preference', 'shares', 'not', 'attributable', 'company', 'subsidiaries', 'preference', 'shares', 'represented', 'nil', '98', '3', 'million', '218', '0', 'million', 'indebtedness', 'years', 'ended', 'december', '31', '2014', '2015', '2016', 'respectively', 'year', 'ended', 'december', '31', 'millions', 'unless', 'otherwise', 'indicated', 'consolidated', 'statement', 'cash', 'flows', 'data', 'net', 'cash', 'flows', 'operating', 'activities', 'net', 'cash', 'flows', 'used', 'investing', 'activities', 'net', 'cash', 'flows', 'used', 'financing', 'activities', 'net', 'decrease', 'increase', 'cash', 'cash', 'equivalents', '2014', '2015', '2016', '57', '9', '123', '1', '80', '6', '15', '4', '75', '2', '161', '0', '62', '8', '22', '9', '164', '6', '190', '2', '53', '6', '28', '0', 'year', 'ended', 'december', '31', 'millions', 'unless', 'otherwise', 'indicated', 'financial', 'data', 'depreciation', 'amortization', 'capital', 'expenditures', 'non', 'product', 'capital', 'expenditure', 'product', 'capital', 'expenditure', 'capitalized', 'engineering', 'research', 'development', 'costs', 'total', 'product', 'development', 'expenditures', '1', 'total', 'debt', '2', 'net', 'debt', '3', 'ebitda', '4', 'cash', 'conversion', 'ratio', '5', '2014', '2015', '2016', '80', '3', '126', '5', '119', '5', '163', '1', '133', '2', '192', '8', '21', '6', '8', '8', '5', '9', '35', '2', '11', '8', '64', '5', '96', '1', '115', '0', '412', '5', '343', '1', '61', '9', '94', '122', '0', '167', '8', '433', '9', '384', '8', '61', '2', '123', '116', '5', '191', '9', '478', '1', '381', '6', '100', '9', '163', 'twelve', 'months', 'ended', 'february', '28', '2017', 'ebitda', '4', 'february', 'ltm', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', '4', '114', '9', '161', '0', 'year', 'ended', 'december', '31', 'millions', 'unless', 'otherwise', 'indicated', 'operating', 'data', 'total', 'unit', 'sales', 'dealers', 'number', 'cars', 'average', 'car', 'sale', 'price', 'thousands', '6', '22', '2014', '2015', '2016', '3', '686', '114', '0', '3', '615', '116', '0', '3', '687', '137', '0', 'year', 'ended', 'december', '31', '2016', 'pro', 'forma', 'financial', 'data', '7', 'pro', 'forma', 'cash', 'cash', 'equivalents', '8', 'pro', 'forma', 'total', 'debt', '9', 'pro', 'forma', 'net', 'debt', '9', 'pro', 'forma', 'interest', 'expense', '7', 'ratio', 'pro', 'forma', 'net', 'debt', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', '10', 'ratio', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'pro', 'forma', 'interest', 'expense', '11', '118', '3', '524', '2', '405', '9', '2', '5x', 'x', '1', 'total', 'product', 'development', 'expenditures', 'sum', 'product', 'capital', 'expenditures', 'ii', 'capitalized', 'engineering', 'research', 'development', 'costs', 'iii', 'research', 'development', 'costs', 'recognized', 'expense', '2', 'total', 'debt', 'represents', 'total', 'non', 'current', 'borrowings', 'excluding', '5', '2', 'million', '16', '6', 'million', '19', '8', 'million', 'years', 'ended', 'december', '31', '2016', '2015', '2014', 'respectively', 'short', 'term', 'indebtedness', 'comprised', 'inventory', 'funding', 'facilities', 'well', 'vehicle', 'financing', 'works', 'total', 'debt', 'also', 'excludes', 'preference', 'shares', 'obligations', 'holdings', 'treated', 'debt', 'purposes', 'ifrs', 'following', 'transactions', 'holdings', 'not', 'part', 'restricted', 'group', 'preference', 'shares', 'represented', 'nil', '98', '3', 'million', '218', '4', 'million', 'indebtedness', 'years', 'ending', 'december', '31', '2014', '2015', '2016', 'respectively', '3', 'net', 'debt', 'represents', 'total', 'debt', 'described', 'previous', 'footnote', 'adjusted', 'cash', 'cash', 'equivalents', 'applicable', 'date', '4', 'ebitda', 'non', 'ifrs', 'financial', 'measure', 'defined', 'net', 'income', 'loss', 'financial', 'income', 'expense', 'income', 'taxes', 'benefit', 'expenses', 'depreciation', 'amortization', 'ebitda', 'reflects', 'impact', 'earnings', 'charges', 'resulting', 'matters', 'holders', 'notes', 'may', 'consider', 'not', 'indicative', 'ongoing', 'operations', 'therefore', 'also', 'present', 'february', 'ltm', 'ebitda', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'february', 'ltm', 'ebitda', 'defined', 'ebitda', 'year', 'ended', 'december', '31', '2016', 'adjusted', 'include', 'ebitda', 'two', 'months', 'ended', 'february', '28', '2017', 'less', 'ebitda', 'two', 'months', 'ended', 'february', '29', '2016', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'defined', 'february', 'ltm', 'ebitda', 'adjusted', 'give', 'pro', 'forma', 'effect', 'ebitda', 'contribution', 'orders', 'production', 'net', 'expected', 'costs', 'february', '28', '2017', 'scheduled', 'production', 'period', 'march', '1', '2017', 'may', '31', '2017', 'less', 'ebitda', 'comparable', 'period', '2016', 'amounts', 'included', 'ebitda', 'february', 'ltm', 'ebitda', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'derived', 'consolidated', 'financial', 'statements', 'management', 'accounts', 'not', 'financial', 'measures', 'calculated', 'accordance', 'ifrs', 'accordingly', 'not', 'considered', 'alternatives', 'net', 'income', 'operating', 'income', 'indicators', 'performance', 'alternatives', 'operating', 'cash', 'flows', 'measure', 'liquidity', 'management', 'uses', 'ebitda', 'february', 'ltm', 'ebitda', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'assess', 'operating', 'performance', 'addition', 'believe', 'ebitda', 'february', 'ltm', 'ebitda', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'measures', 'commonly', 'used', 'investors', 'ebitda', 'february', 'ltm', 'ebitda', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'presented', 'offering', 'memorandum', 'may', 'not', 'comparable', 'similarly', 'titled', 'measures', 'reported', 'companies', 'due', 'differences', 'way', 'measures', 'calculated', 'ebitda', 'february', 'ltm', 'ebitda', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'calculated', 'follows', 'year', 'ended', 'december', '31', 'millions', '2014', '2015', '2016', 'net', 'income', 'loss', 'income', 'tax', 'benefit', 'expense', 'financial', 'income', 'expense', 'depreciation', 'amortization', '64', '8', '7', '1', '53', '5', '80', '3', '107', '0', '21', '0', '69', '7', '119', '5', '147', '6', '15', '2', '130', '5', '133', '2', 'ebitda', 'february', 'ltm', 'adjustment', '61', '9', '61', '2', '100', '9', '14', '0', 'february', 'ltm', 'ebitda', 'orders', 'production', 'adjustment', 'b', '114', '9', '46', '1', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', '161', '0', 'february', 'ltm', 'adjustment', 'represents', 'ebitda', '17', '5', 'million', 'two', 'months', 'ended', 'february', '28', '2017', 'less', 'ebitda', '3', '5', 'million', 'two', 'months', 'ended', 'february', '29', '2016', 'see', 'recent', 'operational', 'trading', 'annex', 'additional', 'ebitda', 'information', 'b', 'orders', 'production', 'adjustment', 'period', 'march', '1', '2017', 'amounts', '55', '8', 'million', 'less', 'ebitda', 'comparative', 'period', '2016', '9', '7', 'million', 'orders', 'production', 'march', '1', '2017', 'adjustment', 'represents', 'expected', 'ebitda', 'contribution', 'fully', 'committed', 'orders', '1', '438', 'orders', 'production', 'march', '1', '2017', 'customers', 'dealers', 'loaded', 'internal', 'scheduling', 'system', 'scheduled', 'production', 'period', 'march', '1', '2017', 'may', '31', '2017', 'adjustment', 'includes', 'impact', 'expected', 'costs', 'based', 'production', 'schedule', 'case', 'period', 'march', '1', '2017', 'may', '31', '2017', 'orders', 'production', 'fully', 'specified', 'meaning', 'ordered', 'unit', 'specifications', 'trim', 'upholstery', 'colors', 'material', 'finishes', 'specified', 'customer', 'require', '12', 'weeks', 'minimum', 'satisfy', 'production', '23', 'scheduling', 'order', 'orders', 'production', 'firm', 'orders', 'scheduled', 'supply', 'components', 'suppliers', 'orders', 'production', 'can', 'not', 'unilaterally', 'cancelled', 'dealers', 'costs', 'period', 'march', '1', '2017', 'may', '31', '2017', 'estimated', 'based', 'projected', 'operating', 'costs', 'model', 'produced', 'plus', 'known', 'additional', 'costs', 'period', 'marketing', 'expenses', 'associated', 'geneva', 'motor', 'show', 'see', 'presentation', 'financial', 'information', 'pro', 'forma', 'financial', 'information', 'presentation', 'financial', 'information', 'order', 'book', 'february', 'ltm', 'ebitda', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'well', 'relevant', 'adjustments', 'based', 'solely', 'internal', 'information', 'used', 'management', 'based', 'management', 'accounts', 'expectation', 'future', 'periods', 'based', 'order', 'book', 'actual', 'consolidated', 'financial', 'results', 'may', 'differ', 'preliminary', 'estimated', 'results', 'remain', 'subject', 'procedures', 'review', 'process', 'procedures', 'not', 'completed', 'accordingly', 'results', 'may', 'change', 'changes', 'may', 'material', 'caution', 'foregoing', 'information', 'not', 'audited', 'reviewed', 'independent', 'auditors', 'not', 'regarded', 'indication', 'forecast', 'representation', 'us', 'february', 'ltm', 'ebitda', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'not', 'constitute', 'measure', 'financial', 'performance', 'ifrs', 'not', 'considered', 'substitute', 'operating', 'income', 'net', 'income', 'cash', 'flow', 'financial', 'measures', 'computed', 'accordance', 'ifrs', 'see', 'forward', 'looking', 'statements', 'risk', 'factors', 'adjustments', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'presented', 'offering', 'memorandum', 'treated', 'caution', 'making', 'investment', 'decision', 'annex', 'additional', 'ebitda', 'information', '5', 'cash', 'conversion', 'ratio', 'calculated', 'net', 'cash', 'flows', 'operating', 'activities', 'divided', 'ebitda', '6', 'average', 'car', 'sale', 'price', 'calculated', 'revenue', 'sale', 'cars', 'divided', 'total', 'unit', 'sales', 'period', '7', 'pro', 'forma', 'financial', 'data', 'gives', 'effect', 'offering', 'use', 'proceeds', 'therefrom', 'described', 'use', 'proceeds', 'occurred', 'december', '31', '2016', 'balance', 'sheet', 'data', 'january', '1', '2016', 'income', 'statement', 'data', '8', 'pro', 'forma', 'cash', 'cash', 'equivalents', 'calculated', 'cash', 'cash', 'equivalents', 'year', 'ended', 'december', '31', '2016', 'adjusted', '16', '6', 'million', 'proceeds', 'offering', 'notes', 'available', 'general', 'corporate', 'purposes', 'including', 'working', 'capital', '9', 'pro', 'forma', 'total', 'debt', 'represents', 'total', 'debt', 'adjusted', 'give', 'effect', 'offering', 'use', 'proceeds', 'therefrom', 'described', 'use', 'proceeds', 'including', 'principal', 'amount', 'notes', '530', '0', 'million', '5', '2', 'million', 'inventory', 'funding', 'facilities', 'less', '11', '0', 'million', 'capitalized', 'transaction', 'costs', '10', 'pro', 'forma', 'net', 'debt', 'calculated', 'december', '31', '2016', 'whereas', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'relates', 'twelve', 'month', 'period', 'ending', 'february', '28', '2017', 'accordingly', 'ratio', 'contains', 'components', 'derived', 'different', 'periods', 'pro', 'forma', 'net', 'debt', 'might', 'vary', 'twelve', 'months', 'ended', 'february', '28', '2017', '11', 'pro', 'forma', 'interest', 'expense', 'calculated', 'year', 'ending', 'december', '31', '2016', 'whereas', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'relates', 'twelve', 'month', 'period', 'ending', 'february', '28', '2017', 'accordingly', 'ratio', 'contains', 'components', 'derived', 'different', 'periods', 'pro', 'forma', 'interest', 'expense', 'might', 'vary', 'twelve', 'months', 'ended', 'february', '28', '2017', '24', 'risk', 'factors', 'investment', 'notes', 'involves', 'high', 'degree', 'risk', 'carefully', 'consider', 'following', 'risks', 'together', 'information', 'provided', 'offering', 'memorandum', 'deciding', 'whether', 'invest', 'notes', 'occurrence', 'events', 'discussed', 'could', 'materially', 'adversely', 'affect', 'business', 'financial', 'condition', 'results', 'operations', 'events', 'occur', 'trading', 'prices', 'notes', 'could', 'decline', 'may', 'not', 'able', 'pay', 'part', 'interest', 'principal', 'notes', 'may', 'lose', 'part', 'investment', 'additional', 'risks', 'not', 'currently', 'known', 'us', 'deem', 'immaterial', 'could', 'also', 'adversely', 'affect', 'businesses', 'results', 'operations', 'financial', 'condition', 'ability', 'fulfill', 'obligations', 'notes', 'affect', 'investment', 'offering', 'memorandum', 'contains', 'forward', 'looking', 'statements', 'involve', 'risks', 'uncertainties', 'actual', 'results', 'may', 'differ', 'significantly', 'results', 'discussed', 'forwardlooking', 'statements', 'factors', 'might', 'cause', 'differences', 'include', 'discussed', 'elsewhere', 'offering', 'memorandum', 'please', 'see', 'forward', 'looking', 'statements', 'risks', 'relating', 'business', 'industry', 'future', 'success', 'depends', 'continued', 'ability', 'introduce', 'next', 'generation', 'cars', 'require', 'significant', 'capital', 'expenditures', 'new', 'model', 'introductions', 'refurbishments', 'drive', 'customer', 'visits', 'dealers', 'showrooms', 'sales', 'part', 'second', 'century', 'plan', 'program', 'product', 'refreshment', 'enhancement', 'intend', 'introduce', 'one', 'two', 'new', 'core', 'models', 'derivatives', 'every', 'year', 'next', 'seven', 'years', 'began', 'next', 'generation', 'model', 'line', 'launch', 'new', 'db11', 'model', 'fall', '2016', 'order', 'meet', 'sales', 'goals', 'must', 'continue', 'invest', 'heavily', 'car', 'powertrain', 'design', 'engineering', 'manufacturing', 'ability', 'realize', 'acceptable', 'returns', 'investments', 'depend', 'large', 'part', 'consumers', 'acceptance', 'new', 'car', 'offerings', 'well', 'ability', 'complete', 'car', 'launch', 'schedule', 'contemplated', 'timeline', 'intend', 'develop', 'future', 'models', 'based', 'modular', 'architecture', 'employs', 'carry', 'carry', 'across', 'principle', 'key', 'systems', 'components', 'allows', 'flexible', 'profitable', 'manufacturing', 'low', 'volumes', 'easy', 'adaptation', 'new', 'models', 'limited', 'additional', 'investment', 'way', 'collaboration', 'manufacturers', 'done', 'past', 'opportunistic', 'basis', 'must', 'undertake', 'significant', 'upfront', 'investments', 'order', 'launch', 'new', 'models', 'update', 'existing', 'models', 'order', 'make', 'large', 'capital', 'expenditures', 'must', 'either', 'sufficient', 'cash', 'operations', 'raise', 'funding', 'outside', 'sources', 'may', 'not', 'available', 'us', 'commercially', 'reasonable', 'terms', 'amount', 'sufficient', 'enable', 'us', 'raise', 'funds', 'available', 'us', 'significant', 'part', 'capital', 'expenditures', 'contracted', 'necessary', 'maintenance', 'order', 'maintain', 'business', 'unable', 'raise', 'sufficient', 'cash', 'liquidity', 'event', 'occur', 'would', 'prevent', 'us', 'making', 'large', 'capital', 'expenditures', 'events', 'would', 'directly', 'harm', 'business', 'next', '12', 'months', 'expect', 'capital', 'expenditures', 'range', '250', 'million', '260', 'million', 'taking', 'account', 'grants', 'monies', 'provided', 'consideration', 'entrance', 'lease', 'arrangement', 'st', 'athan', 'plant', 'see', 'management', 'discussion', 'analysis', 'financial', 'condition', 'results', 'operations', 'capital', 'expenditures', 'total', 'product', 'development', 'expenditures', 'new', 'cars', 'upgraded', 'variants', 'existing', 'models', 'not', 'received', 'favorably', 'consumers', 'car', 'sales', 'market', 'share', 'profitability', 'suffer', 'required', 'cut', 'capital', 'expenditures', 'due', 'insufficient', 'car', 'sales', 'profitability', 'reason', 'ability', 'continue', 'program', 'developing', 'next', 'generation', 'cars', 'keep', 'pace', 'product', 'technological', 'innovations', 'would', 'diminish', 'could', 'reduce', 'demand', 'cars', 'negatively', 'impact', 'business', 'brand', 'results', 'operations', 'future', 'business', 'success', 'depends', 'ability', 'develop', 'attractive', 'products', 'tailored', 'customers', 'needs', 'tastes', 'success', 'depends', 'continued', 'popularity', 'existing', 'products', 'ability', 'provide', 'customers', 'new', 'attractive', 'products', 'tailored', 'needs', 'tastes', 'new', 'products', 'may', 'not', 'achieve', 'level', 'consumer', 'acceptance', 'anticipate', 'ability', '25', 'recognize', 'react', 'changes', 'trends', 'customer', 'needs', 'tastes', 'sufficient', 'time', 'significant', 'factor', 'determine', 'future', 'success', 'strengthening', 'position', 'existing', 'product', 'range', 'market', 'segments', 'already', 'serve', 'expanding', 'new', 'market', 'segments', 'trends', 'affecting', 'consumer', 'demand', 'may', 'depend', 'factors', 'disposable', 'income', 'brand', 'prestige', 'environmental', 'consciousness', 'difficult', 'plan', 'may', 'influenced', 'popular', 'media', 'must', 'continue', 'identify', 'trends', 'customer', 'needs', 'tastes', 'sufficient', 'time', 'react', 'changes', 'thus', 'strengthen', 'market', 'position', 'expand', 'new', 'segments', 'misjudgment', 'delayed', 'recognition', 'trends', 'customer', 'needs', 'tastes', 'individual', 'markets', 'changes', 'demand', 'could', 'lead', 'decline', 'demand', 'sales', 'products', 'short', 'term', 'long', 'term', 'damage', 'brand', 'could', 'also', 'lead', 'significantly', 'unprofitable', 'investments', 'associated', 'costs', 'risks', 'could', 'exacerbated', 'relatively', 'small', 'scale', 'operations', 'limited', 'product', 'range', 'even', 'able', 'successfully', 'identify', 'trends', 'affecting', 'demand', 'may', 'suffer', 'delays', 'bringing', 'new', 'car', 'models', 'market', 'unable', 'produce', 'new', 'models', 'sufficient', 'numbers', 'meet', 'demand', 'including', 'due', 'delays', 'delivery', 'parts', 'components', 'materials', 'difficulties', 'achieving', 'efficiency', 'targets', 'without', 'decline', 'quality', 'lack', 'customer', 'acceptance', 'new', 'models', 'introduced', 'could', 'reduce', 'potential', 'sales', 'increase', 'costs', 'damage', 'brand', 'future', 'business', 'success', 'depends', 'ability', 'maintain', 'high', 'quality', 'cars', 'brand', 'able', 'pass', 'cost', 'high', 'quality', 'customers', 'quality', 'standards', 'aston', 'martin', 'brand', 'maintained', 'incurring', 'costs', 'maintaining', 'ensuring', 'quality', 'errors', 'defects', 'parts', 'components', 'procured', 'externally', 'manufactured', 'house', 'assembly', 'mistakes', 'could', 'prompt', 'us', 'implement', 'servicing', 'recall', 'campaigns', 'cars', 'manufactured', 'delivered', 'even', 'develop', 'new', 'technical', 'solutions', 'happened', 'us', 'past', 'measures', 'may', 'require', 'significant', 'time', 'financial', 'resources', 'us', 'turn', 'may', 'lead', 'higher', 'provisions', 'warranties', 'expenses', 'levels', 'existing', 'provisions', 'impact', 'measures', 'could', 'exacerbated', 'relatively', 'small', 'scale', 'operations', 'limited', 'product', 'range', 'fact', 'current', 'products', 'produced', 'gaydon', 'facility', 'could', 'material', 'effect', 'business', 'financial', 'position', 'results', 'operations', 'see', 'currently', 'dependent', 'sole', 'manufacturing', 'facility', 'gaydon', 'united', 'kingdom', 'may', 'incur', 'unanticipated', 'costs', 'delays', 'launching', 'new', 'plant', 'st', 'athan', 'believe', 'customers', 'one', 'determining', 'factors', 'purchasing', 'cars', 'manufactured', 'us', 'brand', 'high', 'quality', 'products', 'decrease', 'quality', 'cars', 'public', 'perception', 'decrease', 'quality', 'could', 'damage', 'brand', 'image', 'reputation', 'no', 'guarantee', 'able', 'sell', 'cars', 'customers', 'prices', 'appropriate', 'high', 'quality', 'products', 'pricing', 'pressure', 'customers', 'could', 'limit', 'ability', 'pass', 'production', 'costs', 'customers', 'pricing', 'pressures', 'could', 'also', 'exert', 'additional', 'cost', 'price', 'pressures', 'suppliers', 'turn', 'may', 'negative', 'effect', 'product', 'quality', 'damage', 'reputation', 'reduce', 'demand', 'products', 'aston', 'martin', 'brand', 'could', 'damaged', 'weakened', 'aston', 'martin', 'brand', 'widely', 'recognized', 'beautiful', 'design', 'attention', 'detail', 'one', 'key', 'selling', 'points', 'moreover', 'due', 'heritage', 'prestige', 'luxury', 'quality', 'beauty', 'aston', 'martin', 'brand', 'requires', 'minimal', 'financial', 'investment', 'advertisement', 'brand', 'could', 'damaged', 'strength', 'brand', 'weakened', 'failure', 'continue', 'produce', 'cars', 'competitive', 'terms', 'performance', 'aesthetics', 'quality', 'meet', 'customers', 'needs', 'tastes', 'failure', 'keep', 'new', 'technologies', 'consumer', 'preference', 'high', 'performance', 'sports', 'cars', 'high', 'emission', 'cars', 'specific', 'quality', 'issues', 'recalls', 'dealers', 'promoting', 'manufacturers', 'cars', 'priority', 'counterfeit', 'cars', 'parts', 'affecting', 'performance', 'quality', 'perceptions', 'changing', 'consumer', 'fashions', 'increase', 'number', 'cars', 'currently', 'manufacture', 'plan', 'produce', 'future', 'pursuant', 'growth', 'strategy', 'compared', 'number', 'cars', 'historically', 'manufactured', '26', 'could', 'also', 'reduce', 'exclusivity', 'aston', 'martin', 'cars', 'weaken', 'brand', 'brand', 'may', 'also', 'diluted', 'non', 'automotive', 'aston', 'martin', 'branded', 'products', 'services', 'exclusive', 'rights', 'licensed', 'third', 'party', 'affiliate', 'certain', 'shareholders', 'may', 'also', 'produced', 'illegally', 'counterfeiters', 'sale', 'products', 'services', 'low', 'prices', 'high', 'volumes', 'low', 'quality', 'could', 'negative', 'effect', 'aston', 'martin', 'brand', 'risks', 'particular', 'importance', 'new', 'growth', 'markets', 'asia', 'pacific', 'brand', 'less', 'established', 'incidence', 'counterfeiting', 'higher', 'established', 'markets', 'brand', 'damaged', 'weakened', 'demand', 'cars', 'may', 'significantly', 'negatively', 'affected', 'could', 'require', 'us', 'devote', 'greater', 'resources', 'marketing', 'brand', 'could', 'material', 'adverse', 'effect', 'business', 'financial', 'position', 'results', 'operations', 'demand', 'products', 'pricing', 'power', 'dependent', 'consumers', 'sentiment', 'purchasing', 'power', 'demand', 'cars', 'relies', 'consumers', 'purchasing', 'power', 'consumer', 'confidence', 'regarding', 'future', 'economic', 'developments', 'consumer', 'demand', 'negatively', 'impacted', 'decrease', 'potential', 'customers', 'disposable', 'income', 'assets', 'financial', 'flexibility', 'uncertainty', 'future', 'income', 'assets', 'financial', 'flexibility', 'particular', 'consumers', 'may', 'refrain', 'purchasing', 'new', 'car', 'instead', 'purchase', 'used', 'car', 'defer', 'future', 'purchase', 'purchase', 'lower', 'priced', 'brand', 'addition', 'even', 'potential', 'customers', 'sufficient', 'purchasing', 'power', 'confidence', 'demand', 'cars', 'may', 'affected', 'consumer', 'sentiment', 'economic', 'conditions', 'poor', 'unemployment', 'levels', 'high', 'incomes', 'pressure', 'consumers', 'may', 'not', 'want', 'seen', 'owning', 'driving', 'expensive', 'car', 'similarly', 'increasing', 'awareness', 'environmental', 'issues', 'particular', 'pollution', 'levels', 'may', 'reduce', 'demand', 'sports', 'cars', 'since', 'produce', 'emissions', 'average', 'car', 'products', 'priced', 'positioned', 'high', 'luxury', 'sport', 'hls', 'car', 'segment', 'top', 'end', 'car', 'market', 'result', 'customers', 'require', 'considerably', 'higher', 'average', 'levels', 'income', 'assets', 'position', 'afford', 'products', 'makes', 'car', 'sales', 'dependent', 'number', 'high', 'net', 'worth', 'individuals', 'hnwis', 'world', 'growth', 'strategy', 'dependent', 'growth', 'number', 'individuals', 'number', 'hnwis', 'world', 'increased', 'last', 'decade', 'no', 'assurance', 'trend', 'continue', 'not', 'reverse', 'factors', 'could', 'halt', 'reverse', 'trend', 'include', 'deteriorating', 'global', 'economic', 'political', 'conditions', 'changes', 'tax', 'laws', 'government', 'intervention', 'particular', 'industries', 'banking', 'remuneration', 'levels', 'within', 'industries', 'increased', 'political', 'turmoil', 'increase', 'levels', 'inequality', 'last', 'decade', 'may', 'increase', 'risk', 'factors', 'arising', 'fueling', 'popular', 'discontent', 'number', 'wealth', 'hnwis', 'particular', 'take', 'advantage', 'rising', 'wealth', 'number', 'high', 'net', 'worth', 'individuals', 'asia', 'pacific', 'focused', 'increasing', 'sales', 'asia', 'pacific', 'coming', 'years', 'however', 'changes', 'economy', 'governmental', 'regulation', 'taxes', 'political', 'changes', 'factors', 'region', 'could', 'halt', 'reverse', 'trend', 'additionally', 'successful', 'increasing', 'average', 'price', 'cars', 'last', 'years', 'provided', 'degree', 'protection', 'profitability', 'may', 'not', 'able', 'continue', 'increasing', 'average', 'price', 'cars', 'may', 'face', 'pressure', 'reduce', 'prices', 'pricing', 'pressure', 'could', 'result', 'declines', 'absolute', 'demand', 'products', 'could', 'arise', 'result', 'economic', 'conditions', 'due', 'higher', 'demand', 'cars', 'produced', 'manufacturers', 'consumer', 'backlash', 'high', 'prices', 'well', 'better', 'dealer', 'incentives', 'including', 'margins', 'sales', 'manufacturers', 'cars', 'sold', 'multi', 'brand', 'dealers', 'decrease', 'potential', 'customers', 'purchasing', 'power', 'change', 'consumer', 'sentiment', 'high', 'luxury', 'sports', 'cars', 'could', 'material', 'adverse', 'effect', 'business', 'financial', 'position', 'results', 'operations', 'addition', 'reliance', 'key', 'markets', 'increases', 'risk', 'negative', 'impact', 'adverse', 'change', 'customer', 'demand', 'regions', 'example', 'significant', 'presence', 'united', 'states', 'united', 'kingdom', 'europe', 'together', 'accounted', '71', '73', '72', 'respectively', 'unit', 'sales', 'year', 'ended', 'december', '31', '2014', '2015', '2016', 'respectively', 'decline', 'demand', 'vehicles', 'major', 'markets', 'may', 'future', 'significantly', 'impair', 'business', 'financial', 'position', 'results', 'operations', '27', 'profitability', 'dependent', 'ability', 'secure', 'orders', 'special', 'edition', 'models', 'may', 'delayed', 'unable', 'deliver', 'models', 'applicable', 'timeframe', 'could', 'lead', 'incurrence', 'additional', 'costs', 'loss', 'profitability', 'damage', 'reputation', 'addition', 'consistent', 'production', 'five', 'core', 'models', 'offer', 'limited', 'numbers', 'special', 'models', 'vanquish', 'zagato', 'coupe', 'vanquish', 'zagato', 'volante', 'limited', 'run', '99', 'cars', 'msrp', '525', '000', '577', '500', 'respectively', 'new', 'aston', 'martin', 'valkyrie', 'limited', '150', 'units', 'road', 'car', 'version', 'profitability', 'dependent', 'upon', 'ability', 'secure', 'orders', 'special', 'models', 'deliver', 'customer', 'within', 'targeted', 'timeframe', 'accept', 'deposits', 'special', 'models', 'advance', 'production', 'order', 'cover', 'increased', 'costs', 'associated', 'production', 'special', 'model', 'allows', 'us', 'cover', 'costs', 'generating', 'consistent', 'cash', 'flow', 'company', 'allow', 'continued', 'investment', 'research', 'development', 'manufacturing', 'overall', 'operations', 'example', 'allocated', '150', 'units', 'road', 'car', 'version', 'aston', 'martin', 'valkyrie', 'deliveries', 'not', 'commence', '2019', 'although', 'accepted', 'large', 'deposits', 'expect', 'cover', 'development', 'working', 'capital', 'overall', 'project', 'production', 'delayed', 'may', 'incur', 'additional', 'costs', 'event', 'results', 'delay', 'halt', 'production', 'technological', 'failures', 'factories', 'industrial', 'actions', 'strikes', 'similar', 'measures', 'facility', 'supplier', 'facility', 'ford', 'daimler', 'key', 'suppliers', 'engines', 'experience', 'production', 'issues', 'special', 'model', 'general', 'events', 'could', 'result', 'delay', 'release', 'special', 'model', 'increase', 'costs', 'production', 'lead', 'loss', 'profitability', 'damage', 'customer', 'relationships', 'reputation', 'brand', 'results', 'operations', 'see', 'could', 'experience', 'significant', 'disruption', 'production', 'capabilities', 'result', 'dependence', 'limited', 'number', 'key', 'suppliers', 'particular', 'ford', 'daimler', 'face', 'strong', 'competition', 'could', 'lead', 'significant', 'drop', 'unit', 'sales', 'price', 'deterioration', 'compete', 'number', 'manufacturers', 'strong', 'brands', 'reputations', 'ferrari', 'lamborghini', 'bentley', 'porsche', 'many', 'greater', 'financial', 'resources', 'us', 'often', 'result', 'owned', 'associated', 'mass', 'car', 'manufacturers', 'example', 'lamborghini', 'bentley', 'porsche', 'part', 'volkswagen', 'group', 'unable', 'continue', 'produce', 'cars', 'consumers', 'industry', 'commentators', 'consider', 'competitive', 'including', 'particular', 'performance', 'quality', 'aesthetics', 'demand', 'cars', 'could', 'adversely', 'affected', 'could', 'result', 'drop', 'unit', 'sales', 'pricing', 'pressure', 'manufacturers', 'may', 'also', 'successful', 'introducing', 'new', 'technologies', 'meeting', 'new', 'regulatory', 'requirements', 'emissions', 'restrictions', 'entering', 'new', 'areas', 'hls', 'automotive', 'market', 'due', 'greater', 'resources', 'could', 'enable', 'obtain', 'competitive', 'advantages', 'us', 'example', 'high', 'performance', 'luxury', 'sports', 'cars', 'characterized', 'leading', 'edge', 'technology', 'constantly', 'evolving', 'influenced', 'racing', 'technology', 'although', 'invest', 'heavily', 'research', 'development', 'may', 'unable', 'maintain', 'position', 'high', 'performance', 'car', 'technology', 'result', 'competitive', 'position', 'may', 'suffer', 'technologies', 'change', 'plan', 'upgrade', 'adapt', 'cars', 'introduce', 'new', 'models', 'order', 'continue', 'provide', 'cars', 'latest', 'technology', 'however', 'cars', 'may', 'not', 'compete', 'effectively', 'competitors', 'cars', 'not', 'able', 'develop', 'source', 'integrate', 'latest', 'technology', 'cars', 'developing', 'applying', 'new', 'automotive', 'technologies', 'costly', 'may', 'become', 'even', 'costly', 'future', 'available', 'technology', 'advances', 'competition', 'industry', 'increases', 'research', 'development', 'efforts', 'not', 'lead', 'improvements', 'car', 'performance', 'relative', 'competition', 'required', 'spend', 'achieve', 'comparable', 'results', 'sales', 'cars', 'profitability', 'may', 'suffer', 'additionally', 'order', 'maintain', 'competitive', 'position', 'entering', 'new', 'areas', 'hls', 'market', 'exposes', 'us', 'new', 'risks', 'dbx', 'announced', '2015', 'first', 'suv', 'begin', 'production', 'first', 'fully', 'electric', 'concept', 'rapide', 'late', '2018', 'investments', 'concepts', 'may', 'not', 'bring', 'expected', 'returns', 'might', 'expect', 'new', 'model', 'base', 'core', 'portfolio', 'finally', 'manufacturers', 'may', 'successful', 'us', 'dealing', 'changes', 'economic', 'conditions', 'could', 'give', 'greater', 'flexibility', 'us', 'including', 'prices', 'cars', '28', 'factors', 'could', 'exacerbated', 'size', 'high', 'luxury', 'sports', 'cars', 'market', 'relatively', 'small', 'due', 'nature', 'cars', 'within', 'segment', 'price', 'sold', 'significant', 'investment', 'required', 'introduce', 'new', 'models', 'market', 'could', 'experience', 'significant', 'disruption', 'production', 'capabilities', 'result', 'dependence', 'limited', 'number', 'key', 'suppliers', 'particular', 'ford', 'daimler', 'v12', 'certain', 'v8', 'engines', 'used', 'sports', 'cars', 'assembled', 'ford', 'facility', 'dedicated', 'solely', 'assembling', 'aston', 'martin', 'engines', 'pursuant', 'long', 'term', 'supply', 'agreement', 'expires', 'december', '31', '2020', 'unless', 'extension', 'agreed', 'addition', 'begun', 'source', 'certain', 'entertainment', 'electrical', 'systems', 'daimler', 'part', 'strategic', 'cooperation', 'daimler', 'currently', 'plan', 'source', 'certain', 'engines', 'daimler', 'ag', 'future', 'reliance', 'ford', 'daimler', 'principal', 'engine', 'suppliers', 'sports', 'cars', 'means', 'exposed', 'risk', 'ford', 'daimler', 'becomes', 'unable', 'unwilling', 'produce', 'supply', 'engines', 'quality', 'performance', 'engines', 'produced', 'declines', 'reasons', 'favoring', 'purchasers', 'due', 'better', 'pricing', 'volume', 'financial', 'difficulties', 'damage', 'production', 'facilities', 'caused', 'accidents', 'disasters', 'fires', 'floods', 'transportation', 'difficulties', 'labor', 'disruption', 'including', 'strikes', 'supply', 'bottlenecks', 'raw', 'materials', 'pre', 'products', 'war', 'terrorism', 'political', 'unrest', 'quality', 'performance', 'engines', 'declines', 'demand', 'products', 'may', 'adversely', 'affected', 'could', 'damage', 'brand', 'since', 'engine', 'performance', 'key', 'factor', 'sports', 'car', 'performance', 'unable', 'continue', 'obtaining', 'engines', 'ford', 'daimler', 'would', 'need', 'seek', 'alternative', 'engine', 'supplier', 'expand', 'manufacturing', 'operations', 'build', 'engines', 'although', 'licensed', 'us', 'intellectual', 'property', 'rights', 'engines', 'produced', 'supplied', 'us', 'ford', 'daimler', 'seeking', 'alternative', 'engine', 'supplier', 'expanding', 'facilities', 'manufacture', 'engines', 'would', 'take', 'time', 'significant', 'capital', 'expenditure', 'could', 'restrict', 'delay', 'ability', 'produce', 'new', 'cars', 'since', 'not', 'keep', 'stocks', 'engines', 'result', 'materially', 'reduce', 'revenues', 'addition', 'either', 'alternatives', 'could', 'increase', 'cost', 'engines', 'compared', 'prices', 'currently', 'pay', 'affect', 'quality', 'performance', 'engines', 'could', 'material', 'adverse', 'effect', 'business', 'results', 'operation', 'addition', 'rely', 'limited', 'number', 'suppliers', 'certain', 'raw', 'materials', 'components', 'used', 'products', 'reasons', 'quality', 'assurance', 'cost', 'effectiveness', 'availability', 'procure', 'certain', 'raw', 'materials', 'components', 'sole', 'limited', 'source', 'suppliers', 'example', 'ensure', 'leather', 'used', 'products', 'highest', 'quality', 'source', 'majority', 'leather', 'used', 'products', 'pursuant', 'long', 'standing', 'relationship', 'one', 'supplier', 'number', 'abattoirs', 'united', 'kingdom', 'additionally', 'rely', 'exotic', 'materials', 'carbon', 'fiber', 'limited', 'suppliers', 'dependence', 'limited', 'number', 'third', 'party', 'suppliers', 'involves', 'several', 'risks', 'including', 'risk', 'supplies', 'becoming', 'expensive', 'due', 'supplier', 'pricing', 'power', 'limited', 'availability', 'delivery', 'schedules', 'risk', 'quality', 'products', 'produced', 'supplier', 'declining', 'one', 'suppliers', 'not', 'fulfill', 'delivery', 'obligations', 'unable', 'supply', 'products', 'requisite', 'quality', 'significant', 'risk', 'ability', 'produce', 'vehicles', 'quality', 'vehicles', 'could', 'negatively', 'impacted', 'could', 'adversely', 'affect', 'demand', 'vehicles', 'damage', 'brand', 'impact', 'could', 'exacerbated', 'since', 'not', 'generally', 'keep', 'significant', 'inventories', 'raw', 'materials', 'components', 'unable', 'obtain', 'raw', 'materials', 'components', 'key', 'sole', 'limited', 'source', 'suppliers', 'quality', 'products', 'declines', 'business', 'financial', 'position', 'results', 'operation', 'could', 'materially', 'adversely', 'affected', 'business', 'seasonal', 'nature', 'substantial', 'decrease', 'sales', 'certain', 'quarters', 'could', 'material', 'adverse', 'impact', 'financial', 'performance', 'sales', 'automotive', 'industry', 'cyclical', 'past', 'expect', 'cyclicality', 'continue', 'sales', 'volumes', 'prices', 'cars', 'influenced', 'cyclicality', 'seasonality', 'demand', 'example', 'sales', 'tend', 'lower', 'first', 'quarter', 'line', 'lower', 'customer', 'demand', 'winter', 'northern', 'hemisphere', 'also', 'affected', 'biannual', 'registration', 'vehicles', 'united', 'kingdom', 'new', 'vehicle', 'registrations', 'take', 'place', 'march', 'september', 'turn', 'positive', 'impact', 'resale', 'value', 'vehicles', '29', 'registered', 'starting', 'march', '1', 'september', '1', 'leads', 'increase', 'sales', 'period', 'biannual', 'registration', 'vehicles', 'occurs', 'sales', 'middle', 'east', 'united', 'states', 'driven', 'model', 'year', 'changes', 'markets', 'driven', 'introduction', 'new', 'models', 'historically', 'occured', 'autumn', 'year', 'furthermore', 'large', 'number', 'markets', 'tend', 'impacted', 'summer', 'vacation', 'period', 'results', 'lower', 'demand', 'resulting', 'sales', 'profile', 'influences', 'operating', 'results', 'quarter', 'quarter', 'basis', 'sales', 'peak', 'periods', 'particularly', 'autumn', 'season', 'new', 'models', 'introduced', 'significantly', 'lower', 'expected', 'reason', 'may', 'unable', 'adjust', 'expenses', 'time', 'react', 'reduced', 'levels', 'sales', 'addition', 'cash', 'needs', 'connection', 'business', 'seasonally', 'correlated', 'reaching', 'highest', 'level', 'first', 'quarter', 'lowest', 'level', 'fourth', 'quarter', 'since', 'receive', 'payments', 'fourth', 'quarter', 'tends', 'reduce', 'profitability', 'margins', 'first', 'three', 'months', 'financial', 'year', 'since', 'several', 'elements', 'costs', 'expenses', 'including', 'particular', 'fixed', 'element', 'cost', 'sales', 'not', 'reduce', 'line', 'sales', 'result', 'may', 'left', 'excessive', 'costs', 'may', 'experience', 'significant', 'drop', 'cash', 'flow', 'funds', 'operate', 'business', 'could', 'material', 'effect', 'business', 'financial', 'condition', 'results', 'operation', 'conditions', 'global', 'economy', 'may', 'adversely', 'affect', 'us', 'sales', 'products', 'services', 'affected', 'overall', 'general', 'economic', 'conditions', 'sales', 'materially', 'impacted', 'economic', 'cycle', 'periods', 'deteriorating', 'general', 'economic', 'conditions', 'may', 'result', 'significant', 'reduction', 'product', 'sales', 'may', 'negatively', 'impact', 'profitability', 'put', 'downward', 'pressure', 'product', 'service', 'prices', 'volumes', 'demonstrated', 'recent', 'economic', 'downturn', 'car', 'sales', 'fell', '7', '281', 'cars', 'year', 'ended', 'december', '31', '2007', '6', '088', 'cars', 'year', 'ended', 'december', '31', '2008', '3', '131', 'cars', 'year', 'ended', 'december', '31', '2009', 'sales', 'since', 'recovered', 'still', 'remain', '2007', 'levels', '3', '687', 'car', 'sales', 'year', 'ended', 'december', '31', '2016', 'impact', 'adverse', 'economic', 'conditions', 'could', 'also', 'exacerbated', 'dealer', 'network', 'taking', 'steps', 'improve', 'financial', 'position', 'face', 'decreasing', 'overall', 'demand', 'including', 'sale', 'floor', 'demonstration', 'models', 'dealers', 'prices', 'retail', 'price', 'cars', 'fewer', 'purchases', 'demonstration', 'floor', 'models', 'dealers', 'dealers', 'reducing', 'prices', 'pre', 'owned', 'aston', 'martin', 'cars', 'actions', 'taken', 'dealers', 'may', 'reduce', 'demand', 'new', 'cars', 'declines', 'demand', 'associated', 'economic', 'conditions', 'may', 'require', 'cutbacks', 'production', 'reduced', 'working', 'hours', 'redundancies', 'reduce', 'cost', 'base', 'redundancies', 'may', 'increase', 'costs', 'short', 'term', 'may', 'also', 'lead', 'capacity', 'constraints', 'demand', 'recovers', 'measures', 'taken', 'reduce', 'production', 'levels', 'factory', 'assembly', 'line', 'closures', 'reduced', 'working', 'hours', 'may', 'also', 'lead', 'capacity', 'constraints', 'demand', 'recovers', 'inability', 'meet', 'demand', 'economic', 'recovery', 'could', 'weaken', 'relative', 'market', 'position', 'compared', 'competitors', 'reduce', 'potential', 'revenues', 'profits', 'downturns', 'general', 'economic', 'conditions', 'may', 'also', 'materially', 'impact', 'suppliers', 'adverse', 'economic', 'conditions', 'may', 'cause', 'suppliers', 'unable', 'meet', 'commitments', 'us', 'could', 'limit', 'ability', 'produce', 'sufficient', 'numbers', 'cars', 'meet', 'demand', 'ability', 'produce', 'cars', 'suppliers', 'may', 'also', 'seek', 'reduce', 'costs', 'response', 'adverse', 'economic', 'conditions', 'could', 'reduce', 'quality', 'products', 'turn', 'could', 'damage', 'reputation', 'suppliers', 'may', 'also', 'seek', 'make', 'changes', 'credit', 'terms', 'extend', 'us', 'could', 'affect', 'liquidity', 'factors', 'turn', 'could', 'assert', 'negative', 'pressure', 'dealers', 'may', 'adversely', 'affect', 'dealer', 'network', 'legal', 'political', 'economic', 'uncertainty', 'surrounding', 'planned', 'exit', 'united', 'kingdom', 'european', 'union', 'may', 'source', 'instability', 'international', 'markets', 'create', 'significant', 'currency', 'fluctuations', 'adversely', 'impact', 'current', 'trading', 'supply', 'arrangements', 'could', 'material', 'adverse', 'effect', 'business', 'results', 'operations', 'financial', 'condition', 'uk', 'held', 'referendum', 'june', '23', '2016', 'determine', 'whether', 'uk', 'leave', 'eu', 'remain', 'member', 'state', 'outcome', 'referendum', 'favor', 'leaving', '30', 'eu', 'article', '50', '2009', 'lisbon', 'treaty', 'article', '50', 'uk', 'cease', 'member', 'state', 'withdrawal', 'agreement', 'entered', 'failing', 'two', 'years', 'following', 'notification', 'intention', 'leave', 'article', '50', 'unless', 'european', 'council', 'together', 'uk', 'unanimously', 'decides', 'extend', 'period', 'uk', 'not', 'formally', 'notified', 'european', 'council', 'intention', 'leave', 'eu', 'british', 'government', 'indicated', 'plans', 'trigger', 'article', '50', 'commence', 'negotiations', 'determine', 'terms', 'uk', 'withdrawal', 'eu', 'end', 'march', '2017', 'february', '1', '2017', 'uk', 'house', 'commons', 'voted', 'advance', 'bill', 'would', 'give', 'british', 'government', 'authority', 'invoke', 'article', '50', 'march', '13', '2017', 'house', 'lords', 'also', 'voted', 'favor', 'bill', 'passage', 'uk', 'officially', 'exits', 'eu', 'eu', 'laws', 'regulations', 'continue', 'apply', 'changes', 'application', 'laws', 'regulations', 'unlikely', 'occur', 'negotiations', 'however', 'due', 'size', 'importance', 'uk', 'economy', 'uncertainty', 'unpredictability', 'concerning', 'uk', 'legal', 'political', 'economic', 'relationship', 'europe', 'uk', 'exits', 'eu', 'may', 'continue', 'source', 'instability', 'international', 'markets', 'create', 'significant', 'currency', 'fluctuations', 'otherwise', 'adversely', 'affect', 'trading', 'agreements', 'similar', 'cross', 'border', 'cooperation', 'arrangements', 'whether', 'economic', 'tax', 'fiscal', 'legal', 'regulatory', 'otherwise', 'foreseeable', 'future', 'including', 'beyond', 'date', 'uk', 'withdrawal', 'eu', 'based', 'uk', 'sold', '18', 'cars', 'eu', 'member', 'states', 'outside', 'uk', 'negative', 'impact', 'ability', 'continue', 'selling', 'cars', 'eu', 'member', 'states', 'terms', 'make', 'sales', 'including', 'imposition', 'import', 'duties', 'could', 'significant', 'adverse', 'impact', 'sales', 'profitability', 'additionally', 'rate', 'exchange', 'pound', 'sterling', 'vis', 'vis', 'currencies', 'dropped', 'significantly', 'since', 'referendum', 'results', 'increasing', 'costs', 'non', 'sterling', 'denominated', 'auto', 'parts', 'including', 'engines', 'purchase', 'ford', 'daimler', 'euro', 'raw', 'materials', 'well', 'obligations', 'including', 'dollar', 'notes', 'offered', 'hereby', 'also', 'possible', 'outcome', 'uk', 'referendum', 'lead', 'eu', 'member', 'states', 'consider', 'leaving', 'eu', 'could', 'additional', 'source', 'instability', 'international', 'markets', 'regardless', 'form', 'withdrawal', 'agreement', 'likely', 'changes', 'legal', 'rights', 'obligations', 'commercial', 'parties', 'across', 'industries', 'following', 'exit', 'uk', 'eu', 'reasons', 'uk', 'decision', 'leave', 'eu', 'could', 'material', 'adverse', 'effect', 'business', 'results', 'operations', 'financial', 'condition', 'long', 'term', 'success', 'depends', 'attracting', 'retaining', 'key', 'management', 'personnel', 'failure', 'attract', 'retain', 'maintain', 'good', 'relationships', 'employees', 'may', 'adversely', 'affect', 'business', 'future', 'success', 'depends', 'substantially', 'continued', 'service', 'performance', 'members', 'senior', 'management', 'team', 'running', 'daily', 'operations', 'well', 'planning', 'execution', 'strategy', 'also', 'dependent', 'ability', 'retain', 'replace', 'design', 'engineering', 'technical', 'personnel', 'able', 'continue', 'produce', 'products', 'competitive', 'terms', 'performance', 'quality', 'aesthetics', 'strong', 'competition', 'worldwide', 'experienced', 'senior', 'management', 'personnel', 'technical', 'industry', 'expertise', 'lose', 'services', 'existing', 'members', 'senior', 'management', 'key', 'personnel', 'may', 'difficulty', 'incur', 'additional', 'costs', 'replacing', 'unable', 'find', 'suitable', 'replacements', 'timely', 'manner', 'ability', 'realize', 'strategic', 'objectives', 'could', 'impaired', 'addition', 'ability', 'realize', 'strategic', 'objectives', 'could', 'impaired', 'unable', 'recruit', 'sufficient', 'numbers', 'quality', 'new', 'personnel', 'support', 'objectives', 'addition', 'labor', 'intensive', 'nature', 'business', 'requires', 'adequate', 'supply', 'qualified', 'skilled', 'production', 'workers', 'necessary', 'maintain', 'high', 'manufacturing', 'standards', 'required', 'products', 'well', 'experienced', 'engineers', 'developing', 'future', 'models', 'number', 'areas', 'including', 'leather', 'sewing', 'pool', 'skilled', 'workers', 'declined', 'last', 'decade', 'may', 'experience', 'high', 'rate', 'skilled', 'employee', 'turnover', 'labor', 'shortages', 'increased', 'employment', 'competition', 'manufacturers', 'inability', 'hire', 'retain', 'skilled', 'employees', 'increased', 'labor', 'costs', 'generally', 'could', 'material', 'adverse', 'effect', 'ability', 'control', 'expenses', 'efficiently', 'conduct', 'operations', 'many', 'manufacturers', 'compete', 'skilled', 'employees', 'greater', 'financial', 'resources', 'us', 'part', '31', 'certain', 'manufacturers', 'part', 'larger', 'automotive', 'group', 'also', 'face', 'particular', 'risks', 'proximity', 'manufacturing', 'facility', 'gaydon', 'number', 'automotive', 'manufacturers', 'including', 'jaguar', 'land', 'rover', 'whose', 'engineering', 'facility', 'adjacent', 'gaydon', 'facility', 'whose', 'nearest', 'manufacturing', 'facility', '24', 'miles', 'gaydon', 'site', 'approximately', '21', 'employees', 'unionized', 'members', 'unite', 'production', 'areas', 'business', 'compromised', 'prolonged', 'industrial', 'action', 'business', 'financial', 'position', 'results', 'operations', 'could', 'materially', 'adversely', 'affected', 'competitors', 'may', 'also', 'obtain', 'competitive', 'advantages', 'succeed', 'negotiating', 'collective', 'wage', 'agreements', 'better', 'terms', 'conditions', 'foreign', 'competitors', 'particular', 'may', 'also', 'obtain', 'competitive', 'advantages', 'due', 'flexible', 'legal', 'regulatory', 'environments', 'could', 'enable', 'competitors', 'sell', 'cars', 'lower', 'price', 'us', 'may', 'not', 'able', 'continue', 'hire', 'retain', 'sufficiently', 'skilled', 'labor', 'force', 'necessary', 'operate', 'efficiently', 'support', 'operating', 'growth', 'strategies', 'addition', 'labor', 'expenses', 'could', 'increase', 'result', 'continuing', 'shortages', 'supply', 'personnel', 'employment', 'competition', 'manufacturers', 'increased', 'labor', 'costs', 'shortages', 'result', 'factors', 'could', 'material', 'adverse', 'effect', 'business', 'financial', 'position', 'results', 'operations', 'face', 'risks', 'arising', 'foreign', 'currency', 'exchange', 'rates', 'related', 'hedging', 'operate', 'globally', 'number', 'countries', 'generate', 'significant', 'portion', 'revenue', 'costs', 'including', 'costs', 'service', 'debt', 'obligations', 'currencies', 'pounds', 'sterling', 'including', 'particular', 'u', 'dollar', 'euro', 'addition', 'portion', 'costs', 'denominated', 'variety', 'currencies', 'particular', 'euro', 'currency', 'purchase', 'engines', 'ford', 'daimler', 'unfavorable', 'exchange', 'rate', 'trend', 'could', 'affect', 'operating', 'results', 'well', 'financial', 'position', 'cash', 'flow', 'example', 'recognized', 'exchange', 'rate', 'related', 'loss', '27', '6', 'million', 'translation', 'existing', 'pik', 'notes', 'denominated', 'u', 'dollars', 'year', 'ended', 'december', '31', '2016', 'dollar', 'notes', 'offered', 'hereby', 'denominated', 'u', 'dollars', 'could', 'result', 'exchange', 'raterelated', 'losses', 'future', 'past', 'three', 'years', 'significant', 'exchange', 'rate', 'fluctuations', 'particularly', 'respect', 'performance', 'pound', 'sterling', 'u', 'dollar', 'euro', 'yen', 'corresponding', 'effect', 'business', 'financial', 'position', 'results', 'operation', 'operations', 'sensitive', 'currency', 'fluctuations', 'attempt', 'manage', 'currency', 'risk', 'hedging', 'example', 'variables', 'held', 'constant', 'u', 'dollar', 'exchange', 'rate', 'decrease', 'five', 'percent', 'effect', 'profit', 'tax', '2016', 'would', 'gain', '7', '7', 'million', 'although', 'impossible', 'hedge', 'currency', 'risks', 'since', '2003', 'used', 'derivative', 'financial', 'instruments', 'order', 'reduce', 'substantial', 'effects', 'currency', 'fluctuations', 'cash', 'flows', 'financial', 'condition', 'entered', 'intend', 'continue', 'enter', 'forward', 'exchange', 'contracts', 'hedge', 'residual', 'exposure', 'pound', 'sterling', 'specifically', 'intend', 'enter', 'forward', 'exchange', 'contracts', 'hedge', 'exposure', 'due', 'issuance', 'u', 'dollar', 'denominated', 'notes', 'offered', 'hereby', 'hedging', 'instruments', 'risks', 'associated', 'use', 'instruments', 'limiting', 'degree', 'risk', 'fluctuations', 'currency', 'exchange', 'rates', 'utilizing', 'hedging', 'instruments', 'potentially', 'forgo', 'benefits', 'might', 'result', 'fluctuations', 'currency', 'exchange', 'rates', 'also', 'exposed', 'risk', 'counterparties', 'hedging', 'contracts', 'default', 'obligations', 'manage', 'exposure', 'counterparty', 'credit', 'risk', 'limiting', 'counterparties', 'major', 'international', 'banks', 'financial', 'institutions', 'meeting', 'established', 'credit', 'guidelines', 'however', 'default', 'counterparties', 'might', 'adverse', 'effect', 'business', 'financial', 'conditions', 'results', 'operation', 'exchange', 'rate', 'fluctuations', 'costs', 'associated', 'realization', 'losses', 'related', 'hedging', 'policies', 'may', 'material', 'adverse', 'effect', 'business', 'financial', 'position', 'results', 'operations', 'low', 'volume', 'strategy', 'may', 'limit', 'potential', 'profits', 'key', 'appeal', 'aston', 'martin', 'brand', 'marketing', 'strategy', 'aura', 'exclusivity', 'sense', 'luxury', 'brand', 'conveys', 'central', 'facet', 'exclusivity', 'limited', 'number', 'models', 'cars', 'produce', 'strategy', 'maintaining', 'car', '32', 'waiting', 'lists', 'reach', 'optimal', 'combination', 'exclusivity', 'client', 'service', 'low', 'volume', 'strategy', 'also', 'important', 'factor', 'prices', 'clients', 'willing', 'pay', 'cars', 'important', 'current', 'marketing', 'strategy', 'focus', 'maintaining', 'low', 'volumes', 'exclusivity', 'may', 'limit', 'potential', 'sales', 'growth', 'profitability', 'may', 'time', 'time', 'face', 'investor', 'market', 'pressure', 'demonstrate', 'growth', 'including', 'increasing', 'volume', 'cars', 'sell', 'change', 'strategy', 'increase', 'production', 'cars', 'aggressively', 'may', 'unable', 'maintain', 'exclusivity', 'aston', 'martin', 'brand', 'unable', 'balance', 'brand', 'exclusivity', 'increased', 'production', 'may', 'erode', 'desirability', 'ultimately', 'consumer', 'demand', 'cars', 'result', 'unable', 'increase', 'car', 'production', 'meaningfully', 'introduce', 'new', 'car', 'models', 'without', 'eroding', 'image', 'exclusivity', 'brand', 'may', 'unable', 'significantly', 'increase', 'revenues', 'trend', 'towards', 'smaller', 'cars', 'engines', 'lower', 'engine', 'capacity', 'new', 'drive', 'technologies', 'could', 'negatively', 'impact', 'us', 'several', 'years', 'various', 'markets', 'europe', 'united', 'states', 'china', 'seen', 'general', 'trend', 'toward', 'demand', 'engines', 'use', 'less', 'fuel', 'emit', 'fewer', 'harmful', 'emissions', 'led', 'manufacturers', 'introducing', 'engines', 'lower', 'engine', 'capacity', 'maintaining', 'performance', 'levels', 'technological', 'advances', 'well', 'trend', 'toward', 'hybridization', 'factors', 'contributing', 'trend', 'include', 'rising', 'fuel', 'prices', 'decreasing', 'disposable', 'incomes', 'increasing', 'government', 'regulation', 'greenhouse', 'gas', 'ghg', 'emissions', 'vehicle', 'fuel', 'economy', 'counteract', 'climate', 'change', 'global', 'warming', 'speed', 'limits', 'higher', 'taxes', 'certain', 'types', 'cars', 'luxury', 'cars', 'traffic', 'density', 'large', 'cities', 'well', 'environmental', 'protection', 'air', 'pollutant', 'emissions', 'offer', 'high', 'luxury', 'sports', 'cars', 'use', 'comparatively', 'fuel', 'produce', 'comparatively', 'higher', 'levels', 'emissions', 'lower', 'car', 'classes', 'therefore', 'continuation', 'trend', 'could', 'adversely', 'impact', 'business', 'addition', 'development', 'engines', 'lower', 'capacity', 'consume', 'less', 'retaining', 'close', 'performance', 'levels', 'technologically', 'challenging', 'cost', 'intensive', 'may', 'capable', 'passing', 'cost', 'customers', 'limited', 'extent', 'not', 'risk', 'competitors', 'develop', 'products', 'meet', 'objectives', 'rapidly', 'larger', 'quantities', 'higher', 'quality', 'lower', 'cost', 'incorporating', 'new', 'technologies', 'vehicle', 'designs', 'costs', 'smaller', 'volume', 'manufacturers', 'yet', 'costs', 'spread', 'significantly', 'smaller', 'volumes', 'could', 'lead', 'increased', 'demand', 'competitors', 'products', 'result', 'loss', 'market', 'share', 'addition', 'use', 'new', 'technology', 'increasingly', 'resulting', 'automotive', 'industry', 'customers', 'no', 'longer', 'looking', 'products', 'basis', 'current', 'standard', 'factors', 'price', 'design', 'performance', 'brand', 'image', 'comfort', 'available', 'features', 'also', 'basis', 'technology', 'used', 'car', 'manufacturer', 'could', 'lead', 'shifts', 'demand', 'automotive', 'industry', 'turn', 'could', 'lead', 'lower', 'demand', 'products', 'manufactured', 'us', 'factors', 'could', 'material', 'adverse', 'effect', 'business', 'financial', 'condition', 'results', 'operation', 'new', 'laws', 'regulations', 'policies', 'governmental', 'organizations', 'regarding', 'increased', 'fuel', 'economy', 'requirements', 'reduced', 'greenhouse', 'gas', 'pollutant', 'emissions', 'vehicle', 'safety', 'environmental', 'health', 'safety', 'laws', 'changes', 'existing', 'laws', 'may', 'significant', 'effect', 'business', 'subject', 'comprehensive', 'constantly', 'evolving', 'laws', 'regulations', 'policies', 'throughout', 'world', 'expect', 'extent', 'legal', 'regulatory', 'requirements', 'affecting', 'business', 'operations', 'costs', 'compliance', 'continue', 'increase', 'future', 'europe', 'united', 'states', 'example', 'significant', 'governmental', 'regulation', 'driven', 'environmental', 'including', 'climate', 'change', 'fuel', 'economy', 'vehicle', 'safety', 'noise', 'emission', 'concerns', 'particular', 'vehicle', 'emissions', 'standards', 'test', 'procedures', 'scrutiny', 'europe', 'united', 'states', 'following', 'investigations', 'use', 'software', 'designed', 'produce', 'compliant', 'emission', 'standards', 'software', 'detected', 'vehicle', 'subjected', 'emissions', 'compliance', 'test', 'called', 'defeat', 'device', 'regulators', 'consumers', 'environmental', 'social', 'interest', 'groups', 'heavily', 'focused', 'emissions', 'data', 'testing', 'procedures', 'inconsistencies', 'notably', 'european', 'union', '33', 'introduced', 'real', 'driving', 'emissions', 'test', 'evolving', 'regulatory', 'requirements', 'could', 'significantly', 'affect', 'product', 'development', 'plans', 'may', 'limit', 'number', 'types', 'cars', 'sell', 'sell', 'may', 'affect', 'revenue', 'governmental', 'regulations', 'may', 'increase', 'costs', 'incur', 'design', 'develop', 'produce', 'cars', 'may', 'affect', 'product', 'portfolio', 'regulation', 'may', 'also', 'result', 'change', 'character', 'performance', 'characteristics', 'cars', 'may', 'render', 'less', 'appealing', 'customers', 'example', 'current', 'european', 'legislation', 'limits', 'fleet', 'average', 'co2', 'emissions', 'new', 'passenger', 'cars', 'new', 'targets', 'set', '2014', 'stringent', 'emission', 'targets', 'applicable', '2017', '2021', 'period', 'due', 'small', 'volume', 'manufacturer', 'svm', 'status', 'benefit', 'derogation', 'existing', 'co2', 'emissions', 'requirement', 'instead', 'required', 'meet', 'alternative', 'targets', 'fleet', 'eu', 'registered', 'vehicles', 'therefore', '2015', 'submitted', 'proposed', 'co2', 'emissions', 'target', '2017', '2021', 'period', 'eu', 'commission', 'approval', 'currently', 'awaiting', 'approval', 'expected', 'published', 'may', '2017', 'united', 'states', 'u', 'environmental', 'protection', 'agency', 'epa', 'national', 'highway', 'traffic', 'safety', 'administration', 'nhtsa', 'set', 'federal', 'standards', 'passenger', 'cars', 'light', 'trucks', 'meet', 'certain', 'corporate', 'average', 'fuel', 'economy', 'cafe', 'levels', 'ghg', 'emissions', 'standards', 'requirements', 'scheduled', 'become', 'increasingly', 'stringent', 'model', 'years', '2017', '2021', 'standards', 'model', 'year', '2022', '2025', 'set', 'become', 'even', 'stringent', 'unless', 'revised', 'epa', 'nhtsa', 'nhtsa', 'authority', 'exempt', 'generally', 'applicable', 'cafe', 'standards', 'manufacturers', 'produce', 'fewer', '10', '000', 'passenger', 'cars', 'globally', 'nhtsa', 'exempts', 'manufacturer', 'must', 'establish', 'alternate', 'standard', 'manufacturer', 'model', 'year', 'level', 'agency', 'decides', 'maximum', 'standard', 'feasible', 'manufacturer', 'nhtsa', 'adopted', 'alternative', 'standards', 'small', 'volume', 'manufacturers', 'petitioned', 'nhtsa', 'alternative', 'cafe', 'standards', 'model', 'year', '2012', '2019', 'nhtsa', 'not', 'acted', 'petitions', 'although', 'nhtsa', 'not', 'taken', 'position', 'failed', 'meet', 'cafe', 'standards', 'applicable', 'past', 'model', 'years', 'manufacturer', 'subject', 'substantial', 'civil', 'penalties', 'fails', 'meet', 'cafe', 'standards', 'can', 'not', 'rule', 'possibility', 'nhtsa', 'future', 'allege', 'failed', 'meet', 'cafe', 'standards', 'model', 'year', '2012', 'future', 'ability', 'apply', 'alternative', 'standards', 'dependent', 'upon', 'not', 'exceeding', '10', '000', 'vehicles', 'produced', 'global', 'sale', 'expect', 'exceed', 'figure', '2020', '2021', 'calendar', 'year', 'timeframe', 'point', 'cafe', 'fines', 'begin', 'apply', 'default', 'standards', 'not', 'met', 'fleetwide', 'ghg', 'emissions', 'exceeded', 'level', 'allowed', 'epa', 'ghg', 'standard', 'model', 'years', '2012', '2016', 'although', 'epa', 'deemed', 'us', 'conditionally', 'exempt', 'requirement', '2012', 'currently', 'negotiating', 'purchase', 'ghg', 'credits', 'cover', 'exceedances', 'model', 'years', '2013', '2016', 'can', 'not', 'assure', 'able', 'purchase', 'credits', 'reasonable', 'cost', 'not', 'able', 'able', 'satisfy', 'epa', 'made', 'requisite', 'good', 'faith', 'effort', 'beginning', '2017', 'model', 'year', 'svms', 'no', 'longer', 'eligible', 'conditional', 'exemptions', 'ghg', 'standard', 'must', 'either', 'comply', 'standard', 'request', 'alternative', 'fleet', 'average', 'ghg', 'standard', 'model', 'year', 'based', 'capability', 'also', 'adhering', 'notional', 'year', 'year', 'improvement', 'petitioned', 'epa', 'alternative', 'ghg', 'standard', 'begin', 'model', 'year', '2017', 'however', 'epa', 'not', 'yet', 'granted', 'request', 'fleet', 'average', 'ghg', 'emissions', '2017', '2018', 'model', 'years', 'exceed', 'ghg', 'standard', 'would', 'apply', 'epa', 'deny', 'request', 'meaning', 'unless', 'petition', 'granted', 'need', 'purchase', 'ghg', 'credits', 'avoid', 'subject', 'penalties', 'epa', 'also', 'adopted', 'tailpipe', 'evaporative', 'emissions', 'standards', 'become', 'increasingly', 'stringent', 'time', 'epa', 'tier', '3', 'standards', 'tailpipe', 'evaporative', 'emissions', 'gasoline', 'sulfur', 'content', 'increase', 'stringency', 'model', 'years', '2017', '2025', 'california', 'also', 'adopted', 'low', 'emissions', 'vehicle', 'program', 'lev3', 'standards', 'require', 'additional', 'reductions', 'emissions', 'thirteen', 'additional', 'states', 'u', 'district', 'columbia', 'adopted', 'lev3', 'standards', 'canada', 'applies', 'exemption', 'standards', 'us', 'long', 'sell', '750', 'cars', 'market', '2016', 'sold', '68', 'cars', 'canada', '34', 'governments', 'around', 'world', 'china', 'hong', 'kong', 'canada', 'south', 'korea', 'certain', 'middle', 'eastern', 'countries', 'also', 'creating', 'new', 'policies', 'address', 'issues', 'could', 'even', 'stringent', 'u', 'european', 'requirements', 'united', 'states', 'europe', 'government', 'policies', 'applied', 'us', 'could', 'significantly', 'affect', 'product', 'development', 'plans', 'china', 'example', 'stage', 'iii', 'fuel', 'consumption', 'regulations', 'targeted', 'national', 'average', 'fuel', 'consumption', '6', '9', 'l', '100km', '2015', 'stage', 'iv', 'targets', 'national', 'average', 'fuel', 'consumption', '5', '0', 'l', '100km', '2021', 'response', 'severe', 'air', 'quality', 'issues', 'beijing', 'major', 'chinese', 'cities', 'chinese', 'government', 'also', 'intends', 'adopt', 'stringent', 'emissions', 'standards', 'mainland', 'china', 'unclear', 'whether', 'new', 'standards', 'adopted', 'include', 'exceptions', 'svms', 'similar', 'currently', 'place', 'united', 'states', 'eu', 'could', 'lose', 'eligibility', 'svm', 'specific', 'derogations', 'eu', 'united', 'states', 'not', 'continue', 'meet', 'necessary', 'eligibility', 'criteria', 'applicable', 'regulations', 'evolve', 'order', 'meet', 'criteria', 'may', 'need', 'modify', 'growth', 'plans', 'operations', 'furthermore', 'even', 'continue', 'benefit', 'derogations', 'svm', 'subject', 'alternative', 'standards', 'regulators', 'deem', 'appropriate', 'technical', 'economic', 'capabilities', 'alternative', 'standards', 'may', 'significantly', 'stringent', 'currently', 'applicable', 'generally', 'accepted', 'emissions', 'fuel', 'economy', 'standards', 'continue', 'develop', 'encompass', 'greater', 'stringency', 'timing', 'application', 'tighter', 'standards', 'issue', 'ineligible', 'svm', 'exemptions', 'may', 'mean', 'limited', 'time', 'limited', 'capability', 'meet', 'standards', 'disadvantage', 'compared', 'automakers', 'meeting', 'fleet', 'wide', 'average', 'emissions', 'fuel', 'economy', 'standards', 'given', 'many', 'automakers', 'relatively', 'loweremitting', 'higher', 'fuel', 'economy', 'vehicles', 'fleets', 'products', 'must', 'satisfy', 'legal', 'safety', 'requirements', 'meeting', 'exceeding', 'government', 'mandated', 'safety', 'standards', 'difficult', 'costly', 'oftentimes', 'crashworthiness', 'standards', 'tend', 'conflict', 'need', 'reduce', 'car', 'weight', 'order', 'meet', 'emissions', 'fuel', 'economy', 'standards', 'maintain', 'performance', 'levels', 'example', 'certain', 'vehicles', 'permitted', 'sold', 'united', 'states', 'pursuant', 'temporary', 'exemption', 'related', 'safety', 'standards', 'related', 'crash', 'protection', 'temporary', 'exemption', 'expires', 'later', 'year', 'plan', 'stop', 'selling', 'vehicles', 'united', 'states', 'managing', 'product', 'development', 'production', 'operations', 'global', 'basis', 'reduce', 'costs', 'lead', 'times', 'unique', 'national', 'regional', 'standards', 'result', 'additional', 'costs', 'product', 'development', 'testing', 'manufacturing', 'governments', 'often', 'require', 'implementation', 'new', 'requirements', 'middle', 'product', 'cycle', 'substantially', 'expensive', 'accommodating', 'requirements', 'design', 'new', 'product', 'circumstances', 'governmental', 'authorities', 'may', 'initiate', 'recall', 'result', 'investigations', 'operations', 'may', 'expend', 'considerable', 'resources', 'connection', 'product', 'recalls', 'resources', 'may', 'typically', 'include', 'cost', 'part', 'replaced', 'labor', 'required', 'remove', 'replace', 'defective', 'part', 'addition', 'product', 'recalls', 'could', 'prevent', 'delay', 'launch', 'new', 'model', 'cars', 'cause', 'consumers', 'question', 'safety', 'reliability', 'cars', 'harm', 'reputation', 'harm', 'reputation', 'one', 'models', 'could', 'result', 'substantial', 'loss', 'customers', 'imposition', 'additional', 'taxes', 'levies', 'change', 'government', 'policy', 'designed', 'limit', 'use', 'high', 'performance', 'sports', 'cars', 'automobiles', 'generally', 'could', 'also', 'adversely', 'affect', 'demand', 'cars', 'occurrence', 'may', 'material', 'adverse', 'effect', 'business', 'financial', 'position', 'results', 'operations', 'existing', 'regulations', 'well', 'new', 'stricter', 'rules', 'policies', 'could', 'subject', 'sizeable', 'civil', 'criminal', 'penalties', 'found', 'breached', 'regulations', 'subject', 'third', 'party', 'claims', 'us', 'loss', 'injury', 'might', 'restrict', 'modify', 'product', 'offerings', 'drastically', 'remain', 'compliance', 'could', 'suffer', 'damage', 'reputation', 'violations', 'laws', 'may', 'occur', 'among', 'ways', 'errors', 'monitoring', 'emissions', 'products', 'production', 'sites', 'environment', 'use', 'incorrect', 'methodologies', 'defective', 'inappropriate', 'measuring', 'equipment', 'errors', 'manually', 'capturing', 'results', 'mistaken', 'unauthorized', 'acts', 'employees', 'suppliers', 'agents', 'result', 'current', 'future', 'emissions', 'requirements', 'may', 'required', 'apply', 'exemptions', 'small', 'scale', 'producers', 'pay', 'penalties', 'make', 'significant', 'investments', 'alter', 'product', 'line', 'unable', 'sell', 'products', 'certain', 'jurisdictions', 'addition', 'comply', '35', 'current', 'future', 'environmental', 'health', 'safety', 'norms', 'air', 'emissions', 'wastewater', 'discharges', 'accidental', 'releases', 'environment', 'human', 'exposure', 'hazardous', 'materials', 'storage', 'treatment', 'transportation', 'disposal', 'wastes', 'hazardous', 'materials', 'investigation', 'clean', 'contamination', 'chemical', 'regulation', 'process', 'safety', 'maintenance', 'safe', 'conditions', 'workplace', 'regulations', 'impose', 'responsibility', 'vehicle', 'manufacturers', 'fund', 'recovery', 'recycling', 'disposal', 'vehicle', 'parts', 'including', 'lead', 'acid', 'batteries', 'end', 'useful', 'life', 'may', 'incur', 'substantial', 'capital', 'expenditure', 'research', 'development', 'expenditure', 'upgrade', 'products', 'manufacturing', 'facilities', 'factors', 'could', 'increase', 'costs', 'material', 'adverse', 'effect', 'business', 'financial', 'condition', 'results', 'operation', 'effects', 'certain', 'vehicle', 'safety', 'regulations', 'may', 'adverse', 'impact', 'us', 'new', 'regulations', 'respect', 'vehicle', 'safety', 'including', 'vehicle', 'vehicle', 'vehicle', 'infrastructure', 'communications', 'related', 'technologies', 'could', 'come', 'force', 'near', 'future', 'example', 'nhtsa', 'proposing', 'issue', 'new', 'safety', 'standard', 'requiring', 'new', 'light', 'vehicles', 'capable', 'vehicle', 'vehicle', 'v2v', 'communications', 'send', 'receive', 'basic', 'safety', 'messages', 'vehicles', 'regulations', 'may', 'require', 'us', 'develop', 'purchase', 'new', 'products', 'technologies', 'resulting', 'additional', 'costs', 'risks', 'associated', 'ability', 'inability', 'develop', 'procure', 'compliant', 'systems', 'additionally', 'absence', 'regulations', 'failure', 'keep', 'state', 'art', 'technologies', 'also', 'risk', 'product', 'liability', 'perspective', 'absence', 'state', 'art', 'feature', 'exists', 'within', 'wide', 'vehicle', 'population', 'could', 'considered', 'defect', 'additional', 'costs', 'associated', 'developing', 'procuring', 'relevant', 'products', 'ensure', 'compliance', 'new', 'regulations', 'penalties', 'not', 'position', 'comply', 'regulations', 'product', 'liability', 'losses', 'result', 'inability', 'keep', 'state', 'art', 'technologies', 'could', 'material', 'impact', 'business', 'financial', 'condition', 'results', 'operations', 'effects', 'certain', 'european', 'regulatory', 'changes', 'may', 'material', 'adverse', 'impact', 'us', 'due', 'rules', 'contained', 'european', 'commission', 'industry', 'specific', 'block', 'exemption', 'regulation', 'eu', 'no', '461', '2010', 'may', '27', '2010', 'current', 'expansion', 'access', 'technical', 'information', 'genuine', 'parts', 'independent', 'market', 'participants', 'result', 'amendment', 'euro', '5', 'euro', '6', 'legislation', 'regulation', 'ec', 'no', '715', '2007', 'european', 'parliament', 'council', 'june', '20', '2007', 'type', 'approval', 'motor', 'cars', 'respect', 'emissions', 'light', 'passenger', 'commercial', 'cars', 'access', 'car', 'repair', 'maintenance', 'information', 'well', 'commission', 'regulation', 'ec', 'no', '692', '2008', 'july', '18', '2008', 'implementing', 'amending', 'regulation', 'ec', 'no', '715', '2007', 'risk', 'independent', 'market', 'participants', 'obtaining', 'greater', 'access', 'technical', 'information', 'genuine', 'parts', 'expansion', 'independent', 'market', 'participants', 'access', 'technical', 'information', 'regarding', 'genuine', 'parts', 'could', 'give', 'rise', 'additional', 'testing', 'expenses', 'costs', 'us', 'order', 'adapt', 'new', 'regulations', 'expansion', 'independent', 'market', 'participants', 'access', 'technical', 'information', 'regarding', 'genuine', 'parts', 'could', 'also', 'cause', 'us', 'exposed', 'greater', 'competition', 'parts', 'business', 'future', 'area', 'new', 'car', 'sales', 'accordance', 'specifications', 'motor', 'vehicle', 'block', 'exemption', 'regulation', 'ec', 'no', '1400', '2002', 'commission', 'july', '31', '2002', 'motor', 'vehicle', 'ber', '2002', 'apply', 'qualitative', 'quantitative', 'selection', 'criteria', 'number', 'dealers', 'must', 'fulfill', 'specified', 'qualitative', 'standards', 'limited', 'provisions', 'motor', 'vehicle', 'ber', '2002', 'selective', 'sales', 'distribution', 'system', 'exempt', 'article', '101', '1', 'treaty', 'functioning', 'european', 'union', 'tfeu', 'market', 'shares', 'producer', 'not', 'exceed', '40', 'market', 'share', 'exceeds', 'level', 'qualitative', 'selection', 'permitted', 'june', '1', '2013', 'non', 'sector', 'specific', 'block', 'exemption', 'regulation', 'vertical', 'agreements', 'commission', 'regulation', 'ec', 'no', '330', '2010', 'april', '20', '2010', 'vertical', 'ber', 'also', 'applied', 'purchase', 'sale', 'resale', 'new', 'motor', 'cars', 'no', 'longer', 'special', 'exemptions', 'sale', 'resale', 'new', 'motor', 'cars', 'according', 'vertical', 'ber', 'quantitatively', 'selective', 'sales', 'distribution', 'system', 'permitted', 'market', 'share', 'companies', 'concerned', 'not', 'exceed', '30', 'respective', 'markets', 'supplementary', '36', 'guidelines', 'vertical', 'restrictions', 'agreements', 'concerning', 'sale', 'repair', 'motor', 'cars', 'distribution', 'motor', 'car', 'genuine', 'parts', 'european', 'commission', 'specifies', 'quantitatively', 'selective', 'distribution', 'generally', 'satisfies', 'exemption', 'requirements', 'article', '101', '3', 'tfeu', 'market', 'shares', 'companies', 'concerned', 'not', 'exceed', '40', 'could', 'significant', 'adverse', 'impact', 'business', 'customers', 'not', 'continue', 'use', 'manufacturer', 'produced', 'parts', 'addition', 'also', 'face', 'risk', 'new', 'competition', 'law', 'regimes', 'around', 'world', 'hong', 'kong', 'could', 'impact', 'sales', 'dealers', 'rest', 'world', 'exposed', 'risks', 'connection', 'product', 'related', 'guarantees', 'warranties', 'well', 'provision', 'voluntary', 'services', 'particular', 'relation', 'recall', 'campaigns', 'may', 'costly', 'may', 'harm', 'reputation', 'result', 'contractual', 'legal', 'provisions', 'obliged', 'provide', 'extensive', 'warranties', 'customers', 'dealers', 'distributors', 'risk', 'relative', 'guarantees', 'warranties', 'granted', 'calculated', 'product', 'prices', 'provisions', 'guarantee', 'warranty', 'risks', 'set', 'future', 'set', 'low', 'year', 'ended', 'december', '31', '2016', 'recognized', 'provision', '13', '7', 'million', 'expected', 'claims', 'based', 'past', 'experience', 'level', 'actual', 'warranty', 'claims', 'received', 'compared', '14', '6', 'million', 'year', 'ended', 'december', '31', '2015', 'also', 'risk', 'required', 'extend', 'guarantee', 'warranty', 'originally', 'granted', 'certain', 'markets', 'legal', 'reasons', 'provide', 'services', 'courtesy', 'reasons', 'reputation', 'not', 'legally', 'obliged', 'generally', 'not', 'able', 'assert', 'claims', 'recourse', 'suppliers', 'insurers', 'addition', 'may', 'time', 'time', 'required', 'recall', 'certain', 'products', 'foregoing', 'could', 'material', 'effect', 'business', 'financial', 'position', 'results', 'operations', 'dependent', 'upon', 'dealers', 'sale', 'promotion', 'products', 'almost', 'entirely', 'dependent', 'upon', 'third', 'party', 'dealers', 'sale', 'promotion', 'products', 'services', 'dealers', 'may', 'exert', 'upward', 'pressure', 'level', 'dealer', 'margins', 'incentives', 'may', 'also', 'encounter', 'financial', 'difficulties', 'could', 'restrict', 'selling', 'products', 'sufficient', 'numbers', 'meet', 'demand', 'selling', 'products', 'require', 'us', 'provide', 'support', 'investment', 'cause', 'seek', 'sell', 'demo', 'floor', 'models', 'would', 'usually', 'lower', 'prices', 'may', 'reduce', 'demand', 'new', 'cars', 'addition', 'financial', 'difficulties', 'affect', 'significant', 'number', 'dealers', 'region', 'sales', 'region', 'whole', 'brand', 'visibility', 'could', 'adversely', 'affected', 'market', 'require', 'us', 'incur', 'significant', 'investment', 'seek', 'new', 'dealers', 'region', 'promote', 'brand', 'see', 'also', 'business', 'model', 'based', 'availability', 'wholesale', 'finance', 'facility', 'loss', 'ability', 'draw', 'facility', 'credit', 'insurance', 'backing', 'could', 'material', 'adverse', 'effect', 'business', 'many', 'dealers', 'owned', 'dealer', 'groups', 'could', 'spread', 'impact', 'factors', 'across', 'one', 'dealership', 'risks', 'potentially', 'acute', 'middle', 'east', 'north', 'africa', 'sole', 'aston', 'martin', 'car', 'distribution', 'rights', 'owned', 'third', 'party', 'albeit', 'third', 'party', 'owned', 'certain', 'shareholders', 'growth', 'strategy', 'also', 'dependent', 'sufficient', 'number', 'new', 'aston', 'martin', 'dealers', 'opening', 'sell', 'products', 'new', 'areas', 'jurisdictions', 'particular', 'may', 'face', 'competition', 'high', 'luxury', 'sport', 'manufacturers', 'potential', 'new', 'dealer', 'openings', 'based', 'among', 'things', 'dealer', 'margin', 'incentives', 'performance', 'aston', 'martin', 'dealers', 'relevant', 'jurisdiction', 'insufficient', 'new', 'aston', 'martin', 'dealers', 'open', 'new', 'areas', 'jurisdictions', 'growth', 'prospects', 'could', 'materially', 'adversely', 'affected', 'growth', 'strategy', 'exposes', 'us', 'risks', 'second', 'century', 'plan', 'undertaking', 'substantial', 'relatively', 'rapid', 'expansion', 'operations', 'including', 'launching', 'several', 'new', 'car', 'models', 'derivatives', 'current', 'models', 'development', 'dealer', 'operations', 'new', 'countries', 'see', 'business', 'particular', 'growth', 'strategy', 'relies', 'expansion', 'operations', 'regions', 'characterized', 'higher', 'growth', 'potential', 'regions', 'mature', 'automotive', 'markets', 'see', 'developments', 'emerging', 'markets', 'may', 'adversely', 'affect', 'business', 'addition', '37', 'also', 'expanding', 'new', 'types', 'products', 'dbx', 'rapide', 'first', 'fully', 'electric', 'car', 'concept', 'costs', 'associated', 'entering', 'establishing', 'new', 'regions', 'markets', 'may', 'higher', 'expected', 'may', 'face', 'significant', 'competition', 'regions', 'markets', 'see', 'face', 'strong', 'competition', 'could', 'lead', 'significant', 'drop', 'unit', 'sales', 'price', 'deterioration', 'growth', 'strategy', 'expose', 'us', 'new', 'business', 'risks', 'may', 'not', 'expertise', 'capability', 'systems', 'manage', 'risks', 'include', 'language', 'barriers', 'cultural', 'differences', 'difficulties', 'staffing', 'managing', 'overseas', 'operations', 'inherent', 'difficulties', 'delays', 'contract', 'enforcement', 'collection', 'receivables', 'legal', 'systems', 'foreign', 'countries', 'risk', 'non', 'tariff', 'barriers', 'regulatory', 'legal', 'requirements', 'affecting', 'ability', 'enter', 'new', 'markets', 'including', 'requirements', 'joint', 'ventures', 'local', 'entities', 'difficulties', 'obtaining', 'regulatory', 'approvals', 'environmental', 'permits', 'similar', 'types', 'governmental', 'consents', 'difficulties', 'negotiating', 'effective', 'contracts', 'obtaining', 'necessary', 'facility', 'sites', 'marketing', 'outlets', 'securing', 'essential', 'local', 'financing', 'liquidity', 'trade', 'financing', 'cash', 'management', 'facilities', 'export', 'import', 'restrictions', 'multiple', 'tax', 'regimes', 'including', 'regulations', 'relating', 'transfer', 'pricing', 'withholding', 'taxes', 'remittances', 'payments', 'subsidiaries', 'foreign', 'investment', 'restrictions', 'foreign', 'exchange', 'controls', 'restrictions', 'repatriation', 'funds', 'restrictions', 'foreign', 'trade', 'investment', 'sanctions', 'burdens', 'complying', 'wide', 'variety', 'foreign', 'laws', 'regulations', 'growth', 'strategy', 'also', 'place', 'significant', 'demands', 'us', 'requiring', 'continuous', 'evolution', 'improvement', 'operational', 'financial', 'internal', 'controls', 'continued', 'expansion', 'also', 'increases', 'challenges', 'involved', 'maintaining', 'high', 'levels', 'quality', 'management', 'customer', 'satisfaction', 'recruiting', 'training', 'retaining', 'sufficient', 'skilled', 'management', 'technical', 'marketing', 'personnel', 'information', 'see', 'business', 'strategies', 'inability', 'manage', 'risks', 'meet', 'demands', 'could', 'harm', 'growth', 'prospects', 'may', 'material', 'adverse', 'effect', 'business', 'financial', 'position', 'results', 'operation', 'developments', 'emerging', 'markets', 'may', 'adversely', 'affect', 'business', 'operate', 'number', 'emerging', 'markets', 'directly', 'dealers', 'experienced', 'increasing', 'demand', 'asia', 'pacific', 'middle', 'east', 'strategy', 'contemplates', 'expanding', 'sales', 'asia', 'pacific', 'middle', 'east', 'regions', 'recognizing', 'increasing', 'hnwis', 'markets', 'demand', 'markets', 'increased', 'recent', 'years', 'due', 'sustained', 'economic', 'growth', 'growth', 'personal', 'income', 'wealth', 'unable', 'foresee', 'extent', 'economic', 'growth', 'emerging', 'markets', 'sustained', 'example', 'rising', 'geopolitical', 'tensions', 'potential', 'slowdowns', 'rate', 'growth', 'emerging', 'markets', 'could', 'limit', 'opportunity', 'us', 'increase', 'unit', 'sales', 'revenues', 'regions', 'near', 'term', 'exposure', 'emerging', 'markets', 'likely', 'increase', 'pursue', 'expanded', 'sales', 'markets', 'economic', 'political', 'developments', 'emerging', 'markets', 'including', 'economic', 'crises', 'political', 'instability', 'could', 'future', 'material', 'adverse', 'effects', 'results', 'operations', 'financial', 'condition', 'certain', 'markets', 'dealers', 'operate', 'required', 'government', 'approvals', 'may', 'limit', 'ability', 'act', 'quickly', 'making', 'decisions', 'operations', 'markets', 'government', 'actions', 'may', 'also', 'impact', 'market', 'luxury', 'goods', 'markets', 'tax', 'changes', 'active', 'discouragement', 'luxury', 'purchases', 'maintaining', 'strengthening', 'position', 'emerging', 'markets', 'key', 'component', 'global', 'growth', 'strategy', 'however', 'initiatives', 'several', 'global', 'luxury', 'automotive', 'manufacturers', 'increased', 'competitive', 'pressures', 'luxury', 'cars', 'several', 'emerging', 'markets', 'markets', 'continue', 'grow', 'anticipate', 'additional', 'competitors', 'international', 'domestic', 'seek', 'enter', 'markets', 'existing', 'market', 'participants', 'try', 'aggressively', 'protect', 'increase', 'market', 'share', 'increased', 'competition', 'may', 'result', 'pricing', 'pressures', 'reduced', 'margins', 'inability', 'gain', 'hold', 'market', 'share', 'could', 'material', 'adverse', 'effect', 'results', 'operations', 'financial', 'condition', 'currently', 'dependent', 'sole', 'manufacturing', 'facility', 'gaydon', 'united', 'kingdom', 'may', 'incur', 'unanticipated', 'costs', 'delays', 'launching', 'new', 'plant', 'st', 'athan', 'currently', 'vehicles', 'sell', 'sub', 'assemblies', 'aftermarket', 'parts', 'seats', 'bodies', 'manufactured', 'gaydon', 'facility', '2016', 'announced', 'new', '38', 'manufacturing', 'facility', 'st', 'athan', 'uk', 'construction', 'work', 'started', 'st', 'athan', 'december', '2016', 'expect', 'full', 'vehicle', 'production', 'commence', '2019', 'even', 'gaydon', 'facility', 'could', 'become', 'permanently', 'temporarily', 'unusable', 'including', 'due', 'fire', 'contamination', 'power', 'shortage', 'strikes', 'alternatively', 'changes', 'law', 'regulation', 'including', 'export', 'tax', 'employment', 'laws', 'regulations', 'economic', 'conditions', 'including', 'inflation', 'could', 'make', 'uneconomic', 'us', 'continue', 'manufacturing', 'cars', 'united', 'kingdom', 'event', 'unable', 'manufacture', 'cars', 'able', 'manufacture', 'cars', 'limited', 'numbers', 'gaydon', 'facility', 'became', 'uneconomic', 'us', 'continue', 'manufacture', 'cars', 'gaydon', 'would', 'need', 'seek', 'alternative', 'manufacturing', 'arrangements', 'would', 'take', 'time', 'therefore', 'may', 'reduce', 'ability', 'produce', 'sufficient', 'cars', 'meet', 'demand', 'would', 'materially', 'reduce', 'revenues', 'could', 'require', 'significant', 'investment', 'result', 'could', 'material', 'adverse', 'effect', 'business', 'financial', 'position', 'results', 'operations', 'number', 'financing', 'construction', 'operating', 'risks', 'associated', 'construction', 'new', 'plants', 'usually', 'construction', 'fit', 'must', 'completed', 'within', 'designated', 'timeframe', 'order', 'allow', 'production', 'design', 'cycle', 'therefore', 'construction', 'projects', 'may', 'required', 'completed', 'expedited', 'basis', 'may', 'require', 'additional', 'development', 'efforts', 'meet', 'predetermined', 'deadlines', 'may', 'result', 'significant', 'additional', 'costs', 'unanticipated', 'increase', 'development', 'costs', 'may', 'result', 'reduced', 'liquidity', 'available', 'investments', 'car', 'powertrain', 'design', 'engineering', 'manufacturing', 'capital', 'expenditures', 'necessary', 'maintain', 'schedule', 'product', 'refreshment', 'enhancements', 'addition', 'may', 'take', 'significant', 'period', 'time', 'new', 'plant', 'st', 'athan', 'becomes', 'operational', 'starts', 'manufacture', 'cars', 'increase', 'development', 'costs', 'significant', 'operational', 'delay', 'could', 'material', 'adverse', 'effect', 'business', 'prospects', 'results', 'operations', 'cash', 'flow', 'financial', 'condition', 'car', 'sales', 'depend', 'part', 'availability', 'affordable', 'financing', 'certain', 'regions', 'financing', 'new', 'car', 'sales', 'available', 'relatively', 'low', 'interest', 'rates', 'several', 'years', 'due', 'among', 'things', 'expansive', 'government', 'monetary', 'policies', 'extent', 'interest', 'rates', 'generally', 'rise', 'market', 'rates', 'new', 'car', 'financing', 'expected', 'rise', 'well', 'may', 'make', 'cars', 'less', 'affordable', 'cause', 'consumers', 'purchase', 'less', 'expensive', 'cars', 'adversely', 'affecting', 'results', 'operations', 'financial', 'condition', 'additionally', 'consumer', 'interest', 'rates', 'increase', 'substantially', 'financial', 'service', 'providers', 'tighten', 'lending', 'standards', 'restrict', 'lending', 'certain', 'classes', 'credit', 'clients', 'may', 'choose', 'not', 'may', 'not', 'able', 'obtain', 'financing', 'purchase', 'cars', 'may', 'become', 'subject', 'risks', 'arising', 'legal', 'disputes', 'may', 'become', 'subject', 'government', 'investigations', 'connection', 'general', 'business', 'activities', 'may', 'become', 'subject', 'legal', 'disputes', 'governmental', 'regulatory', 'investigations', 'united', 'kingdom', 'well', 'abroad', 'investigations', 'may', 'particular', 'arise', 'relationship', 'authorities', 'suppliers', 'dealers', 'customers', 'investors', 'may', 'required', 'pay', 'fines', 'take', 'certain', 'actions', 'refrain', 'actions', 'extent', 'customers', 'particularly', 'united', 'states', 'assert', 'claims', 'existing', 'alleged', 'car', 'defects', 'individually', 'class', 'action', 'lawsuit', 'may', 'compelled', 'initiate', 'costly', 'defense', 'measures', 'pay', 'significant', 'amounts', 'damages', 'even', 'punitive', 'damages', 'complaints', 'specifically', 'complaints', 'relating', 'future', 'civil', 'lawsuits', 'actions', 'relating', 'patent', 'rights', 'well', 'antitrust', 'disputes', 'brought', 'suppliers', 'dealers', 'investors', 'third', 'parties', 'governmental', 'authorities', 'patent', 'exploitation', 'companies', 'particularly', 'united', 'states', 'may', 'result', 'comparable', 'costs', 'risks', 'damages', 'also', 'possible', 'may', 'investigations', 'governmental', 'authorities', 'circumstances', 'can', 'not', 'currently', 'aware', 'already', 'arisen', 'arise', 'future', 'including', 'possible', 'supervisory', 'environmental', 'law', 'competition', 'law', 'state', 'aid', 'criminal', 'proceedings', 'since', 'number', 'risks', 'can', 'not', 'estimated', 'estimated', 'difficulty', 'can', 'not', 'ruled', 'losses', 'nevertheless', 'incurred', 'not', 'covered', 'insured', 'amounts', 'amounts', 'recognized', 'provisions', 'addition', 'claims', 'whether', 'not', 'successful', 'could', '39', 'adverse', 'effect', 'brand', 'reputation', 'furthermore', 'given', 'relatively', 'small', 'scale', 'operations', 'consequences', 'claims', 'related', 'management', 'time', 'required', 'could', 'significant', 'impact', 'ability', 'operate', 'business', 'thus', 'occurrence', 'legal', 'disputes', 'united', 'kingdom', 'abroad', 'government', 'investigations', 'allegedly', 'defective', 'devices', 'pollution', 'emissions', 'example', 'generally', 'business', 'may', 'material', 'adverse', 'effect', 'business', 'financial', 'position', 'results', 'operations', 'see', 'business', 'litigation', 'changes', 'tax', 'tariff', 'fiscal', 'policies', 'could', 'adversely', 'affect', 'demand', 'products', 'imposition', 'additional', 'taxes', 'levies', 'designed', 'limit', 'use', 'automobiles', 'could', 'adversely', 'affect', 'demand', 'vehicles', 'results', 'operations', 'changes', 'corporate', 'taxation', 'policies', 'well', 'changes', 'export', 'incentives', 'given', 'various', 'governments', 'import', 'tariff', 'policies', 'could', 'also', 'adversely', 'affect', 'results', 'operations', 'example', 'us', 'government', 'new', 'administration', 'consistently', 'indicated', 'intends', 'levy', 'new', 'import', 'tariffs', 'goods', 'produced', 'outside', 'united', 'states', 'part', 'focus', 'tax', 'policy', 'trade', 'tariffs', 'enacted', 'could', 'adverse', 'effect', 'position', 'us', 'market', 'therefore', 'results', 'operations', 'managing', 'product', 'development', 'production', 'operations', 'global', 'basis', 'reduce', 'costs', 'lead', 'times', 'unique', 'national', 'regional', 'standards', 'result', 'additional', 'costs', 'product', 'development', 'testing', 'manufacturing', 'imposition', 'additional', 'taxes', 'levies', 'change', 'government', 'policy', 'designed', 'limit', 'use', 'high', 'performance', 'sports', 'cars', 'automobiles', 'generally', 'could', 'also', 'adversely', 'affect', 'demand', 'cars', 'relevant', 'jurisdiction', 'may', 'not', 'succeed', 'adequately', 'protecting', 'intellectual', 'property', 'know', 'possess', 'number', 'patents', 'registered', 'trademarks', 'registered', 'designs', 'registered', 'ip', 'industrial', 'intellectual', 'property', 'rights', 'including', 'certain', 'confidential', 'know', 'trade', 'secrets', 'database', 'rights', 'copyrights', 'together', 'ip', 'number', 'essential', 'importance', 'business', 'success', 'grant', 'registered', 'ip', 'ownership', 'ip', 'not', 'necessarily', 'mean', 'possible', 'enforce', 'claims', 'third', 'parties', 'required', 'desired', 'extent', 'furthermore', 'can', 'not', 'ruled', 'ip', 'could', 'infringed', 'challenged', 'third', 'parties', 'happened', 'past', 'confidential', 'know', 'trade', 'secrets', 'misappropriated', 'disclosed', 'public', 'without', 'consent', 'cases', 'may', 'not', 'able', 'may', 'limited', 'ability', 'prevent', 'infringements', 'misappropriations', 'disclosures', 'despite', 'registered', 'ip', 'applies', 'particularly', 'instances', 'product', 'piracy', 'components', 'copied', 'possibly', 'poor', 'quality', 'resulting', 'additional', 'reputation', 'risk', 'warranty', 'risk', 'us', 'addition', 'no', 'guarantee', 'applications', 'registered', 'ip', 'filed', 'intended', 'filed', 'us', 'new', 'technologies', 'issued', 'granted', 'countries', 'believe', 'prudent', 'additionally', 'can', 'not', 'ruled', 'independently', 'us', 'third', 'parties', 'might', 'develop', 'similar', 'know', 'trade', 'secrets', 'obtain', 'access', 'inadequate', 'loss', 'protection', 'ip', 'may', 'restrict', 'ability', 'profitably', 'exploit', 'technological', 'advances', 'may', 'lead', 'reduction', 'future', 'income', 'manufacturers', 'may', 'able', 'manufacture', 'market', 'products', 'similar', 'developed', 'us', 'fewer', 'development', 'expenses', 'hence', 'cost', 'effectively', 'could', 'harm', 'competitive', 'position', 'moreover', 'high', 'costs', 'may', 'incurred', 'responding', 'infringements', 'breaches', 'ip', 'misappropriations', 'know', 'trade', 'secrets', 'occurrence', 'events', 'may', 'material', 'adverse', 'effect', 'business', 'financial', 'position', 'results', 'operations', 'can', 'not', 'ruled', 'may', 'held', 'liable', 'infringement', 'third', 'party', 'intellectual', 'property', 'misappropriation', 'third', 'party', 'know', 'trade', 'secrets', 'may', 'dependent', 'upon', 'costly', 'use', 'third', 'party', 'intellectual', 'property', 'although', 'believe', 'hold', 'rights', 'required', 'business', 'operations', 'ip', 'third', 'party', 'licenses', 'risk', 'infringement', 'misappropriation', 'ip', 'know', 'trade', 'secrets', 'third', 'parties', 'can', 'not', 'completely', 'excluded', 'since', 'many', 'competitors', 'suppliers', 'also', 'submit', 'patent', 'applications', 'inventions', 'subsequently', 'secure', 'patent', '40', 'protection', 'ip', 'moreover', 'findings', 'infringements', 'violations', 'courts', 'even', 'mere', 'assertion', 'infringements', 'violations', 'intellectual', 'property', 'rights', 'know', 'trade', 'secrets', 'could', 'negative', 'impact', 'us', 'cases', 'may', 'barred', 'marketing', 'products', 'jurisdiction', 'concerned', 'might', 'potentially', 'compelled', 'acquire', 'licenses', 'modify', 'manufacturing', 'processes', 'could', 'lead', 'legal', 'disputes', 'settlement', 'negotiations', 'may', 'give', 'rise', 'significant', 'costs', 'addition', 'could', 'required', 'pay', 'damages', 'redesign', 'products', 'processes', 'infringing', 'misappropriating', 'ip', 'may', 'also', 'exposed', 'temporary', 'permanent', 'injunctions', 'additionally', 'may', 'rely', 'acquiring', 'licenses', 'order', 'use', 'third', 'party', 'technologies', 'would', 'result', 'corresponding', 'costs', 'however', 'no', 'guarantee', 'able', 'obtain', 'licenses', 'necessary', 'business', 'success', 'future', 'extent', 'necessary', 'reasonable', 'terms', 'conditions', 'also', 'rely', 'licenses', 'certain', 'ip', 'third', 'parties', 'can', 'not', 'rule', 'licenses', 'could', 'terminated', 'certain', 'circumstances', 'also', 'no', 'assurance', 'existing', 'licensing', 'agreements', 'extended', 'factors', 'could', 'individually', 'collectively', 'lead', 'delivery', 'production', 'restrictions', 'interruptions', 'delivery', 'production', 'material', 'adverse', 'effect', 'business', 'financial', 'position', 'results', 'operations', 'rely', 'confidential', 'know', 'trade', 'secrets', 'protect', 'intellectual', 'property', 'can', 'not', 'patented', 'depends', 'confidentiality', 'information', 'maintained', 'certain', 'secret', 'confidential', 'information', 'can', 'not', 'not', 'patented', 'requires', 'confidentiality', 'restrictions', 'put', 'place', 'information', 'disclosed', 'order', 'protect', 'proprietary', 'information', 'obligations', 'rely', 'individuals', 'complying', 'obligations', 'breaches', 'valuable', 'information', 'could', 'fall', 'public', 'domain', 'used', 'competitors', 'equally', 'movement', 'employees', 'us', 'competitors', 'could', 'result', 'increased', 'risk', 'information', 'shared', 'used', 'competitors', 'factors', 'could', 'individually', 'collectively', 'lead', 'competitors', 'access', 'confidential', 'information', 'using', 'advantage', 'could', 'material', 'adverse', 'effect', 'business', 'financial', 'position', 'results', 'operations', 'exposed', 'operational', 'risks', 'including', 'risks', 'connection', 'use', 'information', 'technology', 'due', 'complex', 'manufacturing', 'research', 'procurement', 'sales', 'marketing', 'operations', 'exposed', 'variety', 'operational', 'risks', 'risks', 'loss', 'resulting', 'inadequate', 'failed', 'internal', 'processes', 'people', 'systems', 'external', 'events', 'risks', 'include', 'not', 'limited', 'losses', 'caused', 'lack', 'controls', 'within', 'internal', 'procedures', 'violation', 'internal', 'policies', 'employees', 'disruption', 'malfunction', 'systems', 'computer', 'networks', 'telecommunications', 'systems', 'mechanical', 'equipment', 'failures', 'particularly', 'result', 'planned', 'system', 'upgrade', 'human', 'error', 'natural', 'disasters', 'malicious', 'acts', 'third', 'parties', 'generally', 'exposed', 'risks', 'field', 'information', 'technology', 'since', 'unauthorized', 'access', 'misuse', 'data', 'processed', 'systems', 'human', 'errors', 'associated', 'therewith', 'technological', 'failures', 'kind', 'could', 'disrupt', 'operations', 'including', 'manufacturing', 'design', 'engineering', 'process', 'disruption', 'aston', 'martin', 'information', 'technology', 'could', 'compromise', 'confidential', 'information', 'sensitive', 'information', 'could', 'materially', 'affect', 'trade', 'secrets', 'reputation', 'intellectual', 'property', 'customer', 'base', 'could', 'example', 'expose', 'us', 'litigation', 'additional', 'costs', 'operations', 'order', 'address', '41', 'disruption', 'measures', 'put', 'place', 'protect', 'operational', 'risks', 'prove', 'insufficient', 'results', 'operations', 'financial', 'condition', 'may', 'materially', 'affected', 'may', 'lose', 'fail', 'maintain', 'licenses', 'permission', 'certifications', 'currently', 'use', 'import', 'products', 'markets', 'order', 'export', 'cars', 'certain', 'jurisdictions', 'received', 'maintain', 'various', 'permits', 'licenses', 'relevant', 'governmental', 'bodies', 'maintain', 'permits', 'licenses', 'must', 'meet', 'certain', 'standards', 'failure', 'satisfy', 'standards', 'maintain', 'renew', 'relevant', 'permits', 'licenses', 'could', 'result', 'inability', 'export', 'products', 'markets', 'example', 'china', 'import', 'license', 'temporarily', 'suspended', '2014', 'due', 'issues', 'arising', 'following', 'recall', 'certain', 'models', 'loss', 'permit', 'license', 'would', 'prevent', 'us', 'selling', 'products', 'market', 'could', 'materially', 'adversely', 'affect', 'business', 'brand', 'prospects', 'results', 'operations', 'cash', 'flow', 'financial', 'condition', 'operate', 'number', 'pension', 'arrangements', 'including', 'uk', 'defined', 'benefit', 'pension', 'scheme', 'required', 'increase', 'contributions', 'fund', 'increase', 'cost', 'future', 'benefits', 'funding', 'shortfalls', 'provide', 'retirement', 'benefits', 'certain', 'current', 'former', 'employees', 'number', 'pension', 'arrangements', 'include', 'operation', 'uk', 'defined', 'benefit', 'pension', 'scheme', 'uk', 'db', 'plan', 'closed', 'new', 'employees', 'remains', 'open', 'future', 'benefit', 'accrual', 'existing', 'active', 'members', 'december', '31', '2016', 'total', 'expense', 'relating', 'uk', 'db', 'plan', '10', '2', 'million', 'outstanding', 'contributions', '0', '6', 'million', 'currently', 'estimate', 'contributions', 'uk', 'db', 'plan', '12', '7', 'million', '2017', 'expected', 'cash', 'outflows', '2017', 'subsequent', 'years', 'uncertain', 'may', 'change', 'consequence', 'statutory', 'funding', 'requirements', 'well', 'changes', 'actual', 'versus', 'currently', 'assumed', 'discount', 'rates', 'estimations', 'compensation', 'increases', 'returns', 'pension', 'plan', 'assets', 'latest', 'actuarial', 'valuation', 'uk', 'db', 'plan', 'april', '6', '2014', 'showed', 'surplus', 'scheme', '3', '4', 'million', 'scheme', 'specific', 'funding', 'basis', 'subsequent', 'deterioration', 'funding', 'position', 'resulted', 'recognition', 'liability', '69', '8', 'million', 'balance', 'sheet', 'respect', 'scheme', 'recent', 'periods', 'result', 'addition', 'agreed', 'annual', 'contributions', 'fund', 'ongoing', 'accrual', 'benefits', 'agreed', 'make', 'recovery', 'contributions', 'uk', 'db', 'plan', 'approximately', '2', '8', 'million', 'year', 'march', '31', '2021', 'together', 'potential', 'additional', 'contributions', '3', 'million', 'per', 'annum', 'business', 'meets', 'certain', 'defined', 'performance', 'targets', 'future', 'wind', 'trigger', 'insolvency', 'event', 'occur', 'relation', 'uk', 'db', 'plan', 'buy', 'deficit', 'become', 'due', 'payable', 'relevant', 'plan', 'participating', 'employers', 'buy', 'deficit', 'uk', 'db', 'plan', 'april', '6', '2014', '137', '6', 'million', 'uk', 'db', 'plan', 'buy', 'deficit', 'would', 'rank', 'unsecured', 'claim', 'participating', 'employers', 'plan', 'became', 'insolvent', 'market', 'value', 'assets', 'uk', 'db', 'plan', 'continues', 'decline', 'relation', 'assessed', 'liabilities', 'depends', 'among', 'things', 'real', 'returns', 'obtained', 'assets', 'longevity', 'members', 'rate', 'increase', 'salaries', 'discount', 'rate', 'assumptions', 'inflation', 'trustees', 'determine', 'financial', 'position', 'requires', 'different', 'approach', 'contributions', 'deficit', 'reduction', 'may', 'required', 'increase', 'contributions', 'could', 'adverse', 'impact', 'business', 'financial', 'position', 'results', 'operations', 'pensions', 'regulator', 'united', 'kingdom', 'statutory', 'power', 'certain', 'circumstances', 'issue', 'contribution', 'notices', 'financial', 'support', 'directions', 'issued', 'could', 'result', 'significant', 'liabilities', 'arising', 'us', 'significant', 'shareholders', 'uk', 'pensions', 'act', '2004', 'pensions', 'regulator', 'united', 'kingdom', 'may', 'issue', 'contribution', 'notice', 'financial', 'support', 'direction', 'employer', 'uk', 'db', 'plan', 'person', 'connected', 'associate', 'employer', 'pensions', 'regulator', 'must', 'satisfy', 'number', 'prescribed', 'statutory', 'tests', 'order', 'terms', 'associate', 'connected', 'person', 'widely', 'defined', 'relevant', 'legislation', 'could', 'cover', 'significant', 'shareholders', 'others', 'deemed', 'shadow', 'directors', 'liabilities', '42', 'imposed', 'contribution', 'notice', 'financial', 'support', 'direction', 'may', 'amount', 'buy', 'deficit', 'uk', 'db', 'plan', 'insurance', 'coverage', 'may', 'not', 'adequate', 'protect', 'us', 'potential', 'losses', 'may', 'subject', 'could', 'material', 'adverse', 'effect', 'business', 'believe', 'insurance', 'coverage', 'maintain', 'reasonably', 'adequate', 'cover', 'risks', 'associated', 'operation', 'business', 'no', 'assurance', 'claim', 'insurance', 'policies', 'honored', 'fully', 'timely', 'manner', 'insurance', 'coverage', 'sufficient', 'respect', 'insurance', 'premiums', 'not', 'increase', 'substantially', 'accordingly', 'extent', 'suffer', 'loss', 'damage', 'not', 'covered', 'insurance', 'exceeds', 'insurance', 'coverage', 'pay', 'higher', 'insurance', 'premiums', 'financial', 'condition', 'may', 'affected', 'adjustments', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'presented', 'offering', 'memorandum', 'treated', 'caution', 'making', 'investment', 'decision', 'offering', 'memorandum', 'present', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'derived', 'using', 'various', 'assumptions', 'including', 'assumptions', 'related', 'ability', 'recognize', 'revenue', 'car', 'orders', 'not', 'yet', 'completed', 'see', 'summary', 'summary', 'historical', 'consolidated', 'financial', 'data', 'additional', 'details', 'regarding', 'adjustments', 'february', 'ltm', 'ebitda', 'underlying', 'assumptions', 'assumptions', 'made', 'respect', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'present', 'offering', 'memorandum', 'based', 'current', 'estimates', 'involve', 'risks', 'uncertainties', 'assumptions', 'factors', 'may', 'cause', 'actual', 'results', 'performance', 'achievements', 'materially', 'different', 'anticipated', 'future', 'results', 'performance', 'achievements', 'expressed', 'implied', 'adjusted', 'financial', 'information', 'specifically', 'order', 'make', 'orders', 'production', 'adjustment', 'present', 'offering', 'memorandum', 'derive', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'assumed', 'ebitda', 'expect', 'realize', 'period', 'march', '1', '2017', 'may', '31', '2017', 'orders', 'march', '1', '2017', 'production', 'period', 'fact', 'realized', 'orders', 'not', 'otherwise', 'fail', 'result', 'payment', 'made', 'respect', 'orders', 'believe', 'able', 'realize', 'ebitda', 'related', 'orders', 'production', 'adjustment', 'no', 'guarantee', 'failure', 'could', 'material', 'adverse', 'effect', 'business', 'financial', 'position', 'results', 'operations', 'additionally', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'reflects', 'estimate', 'certain', 'incremental', 'costs', 'may', 'incur', 'result', 'certain', 'events', 'become', 'effective', 'materialize', 'future', 'including', 'incremental', 'costs', 'related', 'orders', 'production', 'adjustment', 'can', 'not', 'guarantee', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'includes', 'impact', 'incremental', 'costs', 'february', 'ltm', 'ebitda', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'derived', 'management', 'accounts', 'not', 'audited', 'independently', 'reviewed', 'auditors', 'not', 'considered', 'alternatives', 'net', 'income', 'operating', 'income', 'indicators', 'performance', 'alternatives', 'operating', 'cash', 'flows', 'measure', 'liquidity', 'use', 'february', 'ltm', 'ebitda', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'assess', 'operating', 'performance', 'believe', 'similar', 'measures', 'measures', 'commonly', 'used', 'investors', 'can', 'not', 'guarantee', 'february', 'ltm', 'ebitda', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'presented', 'offering', 'memorandum', 'comparable', 'similarly', 'titled', 'measures', 'reported', 'companies', 'including', 'due', 'differences', 'way', 'measures', 'calculated', 'order', 'book', 'not', 'necessarily', 'indicative', 'future', 'revenue', 'results', 'operations', 'produce', 'limited', 'number', 'cars', 'per', 'year', 'dealers', 'customers', 'often', 'place', 'orders', 'vehicles', 'well', 'advance', 'several', 'metrics', 'tracking', 'orders', 'cars', '43', 'also', 'metrics', 'tracking', 'customer', 'interest', 'certain', 'models', 'cars', 'define', 'orders', 'orders', 'production', 'represent', 'fully', 'committed', 'orders', 'cars', 'customers', 'dealers', 'march', '1', '2017', 'scheduled', 'production', 'period', 'march', '1', '2017', 'may', '31', '2017', 'loaded', 'internal', 'scheduling', 'system', 'orders', 'fully', 'specified', 'meaning', 'ordered', 'unit', 'specifications', 'trim', 'upholstery', 'colors', 'material', 'finishes', 'specified', 'customer', 'require', '12', 'weeks', 'minimum', 'satisfy', 'production', 'scheduling', 'orders', 'orders', 'production', 'firm', 'orders', 'scheduled', 'supply', 'components', 'suppliers', 'begun', 'production', 'dealers', 'can', 'not', 'unilaterally', 'cancel', 'define', 'order', 'order', 'production', 'assume', 'parties', 'satisfy', 'obligations', 'order', 'production', 'payment', 'timely', 'basis', 'consistent', 'historical', 'experience', 'believe', 'order', 'book', 'useful', 'indicator', 'assess', 'business', 'performance', 'provides', 'useful', 'trend', 'information', 'visibility', 'future', 'financial', 'results', 'however', 'orders', 'production', 'well', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'based', 'number', 'assumptions', 'estimates', 'consequently', 'figures', 'subject', 'change', 'not', 'necessarily', 'indicative', 'expected', 'revenue', 'ebitda', 'cash', 'flows', 'results', 'operations', 'unforeseen', 'events', 'circumstances', 'including', 'example', 'termination', 'increased', 'time', 'requirements', 'complete', 'work', 'delays', 'commencing', 'work', 'impacts', 'currency', 'fluctuations', 'disruption', 'work', 'irrecoverable', 'cost', 'overruns', 'product', 'recalls', 'unforeseen', 'events', 'may', 'affect', 'ability', 'fulfil', 'orders', 'production', 'could', 'material', 'adverse', 'effect', 'business', 'financial', 'condition', 'results', 'operations', 'also', 'track', 'qualified', 'marketing', 'leads', 'qualified', 'marketing', 'lead', 'refers', 'potential', 'customers', 'shown', 'interest', 'buying', 'one', 'cars', 'either', 'visiting', 'dealership', 'inquiring', 'phone', 'email', 'believe', 'number', 'qualified', 'marketing', 'leads', 'good', 'indicator', 'potential', 'future', 'interest', 'cars', 'however', 'qualified', 'marketing', 'lead', 'may', 'not', 'result', 'order', 'not', 'yet', 'production', 'nor', 'order', 'production', 'therefore', 'although', 'qualified', 'marketing', 'leads', 'valuable', 'indicators', 'track', 'potential', 'orders', 'not', 'affect', 'pro', 'forma', 'adjustment', 'february', 'ltm', 'ebitda', 'business', 'model', 'based', 'availability', 'wholesale', 'finance', 'facility', 'involves', 'certain', 'liquidity', 'risks', 'loss', 'ability', 'draw', 'facility', 'credit', 'insurance', 'backing', 'could', 'adversely', 'affect', 'group', 'liquidity', 'therefore', 'material', 'adverse', 'effect', 'business', 'party', 'wholesale', 'finance', 'facility', 'pursuant', 'aml', 'amlna', 'offer', 'standard', 'chartered', 'bank', 'certain', 'receivables', 'owing', 'dealers', 'acquired', 'aston', 'martin', 'cars', 'credit', 'terms', 'not', 'exceeding', '270', 'days', 'date', 'dispatch', 'facility', 'used', 'e', 'standard', 'chartered', 'bank', 'purchases', 'receivables', 'offered', 'receive', 'standard', 'chartered', 'bank', 'purchase', 'price', 'car', 'less', 'discount', 'rate', 'calculated', 'accordance', 'wholesale', 'finance', 'facility', 'agreement', 'following', 'issuance', 'invoice', 'dealer', 'subject', 'satisfaction', 'certain', 'requirements', 'dealer', 'instructed', 'make', 'payment', 'amounts', 'due', 'invoice', 'account', 'standard', 'chartered', 'bank', 'amounts', 'paid', 'account', 'recovered', 'retained', 'standard', 'chartered', 'bank', 'required', 'pay', 'standard', 'chartered', 'bank', 'flat', 'fee', 'providing', 'wholesale', 'finance', 'facility', 'quarterly', 'basis', 'duration', 'facility', 'charge', 'discount', 'rate', 'approved', 'standard', 'chartered', 'bank', 'fees', 'associated', 'facility', 'dealers', 'time', 'time', 'wholesale', 'finance', 'facility', 'backed', 'credit', 'insurance', 'contract', 'aml', 'insurer', 'atradius', 'credit', 'insurance', 'nv', 'event', 'dealer', 'fails', 'repay', 'financing', 'scheme', 'direct', 'liability', 'respect', 'dealer', 'default', 'wholesale', 'finance', 'facility', 'event', 'credit', 'insurance', 'not', 'cover', 'default', 'aml', 'amlna', 'required', 'repurchase', 'relevant', 'receivable', 'limited', 'aggregate', '200', '000', 'two', 'year', 'period', 'ending', 'august', '31', '2018', 'although', 'wholesale', 'finance', 'facility', 'backed', 'credit', 'insurance', 'exceptional', 'circumstances', 'thorough', 'consideration', 'credit', 'history', 'individual', 'dealer', 'may', 'sell', 'cars', 'dealer', 'outside', 'credit', 'risk', 'insurance', 'policy', 'deferred', 'payment', 'terms', 'extent', 'suffer', 'loss', 'damage', 'not', 'covered', 'insurance', 'exceeds', 'insurance', 'coverage', 'financial', 'condition', 'may', 'affected', 'rely', 'drawings', 'facility', 'fund', 'working', 'capital', 'minimize', 'impact', 'delay', 'shipment', '44', 'receipt', 'funds', 'february', '28', '2017', 'wholesale', 'finance', 'facility', 'almost', 'fully', 'utilized', 'drawings', '123', '1', 'million', 'available', '125', 'million', 'primarily', 'due', 'introduction', 'db11', 'facility', 'addition', 'american', 'inventory', 'funding', 'facility', 'enables', 'us', 'manage', 'working', 'capital', 'sell', 'cars', 'facilities', 'became', 'unavailable', 'may', 'need', 'sell', 'cars', 'dealers', 'without', 'financing', 'arrangements', 'subjecting', 'us', 'credit', 'risk', 'counterparties', 'occur', 'could', 'experience', 'shortfall', 'working', 'capital', 'could', 'impair', 'ability', 'make', 'certain', 'capital', 'expenditure', 'pay', 'suppliers', 'require', 'us', 'negotiate', 'credit', 'extensions', 'suppliers', 'secure', 'alternative', 'financing', 'could', 'materially', 'negatively', 'impact', 'operations', 'year', 'ended', 'december', '31', '2016', '14', 'million', 'overdue', 'receivables', 'closely', 'monitor', 'cash', 'flow', 'forecasts', 'liquidity', 'requirements', 'ensure', 'sufficient', 'cash', 'meet', 'operational', 'needs', 'attempting', 'maintain', 'sufficient', 'headroom', 'wholesale', 'finance', 'facility', 'american', 'inventory', 'funding', 'facility', 'unable', 'utilize', 'either', 'facility', 'standard', 'chartered', 'bank', 'no', 'longer', 'made', 'facilities', 'available', 'us', 'dealers', 'substantially', 'similar', 'terms', 'could', 'material', 'adverse', 'impact', 'liquidity', 'position', 'business', 'financial', 'condition', 'results', 'operations', 'circumstances', 'may', 'not', 'able', 'find', 'replacement', 'reasonable', 'terms', 'risks', 'related', 'indebtedness', 'notes', 'issuer', 'special', 'purpose', 'finance', 'subsidiary', 'no', 'revenue', 'generating', 'operations', 'issuer', 'special', 'purpose', 'finance', 'subsidiary', 'no', 'revenue', 'generating', 'operations', 'issuer', 'conducts', 'no', 'business', 'operations', 'giving', 'effect', 'offering', 'use', 'proceeds', 'therefrom', 'no', 'assets', 'notes', 'proceeds', 'loan', 'made', 'proceeds', 'offering', 'aml', 'issuer', 'ability', 'service', 'notes', 'future', 'indebtedness', 'may', 'incur', 'limited', 'circumstances', 'entirely', 'dependent', 'upon', 'receipt', 'funds', 'us', 'terms', 'notes', 'proceeds', 'loan', 'otherwise', 'ability', 'make', 'payments', 'issuer', 'depend', 'cash', 'flows', 'earnings', 'turn', 'may', 'affected', 'factors', 'discussed', 'risk', 'factors', 'leverage', 'may', 'make', 'difficult', 'us', 'operate', 'businesses', 'currently', 'issuance', 'notes', 'continue', 'significant', 'amount', 'outstanding', 'debt', 'substantial', 'debt', 'service', 'requirements', 'december', '31', '2016', 'adjusted', 'give', 'effect', 'offering', 'application', 'proceeds', 'therefrom', 'total', 'indebtedness', 'would', '524', '2', 'million', 'addition', 'issue', 'date', 'new', 'revolving', 'credit', 'facility', 'not', 'drawn', 'allow', 'additional', '80', 'million', 'future', 'borrowings', 'committed', 'basis', 'addition', 'prior', 'expected', 'amendment', 'preference', 'shares', 'issue', 'date', 'terms', 'preference', 'shares', 'currently', 'permit', 'us', 'incur', 'ratio', 'debt', 'long', 'holdings', 'consolidated', 'leverage', 'ratio', 'less', '5', '0', '1', '0', 'see', 'principal', 'shareholders', 'preference', 'shares', 'leverage', 'could', 'important', 'consequences', 'business', 'operations', 'holder', 'notes', 'including', 'not', 'limited', 'making', 'difficult', 'us', 'satisfy', 'obligations', 'respect', 'notes', 'debts', 'liabilities', 'requiring', 'us', 'dedicate', 'substantial', 'portion', 'cash', 'flow', 'operations', 'payments', 'debt', 'thus', 'reducing', 'availability', 'cash', 'flow', 'fund', 'acquisitions', 'organic', 'growth', 'projects', 'general', 'corporate', 'purposes', 'increasing', 'vulnerability', 'downturn', 'business', 'general', 'economic', 'industry', 'conditions', 'placing', 'us', 'competitive', 'disadvantage', 'relative', 'competitors', 'lower', 'leverage', 'greater', 'financial', 'resources', 'limiting', 'flexibility', 'planning', 'reacting', 'competition', 'changes', 'business', 'industry', 'negatively', 'impacting', 'credit', 'terms', 'creditors', 'restricting', 'us', 'pursuing', 'strategic', 'acquisitions', 'exploiting', 'certain', 'business', 'opportunities', 'limiting', 'among', 'things', 'ability', 'borrow', 'additional', 'funds', 'raise', 'equity', 'capital', 'future', 'increasing', 'costs', 'additional', 'financings', '45', 'consequences', 'events', 'could', 'material', 'adverse', 'effect', 'ability', 'satisfy', 'debt', 'obligations', 'including', 'notes', 'ability', 'make', 'payments', 'refinance', 'indebtedness', 'fund', 'acquisitions', 'working', 'capital', 'expenditures', 'expenses', 'depend', 'future', 'operating', 'performance', 'ability', 'generate', 'cash', 'operations', 'ability', 'generate', 'cash', 'operations', 'subject', 'large', 'part', 'general', 'economic', 'competitive', 'legislative', 'regulatory', 'factors', 'factors', 'beyond', 'control', 'may', 'not', 'able', 'generate', 'sufficient', 'cash', 'flow', 'operations', 'obtain', 'enough', 'capital', 'service', 'debt', 'fund', 'future', 'acquisitions', 'working', 'capital', 'expenditures', 'addition', 'may', 'able', 'incur', 'substantial', 'additional', 'debt', 'future', 'including', 'indebtedness', 'connection', 'future', 'acquisition', 'terms', 'indenture', 'governing', 'notes', 'offered', 'hereby', 'new', 'revolving', 'credit', 'facility', 'permit', 'subsidiaries', 'case', 'subject', 'certain', 'limitations', 'new', 'debt', 'added', 'current', 'debt', 'levels', 'risks', 'face', 'could', 'intensify', 'discussion', 'cash', 'flows', 'liquidity', 'see', 'management', 'discussion', 'analysis', 'financial', 'condition', 'results', 'operation', 'liquidity', 'capital', 'resources', 'may', 'not', 'able', 'generate', 'sufficient', 'cash', 'service', 'indebtedness', 'including', 'due', 'factors', 'outside', 'control', 'may', 'forced', 'take', 'actions', 'satisfy', 'obligations', 'indebtedness', 'may', 'not', 'successful', 'ability', 'make', 'payments', 'refinance', 'notes', 'debt', 'obligations', 'depend', 'future', 'operating', 'performance', 'ability', 'generate', 'sufficient', 'cash', 'depends', 'general', 'economic', 'financial', 'competitive', 'market', 'regulatory', 'factors', 'many', 'beyond', 'control', 'businesses', 'may', 'not', 'generate', 'sufficient', 'cash', 'flows', 'operations', 'make', 'payments', 'debt', 'obligations', 'additional', 'debt', 'equity', 'financing', 'may', 'not', 'available', 'us', 'amount', 'sufficient', 'enable', 'us', 'pay', 'debts', 'due', 'refinance', 'debts', 'including', 'notes', 'future', 'cash', 'flows', 'operations', 'capital', 'resources', 'insufficient', 'pay', 'obligations', 'mature', 'fund', 'liquidity', 'needs', 'may', 'forced', 'reduce', 'delay', 'business', 'activities', 'planned', 'acquisitions', 'capital', 'expenditures', 'sell', 'assets', 'obtain', 'additional', 'debt', 'equity', 'financing', 'restructure', 'refinance', 'portion', 'debt', 'including', 'notes', 'maturity', 'may', 'not', 'able', 'accomplish', 'alternatives', 'timely', 'basis', 'satisfactory', 'terms', 'particular', 'ability', 'restructure', 'refinance', 'debt', 'depend', 'part', 'financial', 'condition', 'time', 'refinancing', 'debt', 'could', 'higher', 'interest', 'rates', 'current', 'debt', 'may', 'require', 'us', 'comply', 'onerous', 'covenants', 'could', 'restrict', 'business', 'operations', 'terms', 'existing', 'future', 'debt', 'instruments', 'indenture', 'may', 'restrict', 'us', 'adopting', 'alternatives', 'furthermore', 'may', 'unable', 'find', 'alternative', 'financing', 'even', 'could', 'obtain', 'alternative', 'financing', 'might', 'not', 'terms', 'favorable', 'acceptable', 'us', 'not', 'able', 'refinance', 'debt', 'obtain', 'additional', 'financing', 'sell', 'assets', 'commercially', 'reasonable', 'terms', 'may', 'not', 'able', 'satisfy', 'debt', 'obligations', 'including', 'notes', 'addition', 'new', 'revolving', 'credit', 'facility', 'agreement', 'contain', 'cross', 'default', 'provision', 'respect', 'payment', 'obligations', 'guarantee', 'fee', 'agreement', 'entered', 'government', 'wales', 'respect', 'occupation', 'premises', 'st', 'athan', 'plant', 'event', 'unable', 'satisfy', 'debt', 'obligations', 'notes', 'fail', 'make', 'payments', 'due', 'guarantee', 'fee', 'agreement', 'borrowings', 'debt', 'agreement', 'instruments', 'contain', 'cross', 'default', 'cross', 'acceleration', 'provisions', 'may', 'become', 'payable', 'demand', 'may', 'cause', 'us', 'default', 'guarantee', 'fee', 'agreement', 'may', 'not', 'sufficient', 'funds', 'repay', 'debts', 'including', 'notes', '46', 'addition', 'failure', 'make', 'payments', 'interest', 'principal', 'outstanding', 'indebtedness', 'timely', 'basis', 'would', 'likely', 'result', 'reduction', 'credit', 'rating', 'could', 'harm', 'ability', 'incur', 'additional', 'indebtedness', 'absence', 'operating', 'results', 'resources', 'could', 'face', 'substantial', 'liquidity', 'problems', 'might', 'required', 'dispose', 'material', 'assets', 'operations', 'meet', 'debt', 'service', 'obligations', 'terms', 'indebtedness', 'including', 'indenture', 'restrict', 'ability', 'transfer', 'sell', 'assets', 'may', 'not', 'able', 'consummate', 'certain', 'dispositions', 'obtain', 'funds', 'could', 'realized', 'proceeds', 'dispositions', 'proceeds', 'realize', 'asset', 'dispositions', 'may', 'not', 'adequate', 'meet', 'debt', 'service', 'obligations', 'due', 'may', 'not', 'able', 'finance', 'change', 'control', 'offer', 'indenture', 'require', 'us', 'make', 'offer', 'repurchase', 'notes', '101', 'principal', 'amount', 'plus', 'accrued', 'unpaid', 'interest', 'date', 'repurchase', 'experience', 'certain', 'specified', 'change', 'control', 'events', 'additionally', 'change', 'control', 'new', 'revolving', 'credit', 'facility', 'agreement', 'unless', 'waived', 'lenders', 'results', 'cancellation', 'commitments', 'new', 'revolving', 'credit', 'facility', 'amounts', 'outstanding', 'new', 'revolving', 'credit', 'facility', 'would', 'become', 'immediately', 'due', 'payable', 'source', 'funds', 'repurchase', 'required', 'result', 'event', 'would', 'available', 'cash', 'cash', 'generated', 'operating', 'activities', 'sources', 'including', 'borrowings', 'sales', 'assets', 'sales', 'equity', 'funds', 'provided', 'subsidiaries', 'sufficient', 'funds', 'may', 'not', 'available', 'time', 'events', 'make', 'required', 'repurchases', 'notes', 'tendered', 'may', 'not', 'able', 'secure', 'access', 'enough', 'cash', 'finance', 'required', 'repurchases', 'notes', 'tendered', 'failure', 'effect', 'change', 'control', 'offer', 'required', 'would', 'constitute', 'event', 'default', 'indenture', 'furthermore', 'certain', 'important', 'corporate', 'events', 'might', 'adversely', 'affect', 'value', 'notes', 'including', 'certain', 'reorganizations', 'restructurings', 'mergers', 'would', 'not', 'constitute', 'change', 'control', 'indenture', 'complete', 'description', 'events', 'would', 'constitute', 'change', 'control', 'notes', 'see', 'section', 'entitled', 'description', 'notes', 'certain', 'definitions', 'change', 'control', 'may', 'incur', 'substantially', 'debt', 'future', 'may', 'make', 'difficult', 'us', 'service', 'debt', 'including', 'notes', 'impair', 'ability', 'operate', 'businesses', 'may', 'incur', 'substantial', 'additional', 'debt', 'future', 'although', 'indenture', 'preference', 'shares', 'new', 'revolving', 'credit', 'facility', 'agreement', 'contain', 'restrictions', 'incurrence', 'additional', 'indebtedness', 'restrictions', 'subject', 'number', 'significant', 'qualifications', 'exceptions', 'certain', 'circumstances', 'amount', 'indebtedness', 'could', 'incurred', 'compliance', 'restrictions', 'could', 'substantial', 'indenture', 'addition', 'specified', 'permitted', 'indebtedness', 'able', 'incur', 'additional', 'indebtedness', 'long', 'pro', 'forma', 'basis', 'fixed', 'charge', 'coverage', 'ratio', 'defined', 'description', 'notes', 'least', '2', '00', '1', '00', 'event', 'indebtedness', 'secured', 'indebtedness', 'consolidated', 'senior', 'secured', 'leverage', 'ratio', 'defined', 'description', 'notes', 'equal', 'less', '3', '50', '1', '00', 'also', 'able', 'draw', 'amounts', 'new', 'revolving', 'credit', 'facility', 'incur', 'certain', 'indebtedness', 'time', 'not', 'meet', 'ratios', 'subject', 'always', 'compliance', 'restrictions', 'incurrence', 'additional', 'indebtedness', 'set', 'description', 'notes', 'terms', 'indenture', 'permit', 'us', 'incur', 'future', 'debt', 'may', 'substantially', 'covenants', 'covenants', 'restrictive', 'indenture', 'moreover', 'debt', 'may', 'incur', 'future', 'could', 'structurally', 'senior', 'notes', 'subject', 'compliance', 'restrictions', 'intercreditor', 'agreement', 'may', 'secured', 'collateral', 'not', 'secure', 'notes', 'addition', 'indenture', 'not', 'prevent', 'us', 'incurring', 'obligations', 'not', 'constitute', 'indebtedness', 'indenture', 'incurrence', 'additional', 'debt', 'would', 'increase', 'leverage', 'related', 'risks', 'described', 'offering', 'memorandum', '47', 'loans', 'new', 'revolving', 'credit', 'facility', 'bear', 'interest', 'floating', 'rates', 'could', 'rise', 'significantly', 'increasing', 'costs', 'reducing', 'cash', 'flow', 'loans', 'revolving', 'credit', 'facility', 'bear', 'interest', 'floating', 'rates', 'interest', 'per', 'annum', 'equal', 'libor', 'adjusted', 'periodically', 'plus', 'spread', 'extent', 'interest', 'rates', 'increase', 'significantly', 'interest', 'expense', 'would', 'correspondingly', 'increase', 'thereby', 'reducing', 'cash', 'flow', 'hedging', 'derivative', 'arrangements', 'may', 'not', 'effectively', 'sufficiently', 'offset', 'negative', 'impact', 'interest', 'rate', 'foreign', 'currency', 'fluctuations', 'may', 'use', 'combination', 'natural', 'hedging', 'techniques', 'financial', 'derivatives', 'protect', 'certain', 'interest', 'rate', 'foreign', 'currency', 'risks', 'make', 'use', 'hedging', 'arrangements', 'protect', 'business', 'interest', 'rate', 'foreign', 'currency', 'fluctuations', 'respect', 'existing', 'financing', 'arrangements', 'addition', 'following', 'issue', 'date', 'issuer', 'may', 'enter', 'hedging', 'arrangements', 'respect', 'notes', 'relating', 'foreign', 'currency', 'variations', 'interest', 'rate', 'variations', 'hedging', 'activities', 'may', 'ineffective', 'may', 'not', 'offset', 'portion', 'adverse', 'financial', 'impact', 'resulting', 'foreign', 'currency', 'variations', 'interest', 'rate', 'variations', 'gains', 'losses', 'associated', 'hedging', 'activities', 'may', 'also', 'negatively', 'impact', 'operating', 'results', 'moreover', 'event', 'economic', 'uncertainty', 'financial', 'institution', 'failures', 'may', 'exposed', 'risk', 'counterparty', 'derivative', 'transaction', 'may', 'unable', 'perform', 'obligations', 'result', 'placed', 'receivership', 'otherwise', 'event', 'counterparty', 'material', 'derivative', 'transaction', 'unable', 'perform', 'obligations', 'thereunder', 'may', 'experience', 'losses', 'could', 'materially', 'adversely', 'affect', 'financial', 'condition', 'financial', 'returns', 'results', 'operations', 'notes', 'either', 'series', 'may', 'issued', 'original', 'issue', 'discount', 'united', 'states', 'federal', 'income', 'tax', 'purposes', 'stated', 'principal', 'amount', 'notes', 'either', 'series', 'exceeds', 'issue', 'price', 'de', 'minimis', 'amount', 'notes', 'series', 'issued', 'original', 'issue', 'discount', 'oid', 'united', 'states', 'federal', 'income', 'tax', 'purposes', 'event', 'addition', 'stated', 'interest', 'notes', 'holder', 'subject', 'united', 'states', 'federal', 'income', 'taxation', 'required', 'include', 'oid', 'gross', 'income', 'ordinary', 'income', 'constant', 'yield', 'maturity', 'basis', 'advance', 'receipt', 'cash', 'payment', 'thereof', 'regardless', 'holder', 'regular', 'method', 'accounting', 'united', 'states', 'federal', 'income', 'tax', 'purposes', 'see', 'certain', 'tax', 'considerations', 'certain', 'united', 'states', 'federal', 'tax', 'consequences', 'subject', 'restrictive', 'covenants', 'limit', 'operating', 'financial', 'flexibility', 'new', 'revolving', 'credit', 'facility', 'agreement', 'preference', 'shares', 'indenture', 'contain', 'covenants', 'impose', 'significant', 'restrictions', 'way', 'operate', 'including', 'restrictions', 'ability', 'incur', 'guarantee', 'additional', 'indebtedness', 'issue', 'certain', 'preferred', 'stock', 'create', 'incur', 'certain', 'liens', 'make', 'certain', 'payments', 'including', 'dividends', 'distributions', 'prepay', 'redeem', 'subordinated', 'debt', 'equity', 'make', 'certain', 'investments', 'create', 'encumbrances', 'restrictions', 'payment', 'dividends', 'distributions', 'loans', 'advances', 'transfer', 'assets', 'restricted', 'group', 'sell', 'lease', 'transfer', 'certain', 'assets', 'including', 'stock', 'restricted', 'subsidiaries', 'engage', 'certain', 'transactions', 'affiliates', 'enter', 'unrelated', 'businesses', 'engage', 'prohibited', 'activities', 'consolidate', 'merge', 'entities', 'impair', 'security', 'interests', 'benefit', 'holders', 'notes', '48', 'covenants', 'could', 'affect', 'ability', 'operate', 'business', 'may', 'limit', 'ability', 'react', 'market', 'conditions', 'regulatory', 'developments', 'take', 'advantage', 'potential', 'business', 'opportunities', 'arise', 'example', 'restrictions', 'could', 'adversely', 'affect', 'ability', 'finance', 'operations', 'pursue', 'acquisitions', 'investments', 'alliances', 'restructure', 'organization', 'finance', 'capital', 'needs', 'failure', 'comply', 'covenants', 'new', 'revolving', 'credit', 'facility', 'agreement', 'indenture', 'including', 'result', 'events', 'beyond', 'control', 'could', 'result', 'event', 'default', 'could', 'materially', 'adversely', 'affect', 'financial', 'condition', 'results', 'operations', 'case', 'preference', 'shares', 'result', 'need', 'refinance', 'redeem', 'preference', 'shares', 'utilizing', 'resources', 'part', 'restricted', 'group', 'subject', 'restrictions', 'indenture', 'new', 'revolving', 'credit', 'facility', 'potentially', 'resulting', 'change', 'control', 'company', 'notes', 'structurally', 'subordinated', 'liabilities', 'non', 'guarantor', 'subsidiaries', 'certain', 'subsidiaries', 'guarantee', 'notes', 'subsidiaries', 'not', 'obligations', 'pay', 'amounts', 'due', 'notes', 'make', 'funds', 'available', 'purpose', 'unless', 'guarantee', 'notes', 'generally', 'holders', 'indebtedness', 'trade', 'creditors', 'non', 'guarantor', 'subsidiaries', 'including', 'lenders', 'bank', 'financing', 'agreements', 'entitled', 'payment', 'claims', 'assets', 'subsidiaries', 'assets', 'made', 'available', 'distribution', 'issuer', 'guarantor', 'direct', 'indirect', 'shareholder', 'accordingly', 'event', 'non', 'guarantor', 'subsidiary', 'becomes', 'insolvent', 'liquidated', 'reorganized', 'dissolved', 'otherwise', 'wound', 'part', 'solvent', 'transaction', 'creditors', 'issuer', 'including', 'holders', 'notes', 'guarantors', 'no', 'right', 'proceed', 'creditor', 'assets', 'subsidiary', 'creditors', 'non', 'guarantor', 'subsidiary', 'including', 'trade', 'creditors', 'generally', 'entitled', 'payment', 'full', 'sale', 'disposal', 'assets', 'subsidiary', 'issuer', 'guarantor', 'direct', 'indirect', 'shareholder', 'entitled', 'receive', 'distributions', 'subsidiary', 'notes', 'guarantee', 'structurally', 'subordinated', 'creditors', 'including', 'trade', 'creditors', 'non', 'guarantor', 'subsidiaries', 'december', '31', '2016', 'giving', 'pro', 'forma', 'effect', 'issuance', 'notes', 'use', 'proceeds', 'therefrom', 'non', 'guarantor', 'subsidiaries', 'would', '3', '9', 'million', 'total', 'liabilities', 'including', 'trade', 'payables', 'excluding', 'intercompany', 'balances', 'would', 'ranked', 'structurally', 'senior', 'notes', 'guarantees', 'debt', 'non', 'guarantor', 'subsidiaries', 'incur', 'future', 'accordance', 'indenture', 'rank', 'structurally', 'senior', 'notes', 'guarantees', 'guarantee', 'security', 'interest', 'subject', 'certain', 'limitations', 'enforcement', 'may', 'limited', 'applicable', 'laws', 'subject', 'certain', 'defenses', 'may', 'limit', 'validity', 'enforceability', 'guarantors', 'guarantee', 'payment', 'notes', 'senior', 'basis', 'guarantee', 'provide', 'holders', 'notes', 'direct', 'claim', 'relevant', 'guarantor', 'however', 'indenture', 'include', 'language', 'effect', 'guarantee', 'security', 'interest', 'granted', 'limited', 'ensure', 'compliance', 'local', 'law', 'guarantees', 'security', 'interests', 'obligations', 'also', 'subject', 'applicable', 'corporate', 'laws', 'general', 'laws', 'prohibit', 'companies', 'providing', 'financial', 'assistance', 'anyone', 'purpose', 'acquiring', 'shares', 'limit', 'circumstances', 'companies', 'transfer', 'economic', 'benefits', 'shareholders', 'outside', 'payment', 'properly', 'declared', 'dividends', 'also', 'provide', 'limitations', 'affect', 'rights', 'creditors', 'generally', 'case', 'entity', 'becomes', 'insolvent', 'see', 'certain', 'insolvency', 'local', 'law', 'limitations', 'details', 'regarding', 'limitations', 'guarantees', 'security', 'interests', 'jersey', 'state', 'new', 'york', 'england', 'wales', '49', 'moreover', 'certain', 'transaction', 'documents', 'governed', 'u', 'law', 'judgments', 'rendered', 'u', 'court', 'generally', 'not', 'directly', 'enforceable', 'jurisdictions', 'majority', 'assets', 'notes', 'secured', 'located', 'instead', 'many', 'jurisdictions', 'pre', 'condition', 'enforcing', 'u', 'judgment', 'local', 'court', 'subject', 'judgment', 'multifactor', 'test', 'several', 'factors', 'court', 'consider', 'involve', 'considerable', 'amount', 'discretion', 'even', 'court', 'ultimately', 'finds', 'judgment', 'enforceable', 'process', 'may', 'take', 'lengthy', 'amount', 'time', 'complete', 'reasons', 'investment', 'notes', 'involves', 'unique', 'risks', 'may', 'not', 'apply', 'apply', 'differently', 'conventional', 'secured', 'bond', 'offering', 'risks', 'materializes', 'ability', 'collect', 'payments', 'principal', 'interest', 'notes', 'may', 'materially', 'adversely', 'affected', 'notes', 'secured', 'extent', 'value', 'assets', 'granted', 'security', 'event', 'security', 'enforced', 'collateral', 'holders', 'notes', 'receive', 'proceeds', 'collateral', 'lenders', 'new', 'revolving', 'credit', 'facility', 'holders', 'additional', 'super', 'priority', 'secured', 'debt', 'notes', 'secured', 'extent', 'value', 'assets', 'granted', 'security', 'event', 'security', 'enforced', 'collateral', 'holders', 'notes', 'receive', 'proceeds', 'collateral', 'lenders', 'new', 'revolving', 'credit', 'facility', 'holders', 'additional', 'super', 'priority', 'secured', 'debt', 'certain', 'priority', 'hedging', 'counterparties', 'paid', 'full', 'default', 'occurs', 'obligations', 'notes', 'accelerated', 'holders', 'notes', 'secured', 'extent', 'value', 'assets', 'underlying', 'security', 'interest', 'not', 'assets', 'secure', 'notes', 'certain', 'liens', 'may', 'not', 'perfected', 'assets', 'secure', 'notes', 'future', 'obligations', 'provide', 'additional', 'guarantees', 'grant', 'additional', 'security', 'assets', 'particular', 'type', 'class', 'assets', 'whether', 'result', 'acquisition', 'creation', 'future', 'assets', 'subsidiaries', 'designation', 'previously', 'unrestricted', 'subsidiary', 'restricted', 'subsidiary', 'otherwise', 'subject', 'certain', 'agreed', 'security', 'principles', 'agreed', 'security', 'principles', 'set', 'number', 'limitations', 'rights', 'holders', 'notes', 'require', 'guarantee', 'security', 'certain', 'circumstances', 'operation', 'agreed', 'security', 'principles', 'may', 'result', 'among', 'things', 'amount', 'recoverable', 'guarantee', 'security', 'provided', 'subsidiary', 'limited', 'security', 'not', 'granted', 'particular', 'type', 'class', 'assets', 'accordingly', 'agreed', 'security', 'principles', 'may', 'affect', 'value', 'guarantees', 'security', 'provided', 'us', 'subsidiaries', 'furthermore', 'upon', 'enforcement', 'collateral', 'insolvency', 'terms', 'intercreditor', 'agreement', 'claims', 'holders', 'notes', 'proceeds', 'enforcement', 'rank', 'behind', 'claims', 'lenders', 'new', 'revolving', 'credit', 'facility', 'holders', 'super', 'priority', 'secured', 'indebtedness', 'extent', 'permitted', 'superpriority', 'indenture', 'including', 'counterparties', 'certain', 'hedging', 'obligations', 'result', 'event', 'bankruptcy', 'fewer', 'assets', 'available', 'satisfy', 'obligations', 'notes', 'also', 'event', 'claims', 'holders', 'notes', 'proceeds', 'enforcement', 'rank', 'equally', 'claims', 'holders', 'additional', 'secured', 'indebtedness', 'extent', 'indebtedness', 'permitted', 'indenture', 'result', 'holders', 'notes', 'receive', 'less', 'proceeds', 'collateral', 'enforcement', 'insolvency', 'scenario', 'not', 'required', 'share', 'proceeds', 'no', 'appraisals', 'collateral', 'prepared', 'us', 'behalf', 'us', 'connection', 'offering', 'fair', 'market', 'value', 'collateral', 'subject', 'fluctuations', 'based', 'factors', 'include', 'among', 'others', 'ability', 'implement', 'business', 'strategy', 'ability', 'sell', 'collateral', 'orderly', 'sale', 'general', 'economic', 'conditions', 'availability', 'buyers', 'similar', 'factors', 'amount', 'received', 'upon', 'sale', 'collateral', 'would', 'dependent', 'numerous', 'factors', 'including', 'not', 'limited', 'actual', 'fair', 'market', 'value', 'collateral', 'time', 'general', 'market', 'economic', 'conditions', 'timing', 'manner', 'sale', 'also', 'no', 'assurance', 'collateral', 'saleable', 'even', 'saleable', 'timing', 'liquidation', 'uncertain', 'extent', 'liens', 'rights', 'easements', 'granted', 'third', 'parties', 'encumber', 'assets', 'located', 'property', 'owned', 'us', 'third', 'parties', 'may', 'exercise', 'rights', 'remedies', 'respect', 'property', 'subject', 'liens', 'could', 'adversely', 'affect', 'value', 'collateral', 'ability', 'security', 'agent', 'realize', '50', 'foreclose', 'collateral', 'nature', 'collateral', 'may', 'illiquid', 'may', 'not', 'readily', 'ascertainable', 'market', 'value', 'event', 'bankruptcy', 'case', 'commenced', 'us', 'value', 'collateral', 'less', 'amount', 'principal', 'accrued', 'unpaid', 'interest', 'notes', 'senior', 'secured', 'obligations', 'interest', 'may', 'cease', 'accrue', 'notes', 'date', 'bankruptcy', 'petition', 'filed', 'event', 'foreclosure', 'liquidation', 'bankruptcy', 'similar', 'proceeding', 'can', 'not', 'assure', 'proceeds', 'sale', 'liquidation', 'collateral', 'sufficient', 'pay', 'obligations', 'due', 'notes', 'security', 'interests', 'collateral', 'granted', 'security', 'agent', 'rather', 'directly', 'holders', 'notes', 'ability', 'security', 'agent', 'enforce', 'certain', 'collateral', 'may', 'restricted', 'local', 'law', 'security', 'interests', 'collateral', 'secure', 'obligations', 'issuer', 'guarantors', 'notes', 'not', 'granted', 'directly', 'holders', 'notes', 'granted', 'favor', 'security', 'agent', 'indenture', 'intercreditor', 'agreement', 'provide', 'security', 'agent', 'right', 'enforce', 'collateral', 'consequence', 'holders', 'notes', 'not', 'direct', 'security', 'interests', 'not', 'entitled', 'take', 'enforcement', 'action', 'respect', 'collateral', 'securing', 'notes', 'except', 'trustee', 'subject', 'provisions', 'indenture', 'provide', 'instructions', 'security', 'agent', 'respect', 'collateral', 'circumstances', 'repayment', 'discharge', 'notes', 'collateral', 'securing', 'notes', 'released', 'automatically', 'without', 'consent', 'trustee', 'security', 'agent', 'obtaining', 'consent', 'various', 'circumstances', 'guarantees', 'collateral', 'released', 'automatically', 'unconditionally', 'including', 'without', 'limitation', 'connection', 'sale', 'disposition', 'collateral', 'directly', 'indirectly', 'person', 'not', 'either', 'giving', 'effect', 'transaction', 'issuer', 'restricted', 'subsidiary', 'excluding', 'transaction', 'subject', 'covenant', 'described', 'description', 'notes', 'certain', 'covenants', 'merger', 'consolidation', 'sale', 'disposition', 'not', 'violate', 'provisions', 'indenture', 'case', 'guarantor', 'released', 'guarantee', 'pursuant', 'terms', 'indenture', 'release', 'property', 'assets', 'capital', 'stock', 'guarantor', 'issuer', 'designates', 'restricted', 'subsidiary', 'unrestricted', 'subsidiary', 'accordance', 'applicable', 'provisions', 'indenture', 'release', 'property', 'assets', 'restricted', 'subsidiary', 'upon', 'legal', 'defeasance', 'covenant', 'defeasance', 'satisfaction', 'discharge', 'indenture', 'provided', 'captions', 'description', 'notes', 'defeasance', 'description', 'notes', 'satisfaction', 'discharge', 'connection', 'initial', 'public', 'offering', 'issuer', 'release', 'option', 'issuer', 'part', 'pledge', 'capital', 'stock', 'issuer', 'within', 'reasonable', 'time', 'prior', 'thereto', 'facilitate', 'initial', 'public', 'offering', 'ii', 'following', 'initial', 'public', 'offering', 'issuer', 'release', 'security', 'interests', 'part', 'pledge', 'capital', 'stock', 'issuer', 'subject', 'security', 'interests', 'connection', 'issuances', 'sales', 'capital', 'stock', 'within', 'reasonable', 'time', 'prior', 'thereto', 'facilitate', 'issuance', 'sale', 'provided', 'case', 'security', 'interests', 'released', 'soon', 'reasonably', 'practicable', 'granted', 'favor', 'notes', 'event', 'initial', 'public', 'offering', 'sale', 'issuance', 'case', 'may', 'not', 'complete', 'reason', 'case', 'security', 'assignment', 'receivables', 'respect', 'intercompany', 'loans', 'upon', 'partial', 'repayment', 'thereof', 'security', 'interests', 'created', 'receivables', 'automatically', 'reduced', 'proportion', 'partial', 'repayment', 'upon', 'full', 'repayment', 'thereof', 'security', 'assignment', 'shall', 'automatically', 'fully', 'released', 'otherwise', 'permitted', 'accordance', 'indenture', 'intercreditor', 'agreement', '51', 'addition', 'liens', 'property', 'assets', 'constituting', 'collateral', 'may', 'also', 'released', 'extent', 'necessary', 'enable', 'issuer', 'one', 'restricted', 'subsidiaries', 'consummate', 'sale', 'transfer', 'disposition', 'property', 'assets', 'including', 'not', 'limited', 'connection', 'certain', 'factoring', 'transactions', 'provided', 'sale', 'transfer', 'disposition', 'not', 'violate', 'covenant', 'described', 'description', 'notes', 'certain', 'covenants', 'limitation', 'sales', 'assets', 'subsidiary', 'stock', 'indenture', 'also', 'provide', 'collateral', 'securing', 'notes', 'may', 'released', 'retaken', 'several', 'circumstances', 'including', 'connection', 'refinancing', 'certain', 'indebtedness', 'including', 'notes', 'certain', 'circumstances', 'creditors', 'insolvency', 'administrators', 'representatives', 'courts', 'could', 'challenge', 'validity', 'enforceability', 'grant', 'collateral', 'challenge', 'successful', 'could', 'potentially', 'limit', 'recovery', 'respect', 'collateral', 'thus', 'reduce', 'recovery', 'notes', 'see', 'description', 'notes', 'security', 'release', 'liens', 'investors', 'rights', 'collateral', 'may', 'adversely', 'affected', 'failure', 'perfect', 'security', 'interests', 'collateral', 'applicable', 'law', 'security', 'interest', 'certain', 'assets', 'properly', 'perfected', 'priority', 'retained', 'certain', 'actions', 'undertaken', 'secured', 'party', 'grantor', 'security', 'liens', 'collateral', 'securing', 'notes', 'may', 'not', 'perfected', 'respect', 'claims', 'notes', 'security', 'agent', 'applicable', 'fail', 'unable', 'take', 'actions', 'required', 'perfect', 'liens', 'agreed', 'perfection', 'steps', 'shall', 'not', 'taken', 'basis', 'steps', 'undesirable', 'effects', 'avoidance', 'doubt', 'subject', 'applicable', 'law', 'security', 'agent', 'not', 'obligation', 'take', 'steps', 'actions', 'necessary', 'perfect', 'liens', 'absent', 'perfection', 'holder', 'security', 'interest', 'may', 'difficulty', 'enforcing', 'holder', 'rights', 'collateral', 'regard', 'third', 'parties', 'including', 'trustee', 'bankruptcy', 'creditors', 'claim', 'security', 'interest', 'collateral', 'addition', 'debtor', 'may', 'discharge', 'obligation', 'paying', 'security', 'provider', 'not', 'debtor', 'receives', 'notification', 'existence', 'security', 'interest', 'granted', 'security', 'provider', 'favor', 'security', 'taker', 'claims', 'security', 'taker', 'creditor', 'debtor', 'occurred', 'event', 'default', 'indenture', 'finally', 'since', 'ranking', 'pledges', 'typically', 'determined', 'date', 'became', 'enforceable', 'third', 'parties', 'security', 'interest', 'created', 'later', 'date', 'collateral', 'came', 'force', 'third', 'parties', 'earlier', 'way', 'registration', 'appropriate', 'register', 'notification', 'otherwise', 'provided', 'applicable', 'law', 'may', 'priority', 'issuer', 'guarantors', 'limited', 'obligations', 'assist', 'security', 'agent', 'perfecting', 'security', 'interest', 'holders', 'notes', 'collateral', 'no', 'assurance', 'security', 'agent', 'monitor', 'issuer', 'inform', 'security', 'agent', 'future', 'acquisition', 'property', 'rights', 'constitute', 'collateral', 'necessary', 'action', 'taken', 'properly', 'create', 'perfect', 'security', 'interest', 'property', 'rights', 'acquired', 'post', 'completion', 'subject', 'applicable', 'law', 'security', 'agent', 'no', 'obligation', 'monitor', 'acquisition', 'additional', 'property', 'rights', 'constitute', 'collateral', 'creation', 'perfection', 'security', 'interest', 'failure', 'create', 'perfect', 'additional', 'security', 'interests', 'may', 'adversely', 'affect', 'relevant', 'security', 'interest', 'priority', 'security', 'interest', 'favor', 'notes', 'case', 'laws', 'england', 'wales', 'security', 'registerable', 'provided', 'security', 'registered', 'ranking', 'security', 'interests', 'granted', 'security', 'providers', 'incorporated', 'england', 'wales', 'subject', 'certain', 'exceptions', 'determined', 'date', 'created', 'accordingly', 'security', 'interest', 'created', 'later', 'date', 'collateral', 'duly', 'registered', 'take', 'priority', 'earlier', 'created', 'security', 'interest', 'not', 'registered', 'within', 'appropriate', 'timeframe', 'ranking', 'certain', 'security', 'interests', 'determined', 'date', 'registration', 'applicable', 'date', 'notice', '52', 'insolvency', 'laws', 'jersey', 'england', 'wales', 'may', 'not', 'favorable', 'u', 'bankruptcy', 'laws', 'may', 'preclude', 'holders', 'notes', 'recovering', 'payments', 'due', 'notes', 'issuer', 'incorporated', 'laws', 'jersey', 'guarantors', 'incorporated', 'laws', 'england', 'wales', 'jersey', 'accordingly', 'insolvency', 'proceedings', 'respect', 'entities', 'would', 'likely', 'proceed', 'governed', 'jersey', 'english', 'insolvency', 'law', 'applicable', 'jersey', 'english', 'insolvency', 'law', 'may', 'not', 'favorable', 'investors', 'laws', 'united', 'states', 'jurisdictions', 'investors', 'familiar', 'see', 'certain', 'insolvency', 'local', 'law', 'limitations', 'event', 'issuer', 'guarantors', 'future', 'guarantors', 'subsidiaries', 'experienced', 'financial', 'difficulty', 'not', 'possible', 'predict', 'certainty', 'jurisdiction', 'jurisdictions', 'insolvency', 'similar', 'proceedings', 'would', 'commenced', 'outcome', 'proceedings', 'insolvency', 'laws', 'jurisdictions', 'may', 'materially', 'different', 'conflict', 'including', 'areas', 'rights', 'secured', 'creditors', 'ability', 'void', 'preferential', 'transfer', 'priority', 'governmental', 'creditors', 'ability', 'obtain', 'post', 'petition', 'interest', 'duration', 'proceeding', 'application', 'laws', 'conflict', 'among', 'could', 'call', 'question', 'whether', 'particular', 'jurisdiction', 'laws', 'apply', 'adversely', 'affect', 'ability', 'enforce', 'rights', 'guarantees', 'collateral', 'jurisdictions', 'limit', 'amounts', 'may', 'receive', 'see', 'guarantee', 'security', 'interest', 'subject', 'certain', 'limitations', 'enforcement', 'may', 'limited', 'applicable', 'laws', 'subject', 'certain', 'defenses', 'may', 'limit', 'validity', 'enforceability', 'security', 'interests', 'collateral', 'may', 'declared', 'unenforceable', 'third', 'parties', 'fraudulent', 'conveyance', 'laws', 'case', 'laws', 'england', 'wales', 'section', '423', 'insolvency', 'act', '1986', 'applies', 'respect', 'transactions', 'entered', 'undervalue', 'defrauding', 'creditors', 'provision', 'used', 'time', 'person', 'prejudiced', 'relevant', 'transaction', 'may', 'apply', 'court', 'transaction', 'set', 'aside', 'interests', 'protected', 'means', 'remedies', 'granted', 'provision', 'not', 'limited', 'transactions', 'entered', 'within', 'set', 'time', 'limits', 'transactions', 'avoided', 'even', 'company', 'solvent', 'time', 'transaction', 'enforcement', 'collateral', 'across', 'multiple', 'jurisdictions', 'may', 'difficult', 'collateral', 'governed', 'laws', 'jersey', 'england', 'wales', 'state', 'new', 'york', 'rights', 'collateral', 'thus', 'subject', 'laws', 'respective', 'jurisdiction', 'may', 'difficult', 'effectively', 'enforce', 'rights', 'multiple', 'bankruptcies', 'insolvency', 'similar', 'proceedings', 'moreover', 'multijurisdictional', 'proceedings', 'typically', 'complex', 'costly', 'creditors', 'often', 'result', 'substantial', 'uncertainty', 'delay', 'enforcement', 'creditors', 'rights', 'application', 'various', 'laws', 'multiple', 'jurisdictions', 'could', 'trigger', 'disputes', 'jurisdiction', 'law', 'apply', 'could', 'adversely', 'affect', 'ability', 'enforce', 'collateral', 'realize', 'recover', 'notes', 'notes', 'guarantee', 'see', 'enforcement', 'civil', 'liabilities', 'intercreditor', 'agreement', 'holders', 'notes', 'required', 'share', 'recovery', 'proceeds', 'secured', 'creditors', 'recover', 'proceeds', 'lenders', 'new', 'revolving', 'credit', 'facility', 'future', 'lenders', 'super', 'priority', 'debt', 'certain', 'priority', 'hedging', 'counterparties', 'repaid', 'full', 'subject', 'certain', 'limitations', 'ability', 'enforce', 'security', 'interests', 'trustee', 'indenture', 'issue', 'date', 'enter', 'intercreditor', 'agreement', 'among', 'others', 'facility', 'agent', 'new', 'revolving', 'credit', 'facility', 'counterparties', 'certain', 'hedging', 'obligations', 'security', 'agent', 'creditors', 'may', 'become', 'parties', 'intercreditor', 'agreement', 'may', 'enter', 'additional', 'intercreditor', 'agreements', 'future', 'among', 'things', 'intercreditor', 'agreement', 'governs', 'enforcement', 'collateral', 'sharing', 'recoveries', 'enforcement', 'release', 'collateral', 'security', 'agent', 'intercreditor', 'agreement', 'provides', 'security', 'agent', 'shall', 'act', 'upon', 'instructions', 'facility', 'agent', 'new', 'revolving', 'credit', 'facility', 'agreement', '53', 'instructed', '50', 'percent', 'lenders', 'new', 'revolving', 'credit', 'facility', 'trustee', 'notes', 'instructed', 'holders', 'majority', 'principal', 'amount', 'notes', 'outstanding', 'accordance', 'provisions', 'intercreditor', 'agreement', 'facility', 'agent', 'new', 'revolving', 'credit', 'facility', 'instructed', '50', 'percent', 'lenders', 'new', 'revolving', 'credit', 'facility', 'trustee', 'notes', 'instructed', 'holders', 'majority', 'principal', 'amount', 'notes', 'outstanding', 'entitled', 'instruct', 'security', 'agent', 'enforce', 'security', 'accordance', 'provisions', 'intercreditor', 'agreement', 'event', 'conflicting', 'instructions', 'intercreditor', 'agreement', 'contains', 'provisions', 'set', 'instructions', 'prevail', 'see', 'description', 'financial', 'arrangements', 'intercreditor', 'agreement', 'intercreditor', 'agreement', 'provides', 'event', 'classes', 'creditors', 'entitled', 'provide', 'enforcement', 'instructions', 'security', 'agent', 'provide', 'conflicting', 'instructions', 'creditors', 'must', 'subject', 'certain', 'exceptions', 'consult', 'period', '15', 'days', 'enforcement', 'action', 'may', 'taken', 'consultation', 'period', 'enforcement', 'instructions', 'given', 'requisite', 'percentage', 'holders', 'notes', 'prevail', 'consultation', 'period', 'however', 'creditors', 'new', 'revolving', 'credit', 'facility', 'existing', 'hedging', 'counterparties', 'not', 'fully', 'repaid', 'within', 'six', 'months', 'proposed', 'date', 'issuance', 'enforcement', 'instructions', 'security', 'agent', 'reason', 'security', 'agent', 'not', 'commenced', 'enforcement', 'action', 'within', 'three', 'months', 'end', 'consultation', 'period', 'event', 'insolvency', 'occurs', 'security', 'agent', 'not', 'commenced', 'enforcement', 'enforcement', 'action', 'time', 'enforcement', 'instructions', 'requisite', 'percentage', 'lenders', 'new', 'revolving', 'credit', 'facility', 'super', 'senior', 'hedge', 'counterparites', 'prevail', 'arrangements', 'could', 'disadvantageous', 'holders', 'notes', 'number', 'respects', 'including', 'consequence', 'time', 'periods', 'noted', 'addition', 'creditors', 'not', 'subject', 'intercreditor', 'agreement', 'could', 'commence', 'enforcement', 'action', 'issuer', 'subsidiaries', 'period', 'issuer', 'one', 'subsidiaries', 'could', 'seek', 'protection', 'applicable', 'bankruptcy', 'laws', 'value', 'certain', 'collateral', 'could', 'otherwise', 'impaired', 'reduced', 'value', 'addition', 'certain', 'circumstances', 'including', 'acceleration', 'new', 'revolving', 'credit', 'facility', 'notes', 'amounts', 'recovered', 'respect', 'notes', 'including', 'payments', 'interest', 'proceeds', 'enforcement', 'guarantees', 'collateral', 'required', 'turned', 'security', 'agent', 'subject', 'prior', 'payment', 'fees', 'costs', 'expenses', 'facility', 'agent', 'new', 'revolving', 'credit', 'facility', 'trustee', 'security', 'agent', 'receiver', 'appointed', 'intercreditor', 'agreement', 'requires', 'security', 'agent', 'pay', 'amounts', 'turned', 'otherwise', 'received', 'respect', 'notes', 'proceeds', 'enforcement', 'collateral', 'lenders', 'new', 'revolving', 'credit', 'facility', 'counterparties', 'certain', 'hedging', 'obligations', 'priority', 'holders', 'notes', 'new', 'revolving', 'credit', 'facility', 'provide', 'total', 'original', 'facility', 'commitments', '80', 'million', 'addition', 'indenture', 'new', 'revolving', 'credit', 'facility', 'permit', 'us', 'compliance', 'covenants', 'agreements', 'incur', 'additional', 'indebtedness', 'secured', 'liens', 'collateral', 'ability', 'incur', 'additional', 'debt', 'future', 'secured', 'collateral', 'may', 'effect', 'diluting', 'ratio', 'value', 'collateral', 'aggregate', 'amount', 'obligations', 'secured', 'collateral', 'credit', 'ratings', 'may', 'not', 'reflect', 'risks', 'not', 'recommendations', 'buy', 'hold', 'securities', 'may', 'subject', 'revision', 'suspension', 'withdrawal', 'time', 'one', 'independent', 'credit', 'rating', 'agencies', 'may', 'assign', 'credit', 'ratings', 'notes', 'ratings', 'may', 'not', 'reflect', 'potential', 'impact', 'risks', 'related', 'structure', 'market', 'additional', 'risk', 'factors', 'discussed', 'factors', 'may', 'affect', 'value', 'notes', 'credit', 'rating', 'not', 'recommendation', 'buy', 'sell', 'hold', 'securities', 'may', 'subject', 'revision', 'suspension', 'withdrawal', 'rating', 'agency', 'time', 'no', 'assurance', 'given', '54', 'credit', 'rating', 'remain', 'constant', 'given', 'period', 'time', 'credit', 'rating', 'not', 'lowered', 'withdrawn', 'entirely', 'credit', 'rating', 'agency', 'judgment', 'circumstances', 'future', 'warrant', 'suspension', 'reduction', 'withdrawal', 'time', 'credit', 'rating', 'assigned', 'notes', 'one', 'credit', 'rating', 'agencies', 'may', 'adversely', 'affect', 'cost', 'terms', 'conditions', 'financings', 'could', 'adversely', 'affect', 'value', 'trading', 'notes', 'investors', 'notes', 'may', 'limited', 'recourse', 'independent', 'auditors', 'respect', 'audit', 'reports', 'relating', 'annual', 'financial', 'statements', 'reproduced', 'herein', 'kpmg', 'llp', 'independent', 'auditor', 'provides', 'report', 'made', 'solely', 'company', 'members', 'body', 'accordance', 'chapter', '3', 'part', '16', 'companies', 'act', '2006', 'audit', 'work', 'undertaken', 'might', 'state', 'company', 'members', 'matters', 'required', 'state', 'auditor', 'report', 'no', 'purpose', 'fullest', 'extent', 'permitted', 'law', 'not', 'accept', 'assume', 'responsibility', 'anyone', 'company', 'company', 'members', 'body', 'audit', 'work', 'report', 'opinions', 'formed', 'similar', 'wording', 'investors', 'notes', 'understand', 'statements', 'intended', 'disclaim', 'liability', 'parties', 'purchasers', 'notes', 'members', 'company', 'respect', 'reports', 'u', 'securities', 'exchange', 'commission', 'would', 'not', 'permit', 'limiting', 'language', 'included', 'registration', 'statement', 'prospectus', 'used', 'connection', 'offering', 'securities', 'registered', 'u', 'securities', 'act', 'report', 'filed', 'securities', 'exchange', 'act', 'u', 'court', 'court', 'give', 'effect', 'language', 'quoted', 'recourse', 'investors', 'notes', 'may', 'independent', 'auditors', 'based', 'reports', 'consolidated', 'financial', 'statements', 'relate', 'could', 'limited', 'extent', 'auditors', 'responsibility', 'liability', 'third', 'parties', 'unclear', 'laws', 'many', 'jurisdictions', 'including', 'united', 'kingdom', 'legal', 'effect', 'statements', 'audit', 'reports', 'untested', 'inclusion', 'language', 'referred', 'however', 'may', 'limit', 'ability', 'holders', 'notes', 'bring', 'action', 'auditors', 'damages', 'arising', 'investment', 'notes', 'investors', 'may', 'not', 'able', 'recover', 'civil', 'proceedings', 'u', 'securities', 'law', 'violations', 'issuer', 'guarantors', 'respective', 'subsidiaries', 'aston', 'martin', 'lagonda', 'north', 'america', 'inc', 'amlna', 'organized', 'outside', 'united', 'states', 'business', 'conducted', 'largely', 'outside', 'united', 'states', 'directors', 'executive', 'officers', 'issuer', 'guarantors', 'non', 'residents', 'united', 'states', 'although', 'issuer', 'guarantors', 'submit', 'jurisdiction', 'certain', 'new', 'york', 'courts', 'connection', 'action', 'u', 'securities', 'laws', 'indenture', 'may', 'unable', 'effect', 'service', 'process', 'within', 'united', 'states', 'directors', 'executive', 'officers', 'issuer', 'guarantors', 'addition', 'assets', 'issuer', 'guarantors', 'respective', 'subsidiaries', 'amlna', 'majority', 'assets', 'directors', 'executive', 'officers', 'located', 'outside', 'united', 'states', 'may', 'unable', 'enforce', 'judgments', 'obtained', 'u', 'courts', 'moreover', 'light', 'recent', 'decisions', 'u', 'supreme', 'court', 'actions', 'issuer', 'guarantors', 'may', 'not', 'subject', 'civil', 'liability', 'provisions', 'federal', 'securities', 'laws', 'united', 'states', 'see', 'enforcement', 'civil', 'liabilities', 'transfer', 'notes', 'restricted', 'may', 'adversely', 'affect', 'value', 'notes', 'notes', 'guarantees', 'not', 'not', 'not', 'required', 'registered', 'u', 'securities', 'act', 'securities', 'laws', 'jurisdiction', 'may', 'not', 'offered', 'sold', 'united', 'states', 'except', 'qibs', 'accordance', 'rule', '144a', 'non', 'u', 'persons', 'offshore', 'transactions', 'accordance', 'regulation', 'pursuant', 'another', 'exemption', 'transaction', 'not', 'subject', 'registration', 'requirements', 'u', 'securities', 'act', 'applicable', 'laws', 'restrictions', 'may', 'limit', 'ability', 'investors', 'resell', 'notes', 'obligation', 'investors', 'notes', 'ensure', 'offers', 'sales', 'notes', 'within', 'united', 'states', 'countries', 'comply', 'applicable', 'securities', 'laws', 'see', 'transfer', 'restrictions', '55', 'may', 'not', 'active', 'trading', 'market', 'notes', 'case', 'ability', 'sell', 'notes', 'limited', 'notes', 'new', 'issues', 'securities', 'currently', 'no', 'established', 'trading', 'market', 'can', 'not', 'assure', 'liquidity', 'market', 'notes', 'ability', 'sell', 'notes', 'prices', 'would', 'able', 'sell', 'notes', 'future', 'trading', 'prices', 'notes', 'depend', 'many', 'factors', 'including', 'among', 'things', 'prevailing', 'interest', 'rates', 'operating', 'results', 'market', 'similar', 'securities', 'liquidity', 'trading', 'market', 'notes', 'may', 'adversely', 'affected', 'general', 'decline', 'market', 'similar', 'securities', 'historically', 'market', 'non', 'investment', 'grade', 'securities', 'subject', 'disruptions', 'caused', 'substantial', 'volatility', 'prices', 'securities', 'similar', 'notes', 'disruption', 'may', 'negative', 'effect', 'holder', 'notes', 'regardless', 'prospects', 'financial', 'performance', 'notes', 'may', 'not', 'remain', 'listed', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'although', 'issuer', 'indenture', 'agree', 'use', 'commercially', 'reasonable', 'efforts', 'notes', 'listed', 'official', 'list', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'maintain', 'listing', 'long', 'notes', 'outstanding', 'issuer', 'can', 'not', 'assure', 'listing', 'permission', 'deal', 'notes', 'remain', 'issuer', 'can', 'not', 'maintain', 'listing', 'permission', 'deal', 'notes', 'official', 'list', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'becomes', 'unduly', 'burdensome', 'maintain', 'listing', 'issuer', 'may', 'cease', 'maintain', 'listing', 'official', 'list', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'provided', 'use', 'commercially', 'reasonable', 'efforts', 'obtain', 'maintain', 'listing', 'notes', 'another', 'stock', 'exchange', 'although', 'no', 'assurance', 'issuer', 'able', 'although', 'no', 'assurance', 'made', 'liquidity', 'notes', 'result', 'listing', 'official', 'list', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'another', 'recognized', 'listing', 'exchange', 'comparable', 'issuers', 'accordance', 'indenture', 'failure', 'approved', 'listing', 'delisting', 'notes', 'official', 'list', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'another', 'listing', 'exchange', 'accordance', 'indenture', 'may', 'material', 'adverse', 'effect', 'holder', 'ability', 'resell', 'notes', 'secondary', 'market', 'addition', 'can', 'not', 'obtain', 'maintain', 'listing', 'may', 'required', 'withhold', 'tax', 'certain', 'interest', 'payments', 'see', 'certain', 'tax', 'considerations', 'united', 'kingdom', 'tax', 'notes', 'initially', 'held', 'book', 'entry', 'form', 'therefore', 'investors', 'must', 'rely', 'procedures', 'relevant', 'clearing', 'systems', 'exercise', 'rights', 'remedies', 'notes', 'initially', 'issued', 'global', 'certificated', 'form', 'held', 'euroclear', 'clearstream', 'respect', 'sterling', 'notes', 'dtc', 'respect', 'dollar', 'notes', 'interests', 'global', 'notes', 'trade', 'book', 'entry', 'form', 'notes', 'definitive', 'registered', 'form', 'definitive', 'registered', 'notes', 'issued', 'exchange', 'book', 'entry', 'interests', 'limited', 'circumstances', 'owners', 'book', 'entry', 'interests', 'not', 'considered', 'owners', 'holders', 'notes', 'common', 'depositary', 'nominee', 'euroclear', 'clearstream', 'sole', 'registered', 'holder', 'global', 'notes', 'representing', 'sterling', 'notes', 'nominee', 'dtc', 'sole', 'registered', 'holder', 'global', 'notes', 'representing', 'dollar', 'notes', 'payments', 'principal', 'interest', 'amounts', 'owing', 'respect', 'global', 'notes', 'representing', 'notes', 'made', 'paying', 'agent', 'make', 'payments', 'euroclear', 'clearstream', 'dtc', 'applicable', 'thereafter', 'payments', 'credited', 'participants', 'accounts', 'hold', 'book', 'entry', 'interests', 'global', 'notes', 'representing', 'notes', 'credited', 'participants', 'indirect', 'participants', 'payment', 'common', 'depositary', 'euroclear', 'clearstream', 'nominee', 'dtc', 'applicable', 'issuer', 'no', 'responsibility', 'liability', 'payment', 'interest', 'principal', 'amounts', 'owners', 'book', 'entry', 'interests', 'accordingly', 'investors', 'book', 'entry', 'interest', 'must', 'rely', 'procedures', 'euroclear', 'clearstream', 'dtc', 'applicable', 'investors', 'not', 'participants', 'euroclear', 'clearstream', 'dtc', 'applicable', 'must', 'rely', 'procedures', 'participant', 'interest', 'exercise', 'rights', 'obligations', 'holder', 'notes', 'indenture', '56', 'unlike', 'holders', 'notes', 'owners', 'book', 'entry', 'interests', 'not', 'direct', 'right', 'act', 'upon', 'issuer', 'solicitations', 'consents', 'requests', 'waivers', 'actions', 'holders', 'notes', 'instead', 'investor', 'owns', 'book', 'entry', 'interest', 'permitted', 'act', 'extent', 'received', 'appropriate', 'proxies', 'euroclear', 'clearstream', 'dtc', 'applicable', 'procedures', 'implemented', 'granting', 'proxies', 'may', 'not', 'sufficient', 'enable', 'investor', 'vote', 'timely', 'basis', 'similarly', 'upon', 'occurrence', 'event', 'default', 'indenture', 'unless', 'definitive', 'registered', 'notes', 'issued', 'respect', 'book', 'entry', 'interests', 'investors', 'bookentry', 'interests', 'restricted', 'acting', 'euroclear', 'clearstream', 'dtc', 'applicable', 'procedures', 'implemented', 'euroclear', 'clearstream', 'dtc', 'applicable', 'may', 'not', 'adequate', 'ensure', 'timely', 'exercise', 'rights', 'notes', 'see', 'book', 'entry', 'delivery', 'form', 'interests', 'controlling', 'shareholders', 'may', 'differ', 'amongst', 'one', 'another', 'may', 'differ', 'interests', 'holders', 'notes', 'date', 'offering', 'memorandum', 'asmar', 'limited', 'owns', '19', '0', 'ordinary', 'shares', 'holdings', 'shares', 'international', 'oasis', 'holding', 'company', 'ioh', 'owns', '24', '2', 'shares', 'including', '100', 'ownership', 'intermediary', 'entities', 'including', 'ownership', 'primewagon', 'jersey', 'limited', 'owns', '19', '5', 'shares', 'ioh', 'also', 'indirectly', 'owns', '29', '51', 'ordinary', 'shares', 'asmar', 'limited', 'addition', 'currently', 'contemplated', 'ioh', 'may', 'reorganize', 'holdings', 'holdings', 'change', 'remains', 'subject', 'certain', 'consents', 'not', 'impact', 'beneficial', 'ownership', 'may', 'impact', 'direct', 'holdings', 'certain', 'affiliates', 'funds', 'investment', 'subsidiaries', 'applicable', 'managed', 'investindustrial', 'advisors', 'limited', 'affliliates', 'beneficially', '37', '7', 'shares', 'indirect', '100', 'ownership', 'prestige', 'motor', 'holdings', 'adeem', 'automotive', 'manufacturing', 'company', 'limited', 'owns', '11', '0', 'shares', 'stehwaz', 'automotive', 'jersey', 'limited', 'owns', '2', '5', 'shares', 'investindustrial', 'advisors', 'limited', 'investment', 'manager', 'regulated', 'financial', 'conduct', 'authority', 'united', 'kingdom', 'addition', 'daimler', 'ag', 'owns', '4', '9', 'shares', 'however', 'daimler', 'shares', 'non', 'voting', 'ordinary', 'shares', 'result', 'shareholders', 'able', 'control', 'matters', 'requiring', 'approval', 'holding', 'company', 'shareholders', 'including', 'election', 'removal', 'directors', 'corporate', 'management', 'policies', 'potential', 'mergers', 'acquisitions', 'payment', 'dividends', 'asset', 'sales', 'significant', 'corporate', 'transactions', 'addition', 'certain', 'shareholders', 'hold', 'preference', 'shares', 'entitled', '15', 'fixed', 'preferential', 'yearly', 'dividend', 'compounds', 'annually', 'payable', 'redemption', 'date', 'relevant', 'preference', 'share', 'interests', 'shareholders', 'may', 'differ', 'material', 'respects', 'example', 'interests', 'shareholders', 'ordinary', 'preference', 'equity', 'holders', 'holding', 'company', 'may', 'pursuing', 'acquisitions', 'divestitures', 'financings', 'transactions', 'judgment', 'could', 'enhance', 'equity', 'investment', 'even', 'though', 'transactions', 'might', 'involve', 'risks', 'holder', 'notes', 'shareholders', 'no', 'contractual', 'obligations', 'fund', 'business', 'may', 'not', 'sufficient', 'liquidity', 'fund', 'business', 'encounter', 'financial', 'difficulties', 'unable', 'pay', 'debts', 'mature', 'otherwise', 'require', 'additional', 'funding', 'additionally', 'indenture', 'permits', 'us', 'pay', 'advisory', 'fees', 'dividends', 'make', 'restricted', 'payments', 'certain', 'circumstances', 'shareholders', 'may', 'interest', 'interests', 'controlling', 'shareholders', 'may', 'differ', 'one', 'another', 'differences', 'could', 'result', 'disagreements', 'controlling', 'shareholders', 'regarding', 'strategic', 'decisions', 'holdings', 'disagreements', 'could', 'render', 'us', 'unable', 'pursue', 'certain', 'strategic', 'alternatives', 'take', 'actions', 'require', 'ultimate', 'approval', 'controlling', 'shareholders', 'additionally', 'certain', 'shareholders', 'business', 'making', 'investments', 'companies', 'may', 'time', 'time', 'acquire', 'hold', 'interests', 'businesses', 'compete', 'directly', 'indirectly', 'us', 'conduct', 'business', 'shareholders', 'may', 'also', 'pursue', 'acquisition', 'opportunities', 'may', 'complementary', 'business', 'result', 'acquisition', 'opportunities', 'may', 'not', 'available', 'us', 'consider', 'interests', 'holders', 'may', 'differ', 'material', 'respects', 'see', 'principal', 'shareholders', 'certain', 'relationships', 'related', 'party', 'transactions', '57', 'use', 'proceeds', 'gross', 'proceeds', 'offering', 'approximately', '530', '0', 'million', 'equivalent', 'primarily', 'used', 'issuer', 'fund', 'notes', 'proceeds', 'loan', 'aml', 'turn', 'use', 'funds', 'received', 'redeem', 'existing', 'notes', 'behalf', 'capital', 'ii', 'redeem', 'existing', 'pik', 'notes', 'issued', 'fund', 'investment', 'group', 'behalf', 'holdings', 'iii', 'pay', 'commissions', 'fees', 'expenses', 'associated', 'transactions', 'iv', 'general', 'corporate', 'purposes', 'including', 'working', 'capital', 'addition', 'company', 'certain', 'subsidiaries', 'cancel', 'existing', 'revolving', 'credit', 'facility', 'enter', 'new', '80', 'million', 'revolving', 'credit', 'facility', 'agreement', 'among', 'inter', 'alios', 'j', 'p', 'morgan', 'limited', 'deutsche', 'bank', 'ag', 'london', 'branch', 'goldman', 'sachs', 'bank', 'usa', 'arrangers', 'jpmorgan', 'chase', 'bank', 'n', 'london', 'branch', 'deutsche', 'bank', 'ag', 'london', 'branch', 'goldman', 'sachs', 'bank', 'usa', 'bank', 'america', 'merrill', 'lynch', 'international', 'limited', 'hsbc', 'bank', 'plc', 'morgan', 'stanley', 'senior', 'funding', 'inc', 'standard', 'chartered', 'bank', 'unicredit', 'bank', 'ag', 'london', 'branch', 'original', 'lenders', 'elavon', 'financial', 'services', 'dac', 'uk', 'branch', 'facility', 'agent', 'u', 'bank', 'trustees', 'limited', 'security', 'agent', 'new', 'revolving', 'credit', 'facility', 'agreement', 'description', 'new', 'revolving', 'credit', 'facility', 'agreement', 'see', 'description', 'financial', 'arrangements', 'new', 'revolving', 'credit', 'facility', 'agreement', 'following', 'table', 'sets', 'forth', 'estimated', 'sources', 'uses', 'proceeds', 'offering', 'actual', 'amounts', 'vary', 'estimated', 'amounts', 'depending', 'several', 'factors', 'including', 'differences', 'estimate', 'fees', 'expenses', 'foreign', 'exchange', 'rates', 'outstanding', 'amounts', 'upon', 'repayment', 'sources', 'funds', 'notes', 'offered', 'hereby', '1', 'total', 'millions', 'uses', 'funds', 'millions', '530', '0', 'redemption', 'existing', 'notes', '2', 'redemption', 'existing', 'pik', 'notes', '3', 'transaction', 'fees', '4', 'general', 'corporate', 'purposes', '5', '318', '6', '530', '0', 'total', '530', '0', '183', '9', '11', '0', '16', '6', '1', 'represents', 'pounds', 'sterling', 'equivalent', 'expected', 'gross', 'proceeds', 'notes', 'offered', 'hereby', 'translated', 'exchange', 'rate', '1', '2478', '1', '0', 'represents', 'rate', 'exchange', 'march', '21', '2017', 'published', 'bloomberg', 'composite', 'rate', 'new', 'york', 'not', 'view', 'translations', 'representation', 'pounds', 'sterling', 'amounts', 'actually', 'represent', 'u', 'dollar', 'amounts', 'could', 'could', 'converted', 'u', 'dollars', 'rate', 'indicated', 'rate', 'issue', 'date', 'date', 'purposes', 'calculation', 'assumed', 'offering', '400', '0', 'million', 'dollar', 'notes', '209', '0', 'million', 'sterling', 'notes', '2', 'represents', 'redemption', 'price', 'entire', '304', 'million', 'aggregate', 'principal', 'amount', 'existing', 'notes', 'applicable', 'redemption', 'price', '102', '3125', 'plus', '7', '6', 'million', 'accrued', 'unpaid', 'interest', 'excluding', 'assumed', 'redemption', 'date', 'april', '22', '2017', '3', 'represents', 'redemption', 'price', 'entire', '218', '4', 'million', 'aggregate', 'principal', 'amount', 'existing', 'pik', 'notes', 'applicable', 'redemption', 'price', '102', 'plus', '6', '8', 'million', 'capitalized', 'interest', 'since', 'january', '1', '2017', 'excluding', 'assumed', 'redemption', 'date', 'april', '22', '2017', 'translated', 'exchange', 'rate', '1', '2478', '1', '0', 'represents', 'rate', 'exchange', 'march', '21', '2017', 'published', 'bloomberg', 'composite', 'rate', 'new', 'york', '4', 'represents', 'estimated', 'fees', 'expenses', 'associated', 'offering', 'use', 'proceeds', 'therefrom', 'including', 'initial', 'purchasers', 'fees', 'legal', 'accounting', 'expenses', 'transaction', 'costs', 'well', 'fee', 'expected', 'paid', 'holders', 'preference', 'shares', 'relating', 'certain', 'proposed', 'amendments', 'terms', 'preference', 'shares', '5', 'general', 'corporate', 'purposes', 'may', 'include', 'working', 'capital', 'capital', 'expenditures', 'investments', 'among', 'items', '58', 'capitalization', 'following', 'table', 'sets', 'forth', 'unaudited', 'consolidated', 'cash', 'cash', 'equivalents', 'capitalization', 'december', '31', '2016', 'actual', 'basis', 'holdings', 'adjusted', 'basis', 'company', 'give', 'effect', 'transactions', 'adjusted', 'information', 'illustrative', 'not', 'purport', 'indicative', 'capitalization', 'following', 'completion', 'offering', 'read', 'table', 'together', 'sections', 'offering', 'memorandum', 'entitled', 'use', 'proceeds', 'selected', 'historical', 'consolidated', 'financial', 'data', 'management', 'discussion', 'analysis', 'financial', 'condition', 'results', 'operations', 'consolidated', 'financial', 'statements', 'related', 'notes', 'included', 'elsewhere', 'offering', 'memorandum', 'december', '31', '2016', 'actual', 'holdings', 'adjusted', 'company', 'cash', 'cash', 'equivalents', '1', '101', '7', '118', '3', 'indebtedness', 'new', 'revolving', 'credit', 'facility', '2', 'existing', 'revolving', 'credit', 'facility', '2', 'notes', 'offered', 'hereby', '3', 'existing', 'notes', '4', 'existing', 'pik', 'notes', '5', 'inventory', 'funding', 'facilities', 'capitalized', 'financing', 'fees', '6', '304', '0', '175', '0', '5', '2', '2', '5', '530', '0', '5', '2', '11', '0', 'total', 'indebtedness', '7', 'total', 'shareholders', 'equity', '8', '481', '7', '72', '7', '524', '2', '70', '2', 'total', 'capitalization', '7', '554', '4', '594', '4', 'millions', '1', 'adjusted', 'cash', 'cash', 'equivalents', 'adjusted', 'give', 'effect', '16', '6', 'million', 'proceeds', 'offering', 'notes', 'available', 'general', 'corporate', 'purposes', 'including', 'working', 'capital', '2', 'date', 'offering', 'memorandum', 'expect', 'enter', 'new', 'revolving', 'credit', 'facility', 'providing', 'borrowings', 'time', 'time', '80', 'million', 'no', 'amounts', 'drawn', 'new', 'revolving', 'credit', 'facility', 'issue', 'date', 'new', 'revolving', 'credit', 'facility', 'benefit', 'guarantees', 'entity', 'guarantees', 'notes', 'security', 'assets', 'secure', 'notes', 'see', 'description', 'financial', 'arrangements', 'part', 'transactions', 'existing', 'revolving', 'credit', 'facility', 'cancelled', '3', 'represents', 'assumed', '400', '0', 'million', 'principal', 'amount', 'dollar', 'notes', 'assumed', '209', '0', 'million', 'principal', 'amount', 'sterling', 'notes', 'translated', 'exchange', 'rate', '1', '2478', '1', '0', 'represents', 'rate', 'exchange', 'march', '21', '2017', 'published', 'bloomberg', 'composite', 'rate', 'new', 'york', 'not', 'view', 'translations', 'representation', 'pounds', 'sterling', 'amounts', 'actually', 'represent', 'u', 'dollar', 'amounts', 'could', 'could', 'converted', 'u', 'dollars', 'rate', 'indicated', 'rate', 'issue', 'date', 'date', '4', 'indebtedness', 'respect', 'existing', 'notes', 'based', 'aggregate', 'principal', 'amount', 'rather', 'carrying', 'value', 'balance', 'sheet', 'redemption', 'price', 'entire', '304', 'million', 'aggregate', 'principal', 'amount', 'existing', 'notes', 'applicable', 'redemption', 'price', '102', '3125', 'plus', '7', '6', 'million', 'accrued', 'unpaid', 'interest', 'assumed', 'redemption', 'date', 'april', '22', '2017', '318', '6', 'million', '5', 'indebtedness', 'respect', 'existing', 'pik', 'notes', 'based', 'aggregate', 'principal', 'amount', '218', '4', 'million', 'translated', 'exchange', 'rate', '1', '2478', '1', '0', 'redemption', 'price', 'entire', '218', '4', 'million', 'aggregate', 'principal', 'amount', 'existing', 'pik', 'notes', 'liability', 'holdings', 'redemption', 'price', '102', 'including', '6', '8', 'million', 'capitalized', 'interest', 'since', 'january', '1', '2017', 'assumed', 'redemption', 'date', 'april', '22', '2017', 'translated', 'exchange', 'rate', '183', '9', 'million', '6', 'capitalized', 'finance', 'fees', 'includes', '2', '3', 'million', 'relating', 'original', 'issuance', 'costs', 'associated', 'existing', 'notes', '0', '2', 'million', 'respect', 'existing', 'pik', 'notes', 'written', 'expensed', 'connection', 'transactions', 'use', 'proceeds', 'therefrom', '7', 'total', 'indebtedness', 'total', 'capitalization', 'exclude', 'preference', 'shares', 'holdings', 'issued', 'preference', 'shares', 'two', 'tranches', 'april', '2015', 'april', '2016', 'see', 'principal', 'shareholders', 'preference', 'shares', 'consolidated', 'financial', 'statements', 'holdings', 'include', 'results', 'operations', 'financial', 'position', 'holdings', 'including', 'liabilities', 'costs', 'associated', 'preference', 'shares', 'immediately', 'following', 'redemption', 'existing', 'notes', 'holdings', 'not', 'part', 'restricted', 'group', 'preference', 'shares', 'not', 'attributable', 'company', 'subsidiaries', 'see', 'summary', 'transactions', 'reorganization', '8', 'total', 'shareholders', 'equity', 'adjusted', 'reflect', 'write', 'capitalized', 'financing', 'fees', 'associated', 'existing', 'notes', 'existing', 'pik', 'notes', '59', 'selected', 'historical', 'consolidated', 'financial', 'data', 'unless', 'otherwise', 'indicated', 'historical', 'financial', 'data', 'presented', 'following', 'tables', 'derived', 'historical', 'consolidated', 'financial', 'statements', 'holdings', 'included', 'elsewhere', 'offering', 'memorandum', 'financial', 'information', 'holdings', 'consolidated', 'financial', 'statements', 'holdings', 'years', 'ended', 'december', '31', '2014', '2015', '2016', 'presented', 'accordance', 'international', 'financial', 'reporting', 'standards', 'adopted', 'european', 'union', 'ifrs', 'holdings', 'not', 'provide', 'guarantee', 'type', 'credit', 'support', 'notes', 'share', 'pledge', 'company', 'shares', 'consolidated', 'financial', 'statements', 'holdings', 'include', 'results', 'operations', 'financial', 'position', 'holdings', 'giving', 'effect', 'transactions', 'not', 'attributable', 'company', 'subsidiaries', 'result', 'consolidated', 'financial', 'statements', 'holdings', 'not', 'directly', 'comparable', 'historical', 'financial', 'information', 'company', 'subsidiaries', 'giving', 'effect', 'transactions', 'material', 'differences', 'consolidated', 'financial', 'position', 'results', 'operations', 'holdings', 'company', 'primarily', 'relate', 'liabilities', 'costs', 'associated', 'preference', 'shares', 'including', 'capitalized', 'interest', 'expense', 'respect', 'thereto', 'obligations', 'holdings', 'not', 'company', 'well', '1', '4', 'million', '3', '9', 'million', '1', '1', 'million', 'annual', 'administration', 'costs', 'holdings', 'years', 'ended', 'december', '31', '2014', '2015', '2016', 'respectively', 'therefore', 'presented', 'offering', 'memorandum', 'financial', 'operating', 'results', 'certain', 'information', 'relating', 'holdings', 'lieu', 'company', 'believe', 'holdings', 'consolidated', 'financial', 'statements', 'subject', 'differences', 'noted', 'adequately', 'reflect', 'company', 'consolidated', 'financial', 'results', 'financial', 'position', 'results', 'operations', 'prior', 'years', 'not', 'necessarily', 'indicative', 'results', 'expected', 'future', 'period', '60', 'year', 'ended', 'december', '31', 'millions', 'unless', 'otherwise', 'indicated', '2014', '2015', '2016', 'consolidated', 'statement', 'comprehensive', 'income', 'data', 'revenue', 'cost', 'sales', '468', '4', '313', '5', '510', '2', '345', '3', '593', '5', '371', '9', 'gross', 'profit', 'selling', 'distribution', 'expenses', 'administrative', 'expenses', '1', '154', '9', '33', '4', '139', '8', '164', '9', '32', '1', '191', '1', '221', '6', '41', '9', '212', '0', 'operating', 'profit', 'loss', 'finance', 'income', 'finance', 'expense', '1', '18', '3', '2', '5', '56', '0', '58', '3', '2', '1', '71', '8', '32', '3', '2', '5', '133', '0', 'net', 'financing', 'expense', '1', '53', '5', '69', '7', '130', '5', 'profit', 'loss', 'income', 'tax', 'credit', 'expense', '71', '8', '7', '1', '128', '0', '21', '0', '162', '8', '15', '2', 'profit', 'loss', 'year', '2', '64', '7', '107', '0', '147', '6', 'comprehensive', 'income', 'year', 'net', 'income', 'tax', '12', '1', 'total', 'comprehensive', 'income', 'expense', 'year', '1', '76', '8', 'tax', '1', '6', '9', '100', '1', '53', '2', '200', '8', '1', 'administrative', 'expenses', 'includes', '1', '4', 'million', '3', '9', 'million', '1', '1', 'million', 'years', 'ended', 'december', '31', '2014', '2015', '2016', 'respectively', 'costs', 'attributable', 'holdings', 'giving', 'effect', 'transactions', 'holdings', 'not', 'part', 'restricted', 'group', 'costs', 'not', 'attributable', 'company', 'subsidiaries', '2', 'finance', 'expense', 'includes', 'interest', 'expense', 'respect', 'preference', 'shares', 'obligations', 'holdings', 'giving', 'effect', 'transactions', 'holdings', 'not', 'part', 'restricted', 'group', 'preference', 'shares', 'not', 'attributable', 'company', 'subsidiaries', 'finance', 'expense', 'respect', 'preference', 'shares', 'nil', '10', '8', 'million', '29', '1', 'million', 'years', 'ended', 'december', '31', '2014', '2015', '2016', 'respectively', 'following', 'table', 'presents', 'line', 'items', 'finance', 'expense', 'total', 'comprehensive', 'income', 'expense', 'year', 'adjusted', 'exclude', 'impact', 'preference', 'shares', 'year', 'ended', 'december', '31', 'millions', 'unless', 'otherwise', 'indicated', '2014', '2015', 'finance', 'expense', '56', '0', '61', '0', '103', '9', 'net', 'financing', 'expense', '53', '5', '58', '9', '101', '4', 'profit', 'loss', 'tax', 'income', 'tax', 'credit', 'expense', '71', '8', '7', '1', '117', '2', '21', '0', '133', '7', '15', '2', 'profit', 'loss', 'year', '64', '7', '96', '2', '118', '5', 'comprehensive', 'income', 'year', 'net', 'income', 'tax', '12', '1', '6', '9', '53', '2', 'total', 'comprehensive', 'income', 'expense', 'year', '76', '8', '89', '3', '171', '7', 'figures', 'table', 'adjusted', 'exclude', 'impact', 'preference', 'shares', '61', '2016', 'year', 'ended', 'december', '31', 'millions', 'unless', 'otherwise', 'indicated', 'consolidated', 'balance', 'sheet', 'data', 'cash', 'cash', 'equivalents', 'working', 'capital', '1', 'property', 'plant', 'equipment', 'total', 'assets', 'total', 'current', 'liabilities', 'total', 'non', 'current', 'liabilities', '2', 'total', 'shareholders', 'equity', 'total', 'liabilities', '2014', '2015', '89', '3', '46', '4', '174', '4', '1', '084', '0', '193', '3', '412', '5', '352', '8', '731', '1', '65', '6', '2', '7', '166', '3', '1', '109', '2', '212', '3', '532', '2', '264', '1', '845', '2', '2016', '101', '7', '41', '0', '196', '3', '1', '269', '8', '373', '0', '696', '1', '72', '7', '1', '197', '1', '1', 'working', 'capital', 'calculated', 'current', 'assets', 'less', 'current', 'liabilities', '2', 'represents', 'book', 'value', 'total', 'debt', 'determined', 'compliance', 'ifrs', 'total', 'non', 'current', 'liabilities', 'includes', 'preference', 'shares', 'obligations', 'holdings', 'excludes', 'financial', 'liabilities', '2', '9', 'million', '1', '5', 'million', '9', '6', 'million', 'years', 'ended', 'december', '31', '2014', '2015', '2016', 'respectively', 'related', 'hedging', 'ii', 'employee', 'benefits', 'provisions', 'deferred', 'tax', 'liabilities', 'together', 'amounted', '122', '4', 'million', '99', '1', 'million', '118', '4', 'million', 'years', 'ended', 'december', '31', '2014', '2015', '2016', 'respectively', 'giving', 'effect', 'transactions', 'holdings', 'not', 'part', 'restricted', 'group', 'preference', 'shares', 'not', 'attributable', 'company', 'subsidiaries', 'preference', 'shares', 'represented', 'nil', '98', '3', 'million', '218', '0', 'million', 'indebtedness', 'years', 'ended', 'december', '31', '2014', '2015', '2016', 'respectively', 'year', 'ended', 'december', '31', 'millions', 'unless', 'otherwise', 'indicated', 'consolidated', 'statement', 'cash', 'flows', 'data', 'net', 'cash', 'flows', 'operating', 'activities', 'net', 'cash', 'flows', 'used', 'investing', 'activities', 'net', 'cash', 'flows', 'used', 'financing', 'activities', 'net', 'decrease', 'increase', 'cash', 'cash', 'equivalents', '62', '2014', '2015', '2016', '57', '9', '123', '1', '80', '6', '15', '4', '75', '2', '161', '0', '62', '8', '22', '9', '164', '6', '190', '2', '53', '6', '28', '0', 'management', 'discussion', 'analysis', 'financial', 'condition', 'results', 'operations', 'following', 'information', 'read', 'together', 'selected', 'consolidated', 'financial', 'operating', 'data', 'consolidated', 'financial', 'statements', 'notes', 'included', 'elsewhere', 'offering', 'memorandum', 'unless', 'otherwise', 'indicated', 'historical', 'financial', 'data', 'presented', 'following', 'tables', 'derived', 'historical', 'consolidated', 'financial', 'statements', 'holdings', 'included', 'elsewhere', 'offering', 'memorandum', 'financial', 'information', 'holdings', 'consolidated', 'financial', 'statements', 'holdings', 'years', 'ended', 'december', '31', '2014', '2015', '2016', 'presented', 'accordance', 'international', 'financial', 'reporting', 'standards', 'adopted', 'european', 'union', 'ifrs', 'holdings', 'not', 'provide', 'guarantee', 'type', 'credit', 'support', 'notes', 'share', 'pledge', 'company', 'shares', 'however', 'consolidated', 'financial', 'statements', 'holdings', 'include', 'results', 'operations', 'financial', 'position', 'holdings', 'giving', 'effect', 'transactions', 'not', 'part', 'restricted', 'group', 'therefore', 'not', 'attributable', 'company', 'subsidiaries', 'result', 'consolidated', 'financial', 'statements', 'holdings', 'not', 'directly', 'comparable', 'historical', 'financial', 'information', 'company', 'subsidiaries', 'giving', 'effect', 'transactions', 'material', 'differences', 'consolidated', 'financial', 'position', 'results', 'operations', 'holdings', 'company', 'primarily', 'relate', 'liabilities', 'costs', 'associated', 'preference', 'shares', 'including', 'capitalized', 'interest', 'expense', 'respect', 'thereto', 'obligations', 'holdings', 'not', 'company', 'well', '1', '4', 'million', '3', '9', 'million', '1', '1', 'million', 'annual', 'administration', 'costs', 'holdings', 'years', 'ended', 'december', '31', '2014', '2015', '2016', 'respectively', 'therefore', 'presented', 'offering', 'memorandum', 'financial', 'operating', 'results', 'certain', 'information', 'relating', 'holdings', 'lieu', 'company', 'believe', 'holdings', 'consolidated', 'financial', 'statements', 'subject', 'differences', 'noted', 'adequately', 'reflect', 'company', 'consolidated', 'financial', 'results', 'financial', 'position', 'overview', 'aston', 'martin', 'brand', 'one', 'world', 'iconic', 'leading', 'luxury', 'brands', 'focused', 'design', 'engineering', 'manufacturing', 'luxury', 'sports', 'cars', 'brand', 'history', '100', 'years', 'symbolizes', 'luxury', 'exclusivity', 'elegance', 'power', 'beauty', 'sophistication', 'innovation', 'performance', 'exceptional', 'standard', 'styling', 'design', 'believe', 'rich', 'prestigious', 'heritage', 'defines', 'aston', 'martin', 'something', 'truly', 'unique', 'within', 'automotive', 'industry', 'cars', 'solely', 'address', 'high', 'luxury', 'sports', 'hls', 'segment', 'believe', 'epitome', 'performance', 'luxury', 'styling', 'current', 'core', 'model', 'line', 'comprises', 'five', 'core', 'models', 'including', 'two', 'sports', 'cars', 'v8', 'vantage', 'v12', 'vantage', 'one', 'grand', 'tourer', 'new', 'db11', 'one', 'four', 'door', 'four', 'seat', 'sports', 'coupe', 'rapide', 'one', 'super', 'car', 'vanquish', 'models', 'available', 'different', 'model', 'types', 'well', 'coupe', 'convertible', 'models', 'also', 'regularly', 'develop', 'produce', 'special', 'edition', 'niche', 'models', 'vantage', 'gt12', 'aston', 'martin', 'vulcan', 'lagonda', 'taraf', 'vanquish', 'zagato', 'new', 'hyper', 'car', 'aston', 'martin', 'valkyrie', '2015', 'introduced', 'new', 'second', 'century', 'plan', 'based', 'three', 'key', 'principles', 'one', 'two', 'new', 'core', 'models', 'derivatives', 'per', 'year', 'promoting', 'self', 'funding', 'business', 'diversifying', 'portfolio', 'products', 'cover', 'sports', 'cars', 'sedans', 'sports', 'utility', 'vehicle', 'suv', 'three', 'pillar', 'strategy', 'plan', 'four', 'phases', 'business', 'stabilization', 'core', 'strengthening', 'expansion', 'products', 'portfolio', 'culminating', 'final', 'phase', 'solidify', 'position', 'self', 'sustaining', 'luxury', 'business', 'begun', 'transition', 'phase', 'two', 'phase', 'three', 'plan', 'following', 'successful', 'introduction', 'db11', 'recent', 'unveiling', 'aston', 'martin', 'valkyrie', 'also', 'made', 'significant', 'progress', 'plans', 'expand', 'diversify', 'product', 'line', 'finalizing', 'acquisition', 'st', 'athan', 'wales', 'manufacturing', 'site', 'dbx', 'first', 'suv', 'made', '63', 'adoption', 'second', 'century', 'plan', 'based', 'strategy', 'introduce', 'one', 'two', 'new', 'core', 'models', 'derivatives', 'every', 'year', 'next', 'seven', 'years', 'drive', 'highly', 'profitable', 'growth', 'manage', 'cash', 'flow', 'introduced', 'db11', 'fall', '2016', 'launch', 'db11', 'marked', 'start', 'new', 'chapter', 'aston', 'martin', 'inflection', 'point', 'business', 'march', '1', '2017', 'combined', 'sales', 'total', 'orders', '2', '462', 'db11', 'cars', '1', '371', 'sold', 'end', 'february', '2017', '993', 'orders', 'production', 'date', 'year', 'ended', 'december', '31', '2016', 'sold', '3', '687', 'cars', '1', '005', 'db11', 'cars', 'product', 'development', 'team', 'comprised', '747', 'designers', 'engineers', 'technicians', 'covering', 'almost', 'aspects', 'new', 'car', 'planning', 'design', 'development', 'products', 'design', 'resulted', 'numerous', 'awards', 'including', 'recently', 'car', 'design', 'year', '2016', 'salone', 'dell', 'auto', 'sports', 'car', 'year', '2016', 'autonis', 't3', 'design', 'year', '2016', 'db11', 'best', 'car', '2016', 'auto', 'motor', 'und', 'sport', 'vanquish', 'best', 'car', '2014', 'auto', 'motor', 'und', 'sport', 'rapide', 'production', 'facility', 'located', 'gaydon', 'united', 'kingdom', 'uk', 'gaydon', 'facility', 'opened', '2003', 'developed', 'specific', 'needs', 'aston', 'martin', 'believe', 'one', 'europe', 'modern', 'automotive', 'manufacturing', 'facilities', 'one', 'advanced', 'manufacturing', 'facilities', 'hls', 'segment', 'design', 'activities', 'centered', 'gaydon', 'ensuring', 'maximum', 'efficiency', 'ease', 'oversight', 'promotion', 'harmony', 'design', 'teams', 'engineers', 'technicians', 'addition', 'currently', 'building', 'new', 'plant', 'wales', 'uk', 'future', 'production', 'suvs', 'anticipate', 'begin', 'full', 'production', '2019', 'december', '31', '2016', 'employed', '1', '594', 'employees', '727', 'contractors', 'sell', 'cars', 'global', 'dealer', 'network', '165', 'dealers', 'december', '31', '2016', 'allows', 'us', 'benefit', 'geographical', 'diversification', 'revenues', 'access', 'high', 'growth', 'markets', 'divide', 'markets', 'following', 'regions', 'europe', 'uk', 'south', 'africa', 'americas', 'china', 'asia', 'pacific', 'middle', 'east', 'north', 'africa', 'following', 'chart', 'represents', 'revenue', 'geography', 'year', 'ended', 'december', '31', '2016', 'revenue', 'geography', '1', 'middle', 'east', 'north', 'africa', '4', '5', '1', 'asia', 'pacific', '5', '13', 'americas', '2', '22', '2', 'china', '7', '3', 'europe', '3', '22', '1', 'united', 'kingdom', 'south', 'africa', '30', '3', '1', 'revenue', 'geography', 'based', 'location', 'dealer', 'sell', 'cars', '2', 'americas', 'consists', 'brazil', 'canada', 'chile', 'mexico', 'peru', 'united', 'states', '3', 'europe', 'excludes', 'united', 'kingdom', '4', 'middle', 'east', 'north', 'africa', 'consists', 'azerbaijan', 'bahrain', 'egypt', 'kuwait', 'india', 'israel', 'jordan', 'lebanon', 'oman', 'qatar', 'saudi', 'arabia', 'turkey', '5', 'asia', 'pacific', 'consists', 'australia', 'hong', 'kong', 'indonesia', 'japan', 'macau', 'malaysia', 'new', 'zealand', 'philippines', 'singapore', 'south', 'korea', 'taiwan', 'thailand', 'vietnam', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'twelve', 'months', 'ended', 'february', '28', '2017', 'would', '161', '0', 'million', 'ebitda', 'year', 'ended', 'december', '31', '2016', '100', '9', 'million', '64', 'trends', 'factors', 'affecting', 'results', 'operations', 'introduction', 'new', 'models', 'derivatives', 'associated', 'capital', 'expenditures', 'experience', 'introduction', 'new', 'models', 'derivatives', 'redesign', 'existing', 'model', 'substantially', 'increases', 'sales', 'year', 'introduction', 'redesign', 'introduction', 'new', 'models', 'also', 'typically', 'increase', 'costs', 'including', 'capital', 'expenditures', 'affect', 'margins', 'profit', 'contribution', 'new', 'model', 'differs', 'significantly', 'existing', 'models', 'example', 'capital', 'expenditures', '192', '8', 'million', 'year', 'ended', 'december', '31', '2016', 'compared', '163', '1', 'million', 'year', 'ended', 'december', '31', '2015', 'primarily', 'due', 'new', 'model', 'investment', 'including', 'tooling', 'costs', 'associated', 'new', 'modular', 'architecture', 'investment', 'db11', 'future', 'models', 'second', 'century', 'plan', 'aim', 'introduce', 'one', 'two', 'new', 'core', 'models', 'derivatives', 'every', 'year', 'next', 'seven', 'years', 'result', 'results', 'prior', 'periods', 'may', 'not', 'indicative', 'results', 'periods', 'new', 'model', 'introductions', 'redesigns', 'example', 'following', 'release', 'db11', '1', '668', 'car', 'sales', 'fourth', 'quarter', '2016', 'resulting', 'revenue', '285', '0', 'million', 'ebitda', '69', '0', 'million', 'quarter', 'ending', 'december', '31', '2016', 'compared', '1', '128', 'car', 'sales', 'fourth', 'quarter', '2015', 'resulted', 'revenue', '185', '0', 'million', 'ebitda', '28', '7', 'million', 'quarter', 'ending', 'december', '31', '2015', 'see', 'annex', 'additional', 'ebitda', 'information', 'march', '1', '2017', '1', '438', 'orders', 'production', '993', 'related', 'db11', 'addition', 'march', '1', '2017', '2', '018', 'qualified', 'marketing', 'leads', 'respect', 'db11', 'qualified', 'marketing', 'lead', 'refers', 'potential', 'customers', 'registered', 'interest', 'buying', 'one', 'cars', 'either', 'visiting', 'dealership', 'inquiring', 'phone', 'email', 'believe', 'number', 'qualified', 'marketing', 'leads', 'good', 'indicator', 'potential', 'future', 'interest', 'cars', 'tracks', 'potential', 'customers', 'registered', 'interest', 'means', 'complete', 'purchase', 'announced', 'special', 'projects', 'vanquish', 'zagato', 'coupe', 'vanquish', 'zagato', 'volante', 'vantage', 'gt8', 'aston', 'martin', 'valkyrie', 'pre', 'sold', 'allocated', 'customers', 'see', 'risk', 'factors', 'order', 'book', 'not', 'necessarily', 'indicative', 'future', 'revenue', 'results', 'operations', 'description', 'track', 'orders', 'average', 'core', 'model', 'price', 'increases', 'able', 'increase', 'average', 'selling', 'prices', 'core', 'models', '96', '2007', '70', '000', '2016', '137', '000', 'mainly', 'due', 'strategic', 'introduction', 'new', 'core', 'models', 'enhanced', 'versions', 'existing', 'models', 'average', 'core', 'model', 'sale', 'price', 'periods', 'review', 'shown', 'table', 'year', 'ended', 'december', '31', '2014', 'average', 'core', 'model', 'sale', 'price', '2015', '2016', '114', '000', '116', '000', '137', '000', 'average', 'car', 'sale', 'prices', 'not', 'include', 'special', 'editions', 'respective', 'period', 'increased', 'approximately', '114', '000', '2014', 'approximately', '137', '000', 'year', 'ended', 'december', '31', '2016', '20', '2', 'increase', 'improved', 'gross', 'margins', 'years', 'ended', 'december', '31', '2014', '2015', '2016', 'increase', 'average', 'car', 'sale', 'prices', 'driven', 'introduction', 'new', 'models', 'derivatives', 'thereby', 'shifting', 'mix', 'towards', 'models', 'higher', 'price', 'point', 'well', 'positioning', 'existing', 'models', 'higher', 'price', 'points', 'increasing', 'numbers', 'high', 'net', 'worth', 'individuals', 'principal', 'driver', 'hls', 'segment', 'number', 'high', 'net', 'worth', 'individuals', 'hnwi', 'resources', 'available', 'purchase', 'hls', 'cars', 'pool', 'hnwi', 'expanding', 'due', 'part', 'high', 'economic', 'growth', 'emerging', 'markets', 'asia', 'pacific', 'region', 'currently', 'lower', 'exposure', 'example', '2014', '2015', 'number', 'hnwi', 'individuals', 'increased', 'globally', '4', '9', '9', '4', 'asia', 'pacific', 'region', 'increasingly', 'younger', 'age', 'individuals', 'obtaining', 'high', 'net', 'worth', 'status', 'important', 'factor', 'hls', 'segment', 'attracts', 'younger', 'purchasers', 'increasing', 'number', 'high', 'net', 'worth', 'women', 'higher', 'average', 'household', 'income', 'also', 'become', 'driver', 'increase', 'hls', 'segment', '65', 'strengthened', 'management', 'regional', 'teams', 'ensure', 'able', 'capitalize', 'increased', 'number', 'hnwi', 'emerging', 'markets', 'increasing', 'demand', 'luxury', 'customization', 'expect', 'demand', 'luxury', 'customization', 'increase', 'greater', 'proliferation', 'cars', 'hls', 'segment', 'increase', 'number', 'hnwi', 'drives', 'consumers', 'demand', 'higher', 'specifications', 'unique', 'personalized', 'features', 'custom', 'paint', 'interior', 'trim', 'colors', 'distinguish', 'car', 'others', 'hls', 'segment', 'example', 'q', 'aston', 'martin', 'service', 'produced', '186', '204', '342', 'customized', 'personalized', 'cars', 'years', 'ended', 'december', '31', '2014', '2015', '2016', 'respectively', 'also', 'started', 'q', 'aston', 'martin', 'program', '2016', 'expand', 'ability', 'customers', 'customize', 'cars', 'trend', 'expected', 'continue', 'positive', 'effect', 'revenues', 'profitability', 'able', 'charge', 'premium', 'options', 'customization', 'increasing', 'awareness', 'environmental', 'protection', 'sustainability', 'issues', 'increasing', 'global', 'awareness', 'environmental', 'protection', 'sustainability', 'issues', 'companies', 'consumers', 'already', 'forced', 'expected', 'continue', 'force', 'automotive', 'industry', 'align', 'product', 'portfolio', 'new', 'generally', 'increasingly', 'stringent', 'environmental', 'compatibility', 'criteria', 'time', 'trend', 'already', 'continue', 'result', 'greater', 'demand', 'low', 'consumption', 'environmentally', 'friendly', 'cars', 'electric', 'hybrid', 'drive', 'cars', 'also', 'trend', 'toward', 'engine', 'downsizing', 'increased', 'demand', 'combustion', 'engines', 'use', 'less', 'fuel', 'produce', 'fewer', 'harmful', 'emissions', 'smaller', 'engines', 'maintain', 'improve', 'performance', 'could', 'continue', 'trend', 'already', 'clearly', 'identified', 'private', 'business', 'customers', 'especially', 'western', 'europe', 'united', 'states', 'also', 'united', 'states', 'particularly', 'california', 'government', 'already', 'stipulated', 'fuel', 'consumption', 'emissions', 'limits', 'automobile', 'industry', 'area', 'car', 'development', 'production', 'order', 'support', 'trend', 'towards', 'increased', 'environmental', 'protection', 'eastern', 'european', 'asian', 'countries', 'including', 'new', 'growth', 'markets', 'also', 'expected', 'follow', 'trend', 'long', 'term', 'see', 'risk', 'factors', 'risks', 'relating', 'business', 'industry', 'new', 'laws', 'regulations', 'policies', 'governmental', 'organizations', 'regarding', 'increased', 'fuel', 'economy', 'requirements', 'reduced', 'greenhouse', 'gas', 'pollutant', 'emissions', 'vehicle', 'safety', 'health', 'safety', 'laws', 'changes', 'existing', 'laws', 'may', 'significant', 'effect', 'business', 'key', 'factors', 'affecting', 'comparability', 'diversification', 'revenues', 'geography', 'period', 'discussed', 'section', 'seen', 'increase', 'proportion', 'sales', 'dealers', 'asia', 'pacific', 'middle', 'east', 'north', 'africa', 'regions', 'leading', 'less', 'dependence', 'established', 'markets', 'europe', 'uk', 'south', 'africa', 'americas', 'regions', 'year', 'ended', 'december', '31', '2016', 'unit', 'sales', 'dealers', 'asia', 'pacific', 'region', 'middle', 'east', 'northern', 'africa', 'china', 'regions', 'aggregate', 'represented', '24', '5', 'total', 'worldwide', 'sales', 'compared', '22', '6', '23', '5', 'years', 'ended', 'december', '31', '2015', '2014', 'respectively', 'fluctuations', 'exchange', 'rates', 'operate', 'internationally', 'result', 'exposed', 'changes', 'various', 'currency', 'exchange', 'rates', 'although', 'reporting', 'currency', 'pound', 'sterling', '65', 'sales', 'denominated', 'currencies', 'pound', 'sterling', 'year', 'ended', 'december', '31', '2016', 'also', 'exchange', 'rate', 'exposure', 'euro', 'renminbi', 'us', 'dollar', 'japanese', 'yen', 'approximately', '60', 'total', 'costs', 'denominated', 'pounds', 'sterling', 'period', 'consequence', 'considerable', 'cash', 'flow', 'revenue', 'assets', 'foreign', 'currencies', 'primarily', 'euro', 'u', 'dollars', 'exposure', 'changes', 'exchange', 'rates', 'may', 'described', 'terms', 'translation', 'exposure', 'transaction', 'exposure', 'see', 'risk', 'factors', 'risks', 'relating', 'business', 'industry', 'face', 'risks', 'arising', 'foreign', 'currency', 'exchange', 'rates', 'related', 'hedging', '66', 'translation', 'risk', 'translation', 'risk', 'risk', 'exchange', 'rates', 'impact', 'value', 'sales', 'costs', 'assets', 'liabilities', 'reported', 'pounds', 'sterling', 'consolidated', 'income', 'statement', 'balance', 'sheet', 'instance', 'weakening', 'pound', 'sterling', 'u', 'dollar', 'result', 'increase', 'net', 'sales', 'costs', 'reported', 'pound', 'sterling', 'conversely', 'strengthening', 'pound', 'sterling', 'u', 'dollar', 'result', 'decrease', 'net', 'sales', 'costs', 'reported', 'pound', 'sterling', 'many', 'subsidiaries', 'affiliates', 'operate', 'markets', 'united', 'kingdom', 'effects', 'may', 'significant', 'primarily', 'subject', 'translation', 'effects', 'respect', 'liabilities', 'denominated', 'non', 'sterling', 'currencies', 'non', 'sterling', 'revenues', 'example', '2016', 'recognized', '27', '6', 'million', 'foreign', 'exchange', 'loss', 'relating', 'existing', 'pik', 'notes', 'denominated', 'us', 'dollars', 'due', 'weakening', 'sterling', 'transaction', 'risk', 'large', 'portion', 'fixed', 'costs', 'denominated', 'pounds', 'sterling', 'majority', 'operations', 'united', 'kingdom', 'whereas', '35', 'net', 'sales', 'generated', 'pounds', 'sterling', 'year', 'ended', 'december', '31', '2016', 'period', 'approximately', '6', '2', 'fixed', 'costs', '27', 'sales', 'denominated', 'u', 'dollars', 'results', 'operating', 'profit', 'exposed', 'fluctuations', 'exchange', 'rates', 'pound', 'sterling', 'u', 'dollar', 'addition', 'following', 'offering', 'notes', 'continue', 'debt', 'service', 'obligations', 'u', 'dollars', 'sterling', 'estimate', '5', 'decrease', 'u', 'dollar', 'pounds', 'sterling', 'exchange', 'rate', 'variables', 'held', 'constant', 'would', 'increased', 'profit', 'tax', '7', '7', 'million', 'year', 'ended', 'december', '31', '2016', '4', '4', 'million', 'year', 'ended', 'december', '31', '2015', 'seasonality', 'sales', 'tend', 'lower', 'first', 'quarter', 'line', 'lower', 'customer', 'demand', 'winter', 'northern', 'hemisphere', 'also', 'affected', 'biannual', 'registration', 'vehicles', 'united', 'kingdom', 'new', 'vehicle', 'registrations', 'take', 'place', 'march', 'september', 'turn', 'positive', 'impact', 'resale', 'value', 'vehicles', 'registered', 'starting', 'march', '1', 'september', '1', 'also', 'impacted', 'model', 'year', 'changes', 'united', 'states', 'middle', 'east', 'leads', 'increase', 'sales', 'period', 'biannual', 'registration', 'vehicles', 'occurs', 'markets', 'driven', 'introduction', 'new', 'models', 'derivatives', 'furthermore', 'markets', 'tend', 'impacted', 'summer', 'holiday', 'results', 'lower', 'demand', 'sales', 'typically', 'highest', 'fourth', 'quarter', 'financial', 'year', 'compared', 'remainder', 'year', 'primarily', 'due', 'foregoing', 'result', 'sales', 'typically', 'lowest', 'first', 'quarter', 'tends', 'reduce', 'profitability', 'margins', 'first', 'three', 'months', 'financial', 'year', 'since', 'several', 'elements', 'costs', 'expenses', 'including', 'particular', 'fixed', 'element', 'cost', 'sales', 'not', 'reduce', 'line', 'sales', 'factor', 'demonstrated', 'quarter', 'ended', 'march', '31', '2016', 'operating', 'loss', 'percentage', 'revenue', 'approximately', '14', '2', 'compared', '5', '4', 'year', 'ended', 'december', '31', '2016', 'exceptional', 'expenses', 'retirement', 'legacy', 'models', 'periodically', 'review', 'carrying', 'value', 'certain', 'tangible', 'intangible', 'assets', 'relating', 'legacy', 'car', 'models', 'may', 'determine', 'impair', 'value', 'tangible', 'intangible', 'assets', 'time', 'time', 'determine', 'carrying', 'value', 'excess', 'value', 'use', 'due', 'new', 'model', 'developments', 'well', 'market', 'consumer', 'expectations', 'future', 'decision', 'impair', 'tangible', 'intangible', 'assets', 'generally', 'takes', 'place', 'end', 'model', 'lifecycle', 'decisions', 'impact', 'comparability', 'results', 'impairment', 'charges', 'exceptional', 'conducted', 'review', 'years', 'ended', 'december', '31', '2015', '2016', 'light', 'planned', 'launch', 'new', 'models', 'beginning', '2016', 'review', 'resulted', 'decision', 'recognize', 'impairment', 'tangible', 'intangible', 'assets', 'related', 'db9', 'vantage', 'vanquish', 'models', '30', '2', 'million', '48', '7', 'million', 'years', 'ended', 'december', '31', '2015', '2016', 'respectively', '67', 'business', 'rebalancing', 'program', 'october', '2015', 'announced', 'business', 'rebalancing', 'program', 'deliver', 'efficiency', 'stability', 'business', 'mostly', 'affecting', 'administrative', 'managerial', 'positions', 'opposed', 'manufacturing', 'operations', 'rebalancing', 'program', 'also', 'included', 'group', 'wide', 'operations', 'review', 'well', 'review', 'dealer', 'network', 'incurred', '7', '6', 'million', 'exceptional', 'costs', 'associated', 'rebalancing', 'program', 'primarily', 'associated', 'severance', 'payments', 'well', 'consultancy', 'costs', '2015', 'reorganization', 'holdings', 'issued', 'preference', 'shares', 'two', 'tranches', 'april', '2015', 'april', '2016', 'preference', 'shares', 'treated', 'debt', 'purposes', 'ifrs', 'equity', 'like', 'instruments', 'see', 'principal', 'shareholders', 'preference', 'shares', 'consolidated', 'financial', 'statements', 'holdings', 'include', 'results', 'operations', 'financial', 'position', 'holdings', 'including', 'liabilities', 'costs', 'associated', 'preference', 'shares', 'immediately', 'following', 'redemption', 'existing', 'notes', 'holdings', 'no', 'longer', 'part', 'restricted', 'group', 'finance', 'expense', 'respect', 'preference', 'shares', '10', '8', 'million', '29', '1', 'million', 'years', 'ended', 'december', '31', '2015', '2016', 'respectively', 'future', 'periods', 'finance', 'expense', 'liabilities', 'associated', 'preference', 'shares', 'not', 'attributable', 'company', 'subsidiaries', 'see', 'also', 'summary', 'transactions', 'reorganization', 'explanation', 'key', 'income', 'statement', 'line', 'items', 'revenue', 'revenues', 'primarily', 'derived', 'sales', 'cars', 'dealer', 'network', 'lesser', 'extent', 'sales', 'spare', 'parts', 'servicing', 'business', 'revenue', 'net', 'wholesale', 'retail', 'discounts', 'classify', 'variable', 'marketing', 'costs', 'vat', 'sales', 'taxes', 'duties', 'cost', 'sales', 'split', 'cost', 'sales', 'three', 'categories', 'material', 'costs', 'include', 'raw', 'materials', 'components', 'including', 'engines', 'used', 'manufacture', 'cars', 'direct', 'labor', 'costs', 'include', 'salary', 'employment', 'related', 'costs', 'employees', 'contractors', 'engaged', 'us', 'manufacturing', 'cars', 'overheads', 'cost', 'sales', 'include', 'fixed', 'manufacturing', 'costs', 'quality', 'purchasing', 'costs', 'engineering', 'costs', 'research', 'development', 'costs', 'recognized', 'expense', 'consists', 'primarily', 'non', 'model', 'specific', 'costs', 'include', 'personnel', 'costs', 'engineers', 'third', 'party', 'fees', 'paid', 'consultants', 'prototype', 'development', 'expenses', 'tooling', 'costs', 'used', 'engineering', 'design', 'process', 'logistics', 'costs', 'warranty', 'costs', 'parts', 'service', 'fixed', 'variable', 'costs', 'custom', 'duties', 'gains', 'losses', 'due', 'conversion', 'accounts', 'receivable', 'accounts', 'payable', 'denominated', 'currencies', 'pounds', 'sterling', 'gross', 'profit', 'gross', 'profit', 'revenue', 'less', 'cost', 'sales', 'gross', 'margin', 'gross', 'profit', 'percentage', 'revenue', 'selling', 'distribution', 'expenses', 'selling', 'distribution', 'expense', 'consists', 'primarily', 'marketing', 'costs', 'not', 'related', 'sale', 'specific', 'car', 'including', 'salary', 'associated', 'costs', 'marketing', 'personnel', 'costs', 'advertising', 'marketing', 'events', 'promotions', 'administrative', 'expenses', 'administrative', 'expense', 'consists', 'primarily', 'salary', 'associated', 'costs', 'management', 'finance', 'human', 'resources', 'information', 'technology', 'selling', 'costs', 'include', 'overhead', '68', 'associated', 'regional', 'sales', 'offices', 'sales', 'personnel', 'costs', 'offices', 'gaydon', 'overseas', 'operations', 'united', 'states', 'asia', 'pacific', 'middle', 'east', 'continental', 'europe', 'administrative', 'areas', 'also', 'includes', 'impairment', 'tangible', 'intangible', 'assets', 'primarily', 'related', 'runout', 'models', 'ahead', 'release', 'new', 'model', 'introductions', 'derivatives', 'well', 'depreciation', 'amortization', 'costs', 'outside', 'professional', 'fees', 'also', 'included', 'administrative', 'expenses', 'include', 'insurance', 'legal', 'pension', 'healthcare', 'audit', 'fees', 'operating', 'profit', 'operating', 'profit', 'revenue', 'less', 'cost', 'sales', 'distribution', 'expenses', 'administration', 'expenses', 'plus', 'operating', 'income', 'finance', 'income', 'expense', 'finance', 'income', 'expense', 'consists', 'interest', 'earned', 'cash', 'cash', 'equivalents', 'investment', 'balances', 'less', 'interest', 'expense', 'debt', 'including', 'debt', 'issuance', 'costs', 'capitalized', 'interest', 'well', 'capitalized', 'interest', 'expenses', 'preference', 'shares', 'obligations', 'holdings', 'not', 'company', 'existing', 'pik', 'notes', 'returns', 'interest', 'expenses', 'related', 'pension', 'scheme', 'certain', 'miscellaneous', 'financing', 'costs', 'income', 'also', 'includes', 'net', 'gain', 'loss', 'financial', 'instruments', 'recognized', 'fair', 'value', 'profit', 'tax', 'profit', 'tax', 'operating', 'profit', 'less', 'net', 'financing', 'expense', 'income', 'tax', 'credit', 'expense', 'income', 'tax', 'credit', 'expense', 'primarily', 'comprises', 'payments', 'made', 'pursuant', 'uk', 'corporation', 'tax', 'liabilities', 'well', 'similar', 'tax', 'liabilities', 'united', 'states', 'china', 'germany', 'japan', 'singapore', 'significant', 'net', 'deferred', 'tax', 'assets', 'resulting', 'tax', 'credit', 'carry', 'forwards', 'deductible', 'temporary', 'differences', 'reduce', 'taxable', 'income', 'ability', 'realize', 'deferred', 'tax', 'assets', 'depends', 'ability', 'generate', 'sufficient', 'taxable', 'income', 'within', 'carry', 'back', 'carry', 'forward', 'periods', 'provided', 'tax', 'law', 'applicable', 'tax', 'jurisdiction', '69', 'results', 'operations', 'year', 'ended', 'december', '31', '2016', 'compared', 'year', 'ended', 'december', '31', '2015', 'following', 'table', 'sets', 'forth', 'main', 'operating', 'results', 'extracted', 'audited', 'consolidated', 'statement', 'comprehensive', 'income', 'years', 'ended', 'december', '31', '2015', 'december', '31', '2016', 'shows', 'items', 'percentage', 'revenue', 'year', 'ended', 'december', '31', '2015', 'millions', 'millions', 'unless', 'otherwise', 'indicated', 'total', 'revenue', 'year', 'ended', 'december', '31', '2016', 'millions', 'total', 'revenue', 'consolidated', 'statement', 'comprehensive', 'income', 'data', 'revenue', 'cost', 'sales', '510', '2', '345', '3', '100', '0', '67', '7', '593', '5', '371', '9', '100', '0', '62', '7', 'gross', 'profit', 'selling', 'distribution', 'expenses', 'administrative', 'expenses', '1', '164', '9', '32', '1', '191', '1', '32', '3', '6', '3', '37', '5', '221', '6', '41', '9', '212', '0', '37', '3', '7', '1', '35', '7', 'operating', 'loss', 'finance', 'income', 'finance', 'expense', '2', '58', '3', '2', '1', '71', '8', '11', '4', '0', '4', '14', '1', '32', '3', '2', '5', '133', '0', '5', '5', '0', '4', '22', '4', 'net', 'financing', 'expense', '2', '69', '7', '13', '7', '130', '5', '22', '0', 'loss', 'tax', '2', 'income', 'tax', 'credit', '128', '0', '21', '0', '25', '1', '4', '1', '162', '8', '15', '2', '27', '5', '2', '6', 'loss', 'year', '2', '107', '0', '21', '0', '147', '6', '24', '9', '1', '4', '53', '2', '9', '0', '19', '6', '200', '8', '33', '9', 'comprehensive', 'income', 'expense', 'year', 'net', 'income', 'tax', 'total', 'comprehensive', 'expense', 'year', '2', '6', '9', '100', '1', '1', 'administrative', 'expenses', 'includes', '3', '9', 'million', '1', '1', 'million', 'years', 'ended', 'december', '31', '2015', '2016', 'respectively', 'costs', 'attributable', 'holdings', 'giving', 'effect', 'transactions', 'holdings', 'not', 'part', 'restricted', 'group', 'costs', 'not', 'attributable', 'company', 'subsidiaries', '2', 'finance', 'expense', 'includes', 'interest', 'expense', 'respect', 'preference', 'shares', 'obligations', 'holdings', 'giving', 'effect', 'transactions', 'holdings', 'not', 'part', 'restricted', 'group', 'preference', 'shares', 'not', 'attributable', 'company', 'subsidiaries', 'finance', 'expense', 'respect', 'preference', 'shares', '10', '8', 'million', '29', '1', 'million', 'years', 'ended', 'december', '31', '2015', '2016', 'respectively', 'following', 'table', 'presents', 'line', 'items', 'finance', 'expense', 'total', 'comprehensive', 'income', 'expense', 'year', 'adjusted', 'exclude', 'impact', 'preference', 'shares', 'year', 'ended', 'december', '31', 'millions', 'unless', 'otherwise', 'indicated', '2015', 'finance', 'expense', '61', '0', '2016', '103', '9', 'net', 'financing', 'expense', '58', '9', '101', '4', 'profit', 'loss', 'tax', 'income', 'tax', 'credit', 'expense', '117', '2', '21', '0', '133', '7', '15', '2', 'profit', 'loss', 'year', '96', '2', '118', '5', 'comprehensive', 'income', 'year', 'net', 'income', 'tax', '6', '9', '53', '2', 'total', 'comprehensive', 'income', 'expense', 'year', '89', '3', '171', '7', 'figures', 'table', 'adjusted', 'exclude', 'impact', 'preference', 'shares', 'revenue', 'revenue', '593', '5', 'million', 'year', 'ended', 'december', '31', '2016', 'compared', '510', '2', 'million', 'year', 'ended', 'december', '31', '2015', 'increase', '16', '3', '83', '3', 'million', 'revenue', 'respect', 'sale', 'vehicles', '529', '0', 'million', 'year', 'ended', 'december', '31', '2016', 'compared', '457', '4', 'million', 'year', 'ended', 'december', '31', '2015', 'revenue', 'respect', 'sale', 'parts', '53', '6', 'million', 'year', 'ended', 'december', '31', '2016', 'compared', '44', '7', 'million', 'year', 'ended', 'december', '31', '2015', 'revenue', 'respect', 'servicing', 'vehicles', '10', '9', 'million', 'year', 'ended', 'december', '31', '2016', 'compared', '8', '1', 'million', 'year', 'ended', '70', 'december', '31', '2015', 'increase', 'revenue', 'year', 'ended', 'december', '31', '2016', 'primarily', 'attributable', 'launch', 'db11', 'replaced', 'db9', 'higher', 'wholesale', 'price', 'well', 'increased', 'volume', 'sales', 'overall', 'cost', 'sales', 'cost', 'sales', '371', '9', 'million', '62', '7', 'revenue', 'year', 'ended', 'december', '31', '2016', 'compared', '345', '3', 'million', '67', '7', 'revenue', 'year', 'ended', 'december', '31', '2015', 'increase', '7', '7', '26', '6', 'million', 'increase', 'cost', 'sales', 'year', 'ended', 'december', '31', '2016', 'primarily', 'attributable', 'additional', 'material', 'labor', 'costs', 'associated', 'launch', 'db11', 'decline', 'cost', 'sales', 'percentage', 'revenue', '5', '0', 'primarily', 'attributable', 'increased', 'revenue', 'due', 'db11', 'well', 'cost', 'savings', 'initiatives', 'associated', 'decreases', 'material', 'costs', 'logistics', 'costs', 'labor', 'efficiencies', 'material', 'costs', 'year', 'ended', 'december', '31', '2016', '273', '8', 'million', '46', '1', 'revenue', 'compared', '250', '3', 'million', '49', '1', 'revenue', 'year', 'ended', 'december', '31', '2015', 'increase', '9', '4', '23', '5', 'million', 'primarily', 'attributable', 'increased', 'volumes', 'launch', 'db11', 'direct', 'labor', 'costs', 'year', 'ended', 'december', '31', '2016', '20', '0', 'million', '3', '4', 'revenue', 'compared', '18', '8', 'million', '3', '7', 'revenue', 'year', 'ended', 'december', '31', '2015', 'increase', '6', '4', '1', '2', 'million', 'primarily', 'attributable', 'additional', 'employees', 'additional', 'hours', 'existing', 'employees', 'result', 'increase', 'volumes', 'arising', 'launch', 'db11', 'overheads', 'cost', 'sales', 'year', 'ended', 'december', '31', '2016', '78', '1', 'million', '13', '2', 'revenue', 'compared', '76', '2', 'million', '14', '9', 'revenue', 'year', 'ended', 'december', '31', '2015', 'increase', '2', '5', '1', '9', 'million', 'primarily', 'attributable', 'increased', 'volumes', 'year', 'gross', 'profit', 'gross', 'profit', '221', '6', 'million', '37', '3', 'revenue', 'year', 'ended', 'december', '31', '2016', 'compared', '164', '9', 'million', '32', '3', 'revenue', 'year', 'ended', 'december', '31', '2015', 'increase', '34', '4', '56', '7', 'million', 'improved', 'gross', 'profit', 'percentage', 'sales', 'year', 'ended', 'december', '31', '2016', 'primarily', 'due', 'launch', 'db11', 'higher', 'revenue', 'gross', 'margin', 'predecessor', 'model', 'db9', 'selling', 'distribution', 'expenses', 'selling', 'distribution', 'expenses', '41', '9', 'million', '7', '1', 'revenue', 'year', 'ended', 'december', '31', '2016', 'compared', '32', '1', 'million', '6', '3', 'revenue', 'year', 'ended', 'december', '31', '2015', 'increase', '30', '5', '9', '8', 'million', 'increase', 'selling', 'distribution', 'expenses', 'primarily', 'due', 'db11', 'launch', 'events', 'including', 'media', 'launch', 'tuscany', 'unveiling', 'geneva', 'motor', 'show', 'db11', 'confidential', 'event', 'facility', 'gaydon', 'additional', 'expenditure', 'also', 'incurred', 'respect', 'motorsport', 'activities', 'primarily', 'relationship', 'red', 'bull', 'administrative', 'expenses', 'administrative', 'expenses', 'amounted', '212', '0', 'million', '35', '7', 'revenue', 'year', 'ended', 'december', '31', '2016', 'compared', '191', '1', 'million', '37', '5', 'revenue', 'year', 'ended', 'december', '31', '2015', 'increase', '10', '9', '20', '9', 'million', 'within', 'administrative', 'expenses', 'exceptional', 'costs', 'amounted', '48', '7', 'million', '40', '4', 'million', 'years', 'ended', 'december', '31', '2016', '2015', 'respectively', '2015', '2016', 'exceptional', 'element', 'administrative', 'expenses', 'related', 'impairment', 'tangible', 'intangible', 'assets', '30', '2', 'million', '48', '7', 'million', 'respectively', 'arose', 'following', 'review', 'carrying', 'value', 'intangible', 'tangible', 'assets', 'relating', 'legacy', 'models', 'light', 'launch', 'new', 'models', '2016', 'onwards', '2015', 'additional', 'exceptional', 'costs', '7', '6', 'million', 'relating', 'business', 'rebalancing', 'program', '2', '6', 'million', 'payment', 'former', 'director', 'relating', 'settlement', 'shares', 'also', 'increase', 'engineering', 'expense', 'costs', 'not', 'meet', 'capitalization', 'criteria', 'performance', 'related', 'rewards', 'addition', 'years', 'ended', '71', 'december', '31', '2015', '2016', 'respectively', '3', '9', 'million', '1', '1', 'million', 'administrative', 'costs', 'associated', 'salary', 'administrative', 'costs', 'attributable', 'holdings', 'thus', 'giving', 'effect', 'transactions', 'not', 'attributable', 'company', 'subsidiaries', 'depreciation', 'amortization', 'year', 'ended', 'december', '31', '2016', '133', '2', 'million', '22', '4', 'revenue', 'compared', '119', '5', 'million', '23', '4', 'revenue', 'year', 'ended', 'december', '31', '2015', 'increase', '11', '5', '13', '7', 'million', 'primarily', 'attributable', 'additional', 'impairment', 'charge', '18', '6', 'million', 'discussed', 'operating', 'loss', 'operating', 'loss', '32', '3', 'million', 'year', 'ended', 'december', '31', '2016', '5', '5', 'revenue', 'compared', '58', '3', 'million', 'year', 'ended', 'december', '31', '2015', '11', '4', 'revenues', 'decrease', '44', '6', '26', 'million', 'excluding', 'exceptional', 'costs', 'described', 'administrative', 'expenses', 'operating', 'result', 'improved', '34', '3', 'million', 'operating', 'profit', '16', '4', 'million', 'year', 'ended', 'december', '31', '2016', 'operating', 'loss', '17', '9', 'million', 'year', 'ended', 'december', '31', '2015', 'improved', 'operating', 'result', 'driven', 'increased', 'gross', 'profit', 'arising', 'higher', 'volumes', 'launch', 'db11', 'higher', 'margin', 'partly', 'offset', 'higher', 'fixed', 'costs', 'arising', 'fixed', 'marketing', 'launch', 'db11', 'higher', 'charge', 'engineering', 'costs', 'performance', 'related', 'rewards', 'financial', 'income', 'expense', 'excluding', 'impact', 'preference', 'shares', 'net', 'finance', 'expense', '101', '4', 'million', 'year', 'ended', 'december', '31', '2016', 'compared', 'net', 'finance', 'expense', '58', '9', 'million', 'year', 'ended', 'december', '31', '2015', 'increase', '72', '2', '42', '5', 'million', 'finance', 'expenses', 'primarily', 'related', 'interest', 'loans', 'overdrafts', 'including', 'existing', 'notes', 'existing', 'pik', 'notes', 'net', 'loss', 'financial', 'instruments', 'recognized', 'fair', 'value', 'net', 'foreign', 'exchange', 'loss', 'us', 'dollar', 'denominated', 'existing', 'pik', 'notes', 'increase', 'net', 'finance', 'expense', '2016', 'compared', '2015', 'due', 'exchange', 'loss', 'existing', 'pik', 'notes', 'due', 'weakening', 'sterling', 'us', 'dollar', 'net', 'loss', 'fair', 'value', 'adjustments', 'foreign', 'exchanges', 'hedges', 'also', 'result', 'weakening', 'sterling', 'us', 'dollar', 'small', 'increase', 'interest', 'bank', 'loans', 'overdrafts', 'preference', 'shares', 'obligations', 'holdings', 'giving', 'effect', 'transactions', 'not', 'attributable', 'company', 'subsidiaries', 'interest', 'preference', 'shares', 'amounted', '29', '1', 'million', '10', '8', 'million', 'years', 'ended', 'december', '31', '2016', '2015', 'respectively', 'income', 'tax', 'benefit', 'expenses', 'income', 'tax', 'benefit', 'year', 'ended', 'december', '31', '2016', '15', '2', 'million', 'compared', 'income', 'tax', 'benefit', '21', '0', 'million', 'year', 'ended', 'december', '31', '2015', 'decrease', '5', '8', 'million', 'effective', 'income', 'tax', 'benefit', 'rate', '9', '3', 'year', 'ended', 'december', '31', '2016', 'whereas', 'credit', '2015', 'benefitted', 'future', 'reduction', 'rate', 'corporation', 'tax', '20', '18', 'enacted', 'following', 'united', 'kingdom', '2015', 'budget', 'tax', 'benefit', 'year', 'ended', 'december', '31', '2015', 'primarily', 'related', 'losses', 'year', 'tax', 'benefit', 'year', 'ended', 'december', '31', '2016', 'also', 'arose', 'due', 'losses', 'year', 'years', 'tax', 'benefit', 'lower', 'applicable', 'tax', 'rate', '20', '25', '2015', '20', '0', '2016', 'no', 'benefit', 'taken', 'certain', 'losses', 'utilization', 'uncertain', 'certain', 'costs', 'disallowable', 'tax', 'purposes', 'particular', 'interest', 'preference', 'shares', '72', 'year', 'ended', 'december', '31', '2015', 'compared', 'year', 'ended', 'december', '31', '2014', 'following', 'table', 'sets', 'forth', 'main', 'operating', 'results', 'extracted', 'audited', 'consolidated', 'statement', 'comprehensive', 'income', 'years', 'ended', 'december', '31', '2014', 'december', '31', '2015', 'shows', 'items', 'percentage', 'total', 'revenue', 'year', 'ended', 'december', '31', '2014', 'millions', 'millions', 'unless', 'otherwise', 'indicated', 'total', 'revenue', 'year', 'ended', 'december', '31', '2015', 'millions', 'total', 'revenue', 'consolidated', 'statement', 'comprehensive', 'income', 'data', 'revenue', 'cost', 'sales', '468', '4', '313', '5', '100', '0', '66', '9', '510', '2', '345', '3', '100', '0', '67', '7', 'gross', 'profit', 'selling', 'distribution', 'expenses', 'administrative', 'expenses', '154', '9', '33', '4', '139', '8', '33', '1', '7', '1', '29', '8', '164', '9', '32', '1', '191', '1', '32', '3', '6', '3', '37', '5', 'operating', 'loss', 'finance', 'income', 'finance', 'expense', '18', '3', '2', '5', '56', '0', '3', '9', '0', '5', '12', '0', '58', '3', '2', '1', '71', '8', '11', '4', '0', '4', '14', '1', 'net', 'financing', 'expense', '53', '5', '11', '4', '69', '7', '13', '7', 'loss', 'tax', 'income', 'tax', 'credit', '71', '8', '7', '1', '15', '3', '1', '5', '128', '0', '21', '0', '25', '1', '4', '1', 'loss', 'year', '64', '7', '13', '8', '107', '0', '21', '0', 'comprehensive', 'expense', 'income', 'year', 'net', 'income', 'tax', '12', '1', '2', '6', 'total', 'comprehensive', 'expense', 'year', '76', '8', '16', '4', '6', '9', '100', '1', '1', '4', '19', '6', '1', 'administrative', 'expenses', 'includes', '1', '4', 'million', '3', '9', 'million', 'years', 'ended', 'december', '31', '2014', '2015', 'respectively', 'costs', 'attributable', 'holdings', 'giving', 'effect', 'transactions', 'holdings', 'not', 'part', 'restricted', 'group', 'costs', 'not', 'attributable', 'company', 'subsidiaries', '2', 'finance', 'expense', 'includes', 'interest', 'expense', 'respect', 'preference', 'shares', 'obligations', 'holdings', 'giving', 'effect', 'transactions', 'holdings', 'not', 'part', 'restricted', 'group', 'preference', 'shares', 'not', 'attributable', 'company', 'subsidiaries', 'finance', 'expense', 'respect', 'preference', 'shares', 'nil', 'million', '10', '8', 'million', 'years', 'ended', 'december', '31', '2014', '2015', 'respectively', 'following', 'table', 'presents', 'line', 'items', 'finance', 'expense', 'total', 'comprehensive', 'income', 'expense', 'year', 'adjusted', 'exclude', 'impact', 'preference', 'shares', 'year', 'ended', 'december', '31', 'millions', 'unless', 'otherwise', 'indicated', '2014', '2015', 'finance', 'expense', '56', '0', '61', '0', 'net', 'financing', 'expense', '53', '5', '58', '9', 'profit', 'loss', 'tax', 'income', 'tax', 'credit', 'expense', '71', '8', '7', '1', '117', '2', '21', '0', 'profit', 'loss', 'year', '64', '7', '96', '2', 'comprehensive', 'income', 'year', 'net', 'income', 'tax', '12', '1', '6', '9', 'total', 'comprehensive', 'income', 'expense', 'year', '76', '8', '89', '3', 'revenue', 'revenue', '510', '2', 'million', 'year', 'ended', 'december', '31', '2015', 'compared', '468', '4', 'million', 'year', 'ended', 'december', '31', '2014', 'increase', '8', '9', '41', '8', 'million', 'revenue', 'respect', 'sale', 'vehicles', '457', '4', 'million', 'year', 'ended', 'december', '31', '2015', 'compared', '418', '2', 'million', 'year', 'ended', 'december', '31', '2014', 'revenue', 'respect', 'sale', 'parts', '44', '7', 'million', 'year', 'ended', 'december', '31', '2015', 'compared', '42', '1', 'million', 'year', 'ended', 'december', '31', '2014', 'revenue', 'respect', 'servicing', 'vehicles', '8', '1', 'million', 'years', 'ended', 'december', '31', '2015', '2014', 'increase', 'revenue', 'year', 'ended', 'december', '31', '2015', 'primarily', 'attributable', 'higher', 'proportion', 'v12', '73', 'compared', 'v8', 'sales', 'v12', 'cars', 'generally', 'higher', 'wholesale', 'price', 'well', 'sales', 'taraf', 'vulcan', 'models', 'cost', 'sales', 'cost', 'sales', '345', '3', 'million', '67', '7', 'revenue', 'year', 'ended', 'december', '31', '2015', 'compared', '313', '3', 'million', '66', '9', 'revenue', 'year', 'ended', 'december', '31', '2014', 'increase', '10', '2', '32', '0', 'million', 'primarily', 'attributable', 'higher', 'costs', 'result', 'higher', 'material', 'labor', 'costs', 'related', 'higher', 'proportion', 'v12', 'car', 'sales', 'material', 'costs', 'year', 'ended', 'december', '31', '2015', '250', '3', 'million', '49', '1', 'revenue', 'compared', '227', '7', 'million', '48', '6', 'revenue', 'year', 'ended', 'december', '31', '2014', 'increase', '9', '9', '22', '6', 'million', 'primarily', 'attributable', 'expensive', 'raw', 'material', 'costs', 'associated', 'higher', 'proportion', 'v12', 'car', 'sales', 'direct', 'labor', 'costs', 'year', 'ended', 'december', '31', '2015', '18', '8', 'million', '3', '7', 'revenue', 'compared', '20', '5', 'million', '4', '4', 'revenue', 'year', 'ended', 'december', '31', '2014', 'decrease', '8', '3', '1', '7', 'million', 'primarily', 'attributable', 'temporary', 'inefficiencies', '2014', 'arose', 'transitioning', 'one', 'assembly', 'lines', 'away', 'db9', 'production', 'expansion', 'advance', 'future', 'model', 'launches', 'overheads', 'cost', 'sales', 'year', 'ended', 'december', '31', '2015', '76', '2', 'million', '14', '9', 'revenue', 'compared', '65', '1', 'million', '13', '9', 'revenue', 'year', 'ended', 'december', '31', '2014', 'increase', '17', '1', '11', '1', 'million', 'primarily', 'attributable', 'exchange', 'losses', 'due', 'unfavorable', 'exchange', 'movements', 'compared', 'exchange', 'gains', '2014', 'labor', 'overhead', 'costs', 'previously', 'absorbed', 'cost', 'inventory', 'charged', 'income', 'statement', 'due', 'declines', 'sales', 'volumes', 'partly', 'offset', 'lower', 'warranty', 'costs', 'gross', 'profit', 'gross', 'profit', '164', '9', 'million', '32', '3', 'revenue', 'year', 'ended', 'december', '31', '2015', 'compared', '154', '9', 'million', '33', '1', 'revenue', 'year', 'ended', 'december', '31', '2014', 'increase', '6', '5', '10', '0', 'million', 'primarily', 'attributable', 'increased', 'sales', 'higher', 'margin', 'vulcan', 'model', 'selling', 'distribution', 'expenses', 'selling', 'distribution', 'expenses', '32', '1', 'million', '6', '3', 'revenue', 'year', 'ended', 'december', '31', '2015', 'compared', '33', '4', 'million', '7', '1', 'revenue', 'year', 'ended', 'december', '31', '2014', 'decrease', '3', '9', '1', '3', 'million', 'decrease', 'selling', 'distribution', 'expenses', 'primarily', 'due', 'greater', 'emphasis', 'placed', 'sharing', 'costs', 'brand', 'partners', 'production', 'suppliers', 'thereby', 'reducing', 'marketing', 'costs', 'administrative', 'expenses', 'administrative', 'expenses', 'amounted', '191', '1', 'million', '37', '5', 'revenue', 'year', 'ended', 'december', '31', '2015', 'compared', '139', '8', 'million', '29', '8', 'revenue', 'year', 'ended', 'december', '31', '2014', 'increase', '36', '7', '51', '3', 'million', 'year', 'ended', 'december', '31', '2015', '40', '4', 'million', 'exceptional', 'expenses', 'comprising', '30', '2', 'million', 'impairment', 'tangible', 'intangible', 'assets', 'advance', 'launch', 'new', 'models', '7', '6', 'million', 'costs', 'associated', 'business', 'rebalancing', 'program', '2', '6', 'million', 'payment', 'former', 'director', 'relating', 'settlement', 'shares', 'exceptional', 'costs', 'year', 'ended', 'december', '31', '2014', '4', '3', 'million', 'comprising', '6', '0', 'million', 'concept', 'vehicle', 'development', 'costs', 'offset', '1', '7', 'million', 'gain', 'disposal', 'associated', 'company', 'additional', 'increase', '15', '2', 'million', 'mainly', 'due', 'higher', 'depreciation', 'amortization', 'costs', 'arising', 'increased', 'levels', 'capital', 'investment', 'new', 'existing', 'products', 'performance', 'related', 'rewards', 'employees', 'addition', 'years', 'ended', 'december', '31', '2014', '2015', 'respectively', '1', '4', 'million', '3', '9', 'million', 'administrative', 'costs', 'associated', 'salary', 'administrative', 'costs', 'attributable', 'holdings', 'giving', 'effect', 'transactions', 'not', 'attributable', 'company', 'subsidiaries', '74', 'operating', 'loss', 'operating', 'loss', '58', '3', 'million', 'year', 'ended', 'december', '31', '2015', '11', '4', 'revenue', 'compared', '18', '3', 'million', 'year', 'ended', 'december', '31', '2014', '3', '9', 'revenue', 'increase', '216', '8', '40', '0', 'million', 'arising', 'increase', 'gross', 'profit', '10', '0', 'million', 'offset', 'increased', 'fixed', 'costs', '50', '0', 'million', 'described', 'selling', 'distribution', 'expenses', 'administrative', 'expenses', 'excluding', 'exceptional', 'costs', 'described', 'administrative', 'expenses', 'underlying', 'operating', 'loss', 'increased', '3', '8', 'million', '27', '0', 'loss', '17', '9', 'million', 'year', 'ended', 'december', '31', '2015', 'loss', '14', '1', 'million', 'year', 'ended', 'december', '31', '2014', 'finance', 'income', 'expense', 'excluding', 'impact', 'preference', 'shares', 'net', 'finance', 'expense', '58', '9', 'million', 'year', 'ended', 'december', '31', '2015', 'compared', 'net', 'finance', 'expense', '53', '5', 'million', 'year', 'ended', 'december', '31', '2014', 'increase', '10', '1', '5', '4', 'million', 'finance', 'expenses', 'primarily', 'related', 'interest', 'loans', 'overdrafts', 'including', 'existing', 'notes', 'existing', 'pik', 'notes', 'preference', 'shares', 'obligations', 'holdings', 'giving', 'effect', 'transactions', 'not', 'attributable', 'company', 'subsidiaries', 'interest', 'preference', 'shares', 'amounted', '10', '8', 'million', 'nil', 'million', 'years', 'ended', 'december', '31', '2015', '2014', 'respectively', 'income', 'tax', 'benefit', 'income', 'tax', 'credit', 'year', 'ended', 'december', '31', '2015', '21', '0', 'million', 'compared', '7', '1', 'million', 'year', 'ended', 'december', '31', '2014', 'tax', 'benefit', 'year', 'ended', 'december', '31', '2015', 'increased', 'due', 'increased', 'losses', 'credit', '2015', 'benefitted', 'future', 'reduction', 'rate', 'corporation', 'tax', '20', '18', 'enacted', 'following', 'united', 'kingdom', '2015', 'budget', 'years', 'tax', 'credit', 'lower', 'corporation', 'tax', 'rate', 'applicable', 'group', '20', '25', '2015', '21', '5', '2014', 'no', 'credit', 'taken', 'certain', 'losses', 'utilization', 'uncertain', 'certain', 'costs', 'disallowable', 'tax', 'purposes', 'particular', 'interest', 'preference', 'shares', 'liquidity', 'capital', 'resources', 'liquidity', 'requirements', 'arise', 'primarily', 'need', 'fund', 'capital', 'expenditures', 'product', 'development', 'working', 'capital', 'service', 'debt', 'december', '31', '2016', 'cash', 'balance', '101', '7', 'million', 'started', '2016', 'cash', 'balance', '65', '6', 'million', 'year', 'generated', '164', '6', 'million', 'operating', 'activities', 'comprised', '90', '3', 'million', 'trading', 'activities', '74', '3', 'million', 'improved', 'working', 'capital', 'particular', 'deposits', 'received', 'future', 'sales', 'particular', 'aston', 'martin', 'valkyrie', 'used', '190', '2', 'million', 'investing', 'activities', 'continued', 'investment', 'new', 'products', 'holdings', 'also', 'raised', '100', '0', 'million', 'second', 'tranche', 'preference', 'shares', 'offset', 'interest', 'paid', 'reduction', 'short', 'term', 'borrowings', 'giving', 'effect', 'transactions', 'holdings', 'not', 'part', 'restricted', 'group', 'preference', 'shares', 'not', 'attributable', 'company', 'subsidiaries', 'december', '31', '2015', 'cash', 'balance', '65', '6', 'million', 'decrease', '23', '7', 'million', '89', '3', 'million', 'december', '31', '2014', 'year', 'ended', 'december', '31', '2015', 'generated', '75', '2', 'million', 'operating', 'activities', 'comprised', '55', '4', 'million', 'trading', 'activities', '19', '8', 'million', 'improved', 'working', 'capital', 'year', 'ended', 'december', '31', '2015', 'used', '161', '0', 'million', 'investing', 'activities', 'generated', '62', '8', 'million', 'financing', 'activities', 'including', 'first', 'tranche', '100', '0', 'million', 'preference', 'shares', '2', '4', 'million', 'proceeds', 'equity', 'share', 'issue', 'offset', '32', '3', 'million', 'interest', 'paid', '3', '8', 'million', 'reduction', 'short', 'term', 'borrowings', '3', '5', 'million', 'transaction', 'fees', 'associated', 'preference', 'shares', 'december', '31', '2016', 'total', 'financial', 'liabilities', 'comprised', 'borrowings', 'existing', 'notes', 'existing', 'pik', 'notes', 'preference', 'shares', 'inventory', 'funding', 'facilities', 'net', 'cash', 'balances', 'book', 'value', 'total', 'financial', 'liabilities', 'december', '31', '2016', '599', '5', 'million', 'net', 'debt', 'december', '31', '2015', '483', '1', 'million', '116', '4', 'million', 'lower', 'balance', 'december', '31', '2016', 'increase', 'net', 'debt', '2016', 'primarily', 'due', 'issuance', 'second', 'tranche', '100', '0', 'million', 'preference', '75', 'share', 'funding', 'interest', 'existing', 'pik', 'notes', 'preference', 'shares', 'exchange', 'loss', 'translation', 'existing', 'pik', 'notes', 'denominated', 'us', 'dollars', 'net', 'debt', 'december', '31', '2014', '343', '2', 'million', '139', '9', 'million', 'lower', 'balance', 'december', '31', '2015', 'increase', 'net', 'debt', '2015', 'primarily', 'due', 'issuance', 'first', 'tranche', '100', '0', 'million', 'preference', 'share', 'funding', 'interest', 'existing', 'pik', 'notes', 'preference', 'shares', 'translation', 'existing', 'pik', 'notes', 'denominated', 'us', 'dollars', 'preference', 'shares', 'obligations', 'holdings', 'giving', 'effect', 'transactions', 'not', 'attributable', 'company', 'subsidiaries', 'excluding', 'impact', 'preference', 'shares', 'total', 'financial', 'liabilities', '381', '6', 'million', 'year', 'ended', 'december', '31', '2016', 'compared', '384', '8', 'million', 'year', 'ended', 'december', '31', '2015', 'year', 'ended', 'december', '31', '2016', 'incurred', 'gross', 'financing', 'expenses', '133', '0', 'million', 'net', 'financing', 'expenses', '130', '5', 'million', 'weighted', 'average', 'interest', 'rate', 'gross', 'debt', '11', '2', 'year', 'ended', 'december', '31', '2015', 'incurred', 'gross', 'financing', 'expenses', '71', '8', 'million', 'net', 'financing', 'expenses', '69', '7', 'million', 'weighted', 'average', 'interest', 'rate', 'gross', 'debt', '10', '3', 'year', 'ended', 'december', '31', '2014', 'incurred', 'gross', 'financing', 'expenses', '56', '0', 'million', 'net', 'financing', 'expenses', '53', '5', 'million', 'weighted', 'average', 'interest', 'rate', 'gross', 'debt', '9', '8', 'year', 'ended', 'december', '31', '2014', 'weighted', 'average', 'interest', 'rates', 'calculated', 'using', 'actual', 'interest', 'charges', 'reported', 'financial', 'statements', 'divided', 'average', 'debt', 'period', 'based', 'opening', 'closing', 'debt', 'balances', 'financial', 'reporting', 'period', 'although', 'gross', 'financing', 'expenses', 'discussed', 'include', 'relevant', 'finance', 'expense', 'relating', 'existing', 'pik', 'notes', 'preference', 'shares', 'finance', 'expense', 'relating', 'existing', 'pik', 'notes', 'preference', 'shares', 'capitalized', 'thus', 'not', 'paid', 'cash', 'relevant', 'redemption', 'date', '24', '1', 'million', '39', '5', 'million', '100', '4', 'million', 'non', 'cash', 'pay', 'finance', 'expenses', 'years', 'ended', 'december', '31', '2014', '2015', '2016', 'respectively', 'preference', 'shares', 'obligations', 'holdings', 'giving', 'effect', 'transactions', 'not', 'attributable', 'company', 'subsidiaries', 'excluding', 'impact', 'preference', 'shares', 'net', 'financing', 'expense', 'amounted', '53', '5', 'million', '58', '9', 'million', '101', '4', 'million', 'years', 'ended', 'december', '31', '2014', '2015', '2016', 'respectively', 'april', '2015', 'april', '2016', 'order', 'ensure', 'sufficient', 'liquidity', 'light', 'second', 'century', 'plan', 'certain', 'shareholders', 'subscribed', 'preference', 'shares', 'aggregate', 'amount', '100', 'million', '100', 'million', 'respectively', 'used', 'proceeds', 'general', 'corporate', 'purposes', 'investment', 'new', 'products', 'preference', 'shares', 'obligations', 'holdings', 'giving', 'effect', 'transactions', 'not', 'attributable', 'company', 'subsidiaries', 'ability', 'make', 'scheduled', 'payments', 'refinance', 'debt', 'obligations', 'depends', 'financial', 'operating', 'performance', 'subject', 'prevailing', 'economic', 'competitive', 'conditions', 'future', 'may', 'not', 'able', 'maintain', 'level', 'cash', 'flows', 'operating', 'activities', 'sufficient', 'permit', 'us', 'pay', 'principal', 'premium', 'interest', 'indebtedness', 'business', 'may', 'not', 'generate', 'sufficient', 'cash', 'flow', 'operations', 'future', 'borrowings', 'new', 'revolving', 'credit', 'facility', 'sources', 'may', 'not', 'available', 'us', 'amount', 'sufficient', 'enable', 'us', 'repay', 'indebtedness', 'including', 'drawings', 'new', 'revolving', 'credit', 'facility', 'availability', '80', 'million', 'issue', 'date', 'notes', 'fund', 'liquidity', 'needs', 'including', 'working', 'capital', 'capital', 'expenditure', 'requirements', 'addition', 'rely', 'inventory', 'funding', 'facilities', 'facilitate', 'liquidity', 'cars', 'delivered', 'foreign', 'subsidiaries', 'wholesale', 'finance', 'facility', 'facilitate', 'sales', 'cars', 'dealers', 'provide', 'additional', 'liquidity', 'may', 'not', 'available', 'us', 'future', 'see', 'risk', 'factors', 'business', 'model', 'based', 'availability', 'wholesale', 'finance', 'facility', 'loss', 'ability', 'draw', 'facility', 'credit', 'insurance', 'backing', 'could', 'material', 'adverse', 'effect', 'business', 'see', 'also', 'description', 'financial', 'arrangements', 'inventory', 'funding', 'facilities', 'description', 'financial', 'arrangements', 'wholesale', 'finance', 'facilities', 'description', 'facilities', 'foregoing', 'occur', 'may', 'forced', 'reduce', 'delay', 'capital', 'expenditures', 'sell', 'assets', 'operations', 'seek', 'additional', 'capital', 'restructure', 'refinance', 'indebtedness', 'see', 'also', 'risk', 'factors', 'may', 'not', 'able', 'generate', 'sufficient', 'cash', 'service', 'indebtedness', 'including', 'due', 'factors', 'outside', 'control', 'may', 'forced', 'take', 'actions', 'satisfy', 'obligations', 'indebtedness', 'may', 'not', 'successful', '76', 'believe', 'based', 'current', 'level', 'operations', 'reflected', 'results', 'operations', 'year', 'ended', 'december', '31', '2016', 'sources', 'liquidity', 'sufficient', 'fund', 'operations', 'capital', 'expenditures', 'debt', 'service', 'requirements', 'next', '12', 'months', 'cash', 'flows', 'following', 'table', 'sets', 'forth', 'condensed', 'consolidated', 'statement', 'cash', 'flows', 'periods', 'indicated', 'year', 'ended', 'december', '31', '2014', '2015', '2016', 'millions', 'cash', 'flow', 'operating', 'activities', 'loss', 'tax', 'adjustments', 'reconcile', 'net', 'income', 'loss', 'net', 'cash', 'provided', 'operating', 'activities', '1', '64', '8', '107', '0', '147', '6', '122', '7', '182', '2', '312', '2', 'net', 'cash', 'provided', 'used', 'operating', 'activities', 'net', 'cash', 'provided', 'used', 'investing', 'activities', 'net', 'cash', 'provided', 'used', 'financing', 'activities', '57', '9', '123', '1', '80', '6', '75', '2', '161', '0', '62', '8', '164', '6', '190', '2', '53', '6', 'total', 'change', 'cash', 'cash', 'equivalents', 'effect', 'changes', 'exchange', 'rates', 'cash', 'positions', 'cash', 'cash', 'equivalents', 'beginning', 'period', '15', '4', '0', '8', '74', '7', '22', '9', '0', '7', '89', '3', '28', '0', '8', '1', '65', '6', 'cash', 'cash', 'equivalents', 'end', 'period', '89', '3', '65', '6', '101', '7', '1', 'adjustments', 'comprise', 'changes', 'working', 'capital', 'depreciation', 'amortization', 'changes', 'provisions', 'income', 'taxes', 'net', 'finance', 'costs', 'cash', 'flow', 'operating', 'activities', 'following', 'table', 'sets', 'forth', 'condensed', 'consolidated', 'statement', 'cash', 'flows', 'operating', 'activities', 'periods', 'indicated', 'year', 'ended', 'december', '31', 'millions', '2014', '2015', '2016', 'loss', 'tax', 'depreciation', 'impairment', 'property', 'plant', 'equipment', 'amortization', 'impairment', 'intangible', 'assets', 'increase', 'decrease', 'inventories', 'increase', 'decrease', 'trade', 'receivables', 'increase', 'decrease', 'trade', 'payables', 'income', 'taxes', 'net', 'finance', 'costs', '64', '8', '107', '0', '147', '6', '28', '3', '52', '0', '21', '8', '8', '1', '26', '7', '1', '5', '9', '5', '56', '6', '46', '3', '73', '2', '18', '1', '19', '8', '21', '6', '0', '9', '23', '1', '66', '8', 'net', 'cash', 'flow', 'operating', 'activities', '57', '9', '75', '2', '38', '3', '94', '9', '36', '9', '39', '1', '150', '3', '1', '1', '1', '16', '5', '122', '3', '164', '6', '1', 'increase', 'trade', 'payables', '2016', 'primarily', 'relates', 'deposits', 'received', 'special', 'edition', 'vehicles', 'december', '31', '2016', 'yet', 'delivered', 'customer', 'generated', '164', '6', 'million', 'net', 'cash', 'operating', 'activities', 'year', 'ended', 'december', '31', '2016', 'compared', '75', '2', 'million', 'year', 'ended', 'december', '31', '2015', 'increase', 'cash', 'generation', 'primarily', 'due', 'improved', 'cash', 'generation', 'working', 'capital', '74', '3', 'million', 'year', 'ended', 'december', '31', '2016', 'compared', '19', '9', 'million', 'year', 'ended', 'december', '31', '2015', 'increase', 'working', 'capital', 'primarily', 'due', 'increase', 'trade', 'payable', 'resulting', 'deposits', 'received', 'orders', 'aston', 'martin', 'valkyrie', 'special', 'edition', 'vehicles', 'addition', 'ebitda', 'increased', '101', '9', 'million', 'year', 'ended', 'december', '31', '2016', '61', '2', 'million', 'year', 'ended', 'december', '31', '2015', 'due', 'primarily', 'improved', 'sales', 'result', 'db11', 'increased', 'sales', 'volumes', 'generated', '75', '2', 'million', 'cash', 'fund', 'operations', 'year', 'ended', 'december', '31', '2015', 'compared', '57', '9', 'million', 'year', 'ended', 'december', '31', '2014', '77', 'increase', 'net', 'cash', 'flow', 'operating', 'activities', '75', '2', 'million', 'year', 'ended', 'december', '31', '2015', 'primarily', 'due', 'improvement', 'working', 'capital', '19', '9', 'million', 'year', 'ended', 'december', '31', '2015', 'compared', 'deterioration', 'working', 'capital', 'negative', '3', '2', 'million', 'year', 'ended', 'december', '31', '2014', 'cash', 'flow', 'financing', 'activities', 'following', 'table', 'sets', 'forth', 'condensed', 'consolidated', 'statement', 'cash', 'flows', 'financing', 'activities', 'periods', 'indicated', 'year', 'ended', 'december', '31', 'millions', '2014', '2015', '2016', 'interest', 'paid', 'proceeds', 'equity', 'share', 'issues', 'movement', 'borrowings', 'new', 'borrowings', 'transaction', 'fees', 'new', 'borrowings', '31', '9', '8', '2', '5', '3', '99', '6', '0', '6', '32', '3', '2', '4', '3', '8', '100', '0', '3', '5', '32', '6', '13', '8', '100', '0', 'net', 'cash', 'flow', 'financing', 'activities', '80', '6', '62', '8', '53', '6', 'net', 'cash', 'generated', 'financing', 'activities', 'year', 'ended', 'december', '31', '2016', 'amounted', '53', '6', 'million', 'compared', 'net', 'cash', 'generated', 'financing', 'activities', '62', '8', 'million', 'year', 'ended', 'december', '31', '2015', 'net', 'cash', 'generated', 'financing', 'activities', 'year', 'ended', 'december', '31', '2014', '80', '6', 'million', 'related', 'interest', 'paid', '53', '6', 'million', 'net', 'cash', 'inflow', 'financing', 'activities', 'year', 'ended', 'december', '31', '2016', 'consisted', '100', 'million', 'second', 'tranche', 'preference', 'shares', 'transaction', 'fees', 'less', 'interest', 'payments', '32', '6', 'million', 'repayments', 'inventory', 'funding', 'relation', 'us', 'chinese', 'subsidiaries', '13', '8', 'million', 'pursuant', 'inventory', 'funding', 'facilities', '62', '8', 'million', 'net', 'cash', 'inflow', 'financing', 'activities', 'year', 'ended', 'december', '31', '2015', 'consisted', 'net', '96', '5', 'million', 'first', 'tranche', 'preference', 'shares', 'transaction', 'fees', '2', '4', 'million', 'equity', 'share', 'issues', 'less', 'interest', 'payments', '32', '3', 'million', 'repayments', 'inventory', 'funding', 'relation', 'us', 'chinese', 'subsidiaries', '3', '8', 'million', 'pursuant', 'inventory', 'funding', 'facilities', '80', '6', 'million', 'net', 'cash', 'inflow', 'financing', 'activities', 'year', 'ended', 'december', '31', '2014', 'related', 'net', '99', '0', 'million', 'issue', 'existing', 'pik', 'notes', '8', '2', 'million', 'equity', 'share', 'issues', '5', '3', 'million', 'increased', 'inventory', 'funding', 'relation', 'us', 'chinese', 'subsidiaries', 'less', 'interest', 'paid', '31', '9', 'million', 'preference', 'shares', 'obligations', 'holdings', 'giving', 'effect', 'transactions', 'not', 'attributable', 'company', 'subsidiaries', 'cash', 'flow', 'investing', 'activities', 'net', 'cash', 'used', 'investing', 'activities', 'year', 'ended', 'december', '31', '2016', '190', '2', 'million', 'compared', '161', '0', 'million', 'year', 'ended', 'december', '31', '2015', 'used', '123', '1', 'million', 'cash', 'investing', 'activities', 'year', 'ended', 'december', '31', '2014', 'net', 'cash', 'used', 'investing', 'activities', 'year', 'ended', 'december', '31', '2016', 'included', 'gross', 'capital', 'expenditures', '192', '8', 'million', 'primarily', 'related', 'new', 'model', 'development', 'predominantly', 'db11', 'model', 'net', 'cash', 'used', 'investing', 'activities', 'year', 'ended', 'december', '31', '2015', 'amounted', '161', '0', 'million', 'cash', 'used', '2015', 'primarily', 'related', 'gross', 'capital', 'expenditures', '163', '1', 'million', 'related', 'new', 'model', 'development', 'predominantly', 'db11', 'model', 'year', 'ended', 'december', '31', '2014', 'net', 'cash', 'used', 'investing', 'activities', '123', '1', 'million', 'related', 'new', 'model', 'programs', '78', 'capital', 'expenditures', 'total', 'product', 'development', 'expenditures', 'following', 'table', 'sets', 'forth', 'capital', 'expenditures', 'total', 'product', 'development', 'expenditures', 'periods', 'indicated', 'year', 'ended', 'december', '31', 'millions', '2014', '2015', '2016', 'non', 'product', 'capital', 'expenditures', 'product', 'capital', 'expenditures', 'capitalized', 'engineering', 'research', 'development', 'costs', '21', '6', '8', '8', '96', '1', '5', '9', '35', '2', '122', '0', '11', '8', '64', '5', '116', '5', 'total', 'capital', 'expenditure', '126', '5', '163', '1', '192', '8', 'research', 'development', 'costs', 'recognized', 'expense', 'non', 'product', 'capital', 'expenditures', '10', '1', '21', '6', 'total', 'product', 'development', 'expenditures', '115', '0', '10', '6', '5', '9', '167', '9', '10', '9', '11', '8', '191', '9', 'capital', 'expenditure', 'comprises', 'non', 'product', 'capital', 'expenditure', 'investment', 'facilities', 'systems', 'not', 'specifically', 'relate', 'launch', 'new', 'model', 'model', 'derivative', 'ii', 'product', 'capital', 'expenditure', 'capital', 'expenditure', 'relating', 'initiating', 'production', 'new', 'models', 'model', 'derivatives', 'may', 'take', 'form', 'example', 'investment', 'suppliers', 'tooling', 'facilities', 'iii', 'capitalized', 'engineering', 'research', 'development', 'costs', 'relate', 'amortization', 'ifrs', 'engineering', 'research', 'development', 'assets', 'specific', 'development', 'new', 'models', 'model', 'derivatives', 'capital', 'expenditures', 'increased', '192', '8', 'million', 'year', 'ended', 'december', '31', '2016', 'compared', '163', '1', 'million', 'year', 'ended', 'december', '31', '2015', 'primarily', 'due', 'new', 'model', 'investment', 'including', 'tooling', 'costs', 'associated', 'new', 'modular', 'architecture', 'db11', 'future', 'models', 'capital', 'expenditures', 'increased', '126', '5', 'million', 'year', 'ended', 'december', '31', '2014', '163', '1', 'million', 'year', 'ended', 'december', '31', '2015', 'primarily', 'due', 'new', 'model', 'investment', 'next', '12', 'months', 'expect', 'capital', 'expenditures', 'range', '250', 'million', '260', 'million', 'taking', 'account', 'grants', 'amounts', 'received', 'consideration', 'entrance', 'lease', 'arrangement', 'connection', 'new', 'facility', 'st', 'athan', 'expected', 'capital', 'expenditures', 'next', '12', 'months', 'expect', 'well', 'invested', 'accordance', 'second', 'century', 'plan', 'anticipate', 'capital', 'expenditure', 'percentage', 'revenue', 'decline', 'medium', 'term', 'see', 'forward', 'looking', 'statements', 'capital', 'resources', 'short', 'term', 'debt', 'december', '31', '2014', '2015', '2016', 'short', 'term', 'bank', 'borrowings', 'entirely', 'consisted', 'existing', 'revolving', 'credit', 'facility', 'inventory', 'funding', 'facilities', 'described', 'wholesale', 'finance', 'facility', 'treated', 'balance', 'sheet', 'arrangement', 'see', 'balance', 'sheet', 'arrangements', 'long', 'term', 'debt', 'december', '31', '2016', 'long', 'term', 'debt', '717', '7', 'million', 'comprised', 'existing', 'notes', 'aggregate', 'principal', 'amount', '304', '0', 'million', 'existing', 'pik', 'notes', 'aggregate', 'principal', 'amount', '218', '3', 'million', '176', '6', 'million', 'preference', 'shares', 'treated', 'debt', 'ifrs', 'total', 'accrued', 'value', 'including', 'nominal', 'value', 'share', 'premium', 'capitalized', 'dividends', '237', '1', 'million', 'preference', 'shares', 'obligations', 'holdings', 'giving', 'effect', 'transactions', 'no', 'longer', 'attributable', 'company', 'subsidiaries', 'prior', 'issue', 'date', 'enter', 'new', 'revolving', 'credit', 'facility', 'availability', '80', 'million', 'borrowings', 'new', 'revolving', 'credit', 'facility', 'used', 'finance', 'general', 'corporate', 'working', 'capital', 'purposes', 'group', 'new', 'revolving', 'credit', 'facility', 'available', 'drawing', 'including', 'issue', 'date', 'including', 'one', 'month', 'fifth', 'anniversary', 'issue', 'date', 'see', 'description', 'financial', 'arrangements', 'new', 'revolving', 'credit', 'facility', 'agreement', '79', 'notes', 'offered', 'hereby', 'indenture', 'governing', 'notes', 'offered', 'hereby', 'new', 'revolving', 'credit', 'facility', 'contain', 'covenants', 'among', 'things', 'limit', 'ability', 'ability', 'restricted', 'subsidiaries', 'incur', 'guarantee', 'additional', 'indebtedness', 'issue', 'certain', 'preferred', 'stock', 'create', 'incur', 'certain', 'liens', 'make', 'certain', 'payments', 'including', 'dividends', 'distributions', 'prepay', 'redeem', 'subordinated', 'debt', 'equity', 'make', 'certain', 'investments', 'create', 'encumbrances', 'restrictions', 'payment', 'dividends', 'distributions', 'loans', 'advances', 'transfer', 'assets', 'restricted', 'group', 'sell', 'lease', 'transfer', 'certain', 'assets', 'including', 'stock', 'restricted', 'subsidiaries', 'engage', 'certain', 'transactions', 'affiliates', 'enter', 'unrelated', 'businesses', 'engage', 'prohibited', 'activities', 'consolidate', 'merge', 'entities', 'impair', 'security', 'interests', 'benefit', 'holders', 'notes', 'preference', 'shares', 'holdings', 'terms', 'preference', 'shares', 'holdings', 'contain', 'covenants', 'among', 'things', 'limit', 'ability', 'ability', 'restricted', 'subsidiaries', 'incur', 'guarantee', 'additional', 'indebtedness', 'issue', 'certain', 'preferred', 'stock', 'make', 'certain', 'payments', 'investments', 'currently', 'preference', 'shares', 'may', 'restrictive', 'indenture', 'governing', 'notes', 'new', 'revolving', 'credit', 'facility', 'including', 'restriction', 'ability', 'incur', 'debt', 'subject', 'certain', 'exceptions', 'unless', 'holdings', 'consolidated', 'leverage', 'ratio', 'less', '5', '0', '1', '0', 'certain', 'restrictions', 'making', 'investments', 'connection', 'transactions', 'expect', 'issue', 'date', 'amend', 'terms', 'preference', 'shares', 'align', 'relevant', 'provisions', 'notes', 'covenants', 'subject', 'number', 'important', 'exceptions', 'qualifications', 'covenants', 'could', 'limit', 'ability', 'finance', 'future', 'operations', 'capital', 'needs', 'see', 'description', 'financial', 'arrangements', 'new', 'revolving', 'credit', 'facility', 'agreement', 'principal', 'shareholders', 'preference', 'shares', 'description', 'notes', 'information', 'covenants', 'exceptions', 'qualifications', 'thereto', 'contained', 'agreements', 'contractual', 'obligations', 'commercial', 'commitments', 'presented', 'summary', 'contractual', 'obligations', 'december', '31', '2016', 'giving', 'effect', 'transactions', 'not', 'including', 'interest', 'expense', 'see', 'use', 'proceeds', 'total', '2017', '2018', '2019', '2020', '2021', 'thereafter', 'long', 'term', 'debt', '1', 'capital', 'lease', 'obligations', 'short', 'term', 'debt', '2', 'operating', 'leases', '530', '0', '5', '2', '39', '1', '5', '2', '5', '7', '4', '8', '4', '0', '3', '5', '530', '0', '21', '1', 'total', '574', '3', '10', '9', '4', '8', '4', '0', '3', '5', '551', '1', 'millions', '1', 'long', 'term', 'debt', 'comprises', 'notes', 'mature', '2022', 'excludes', 'wholesale', 'finance', 'facility', 'treated', 'balance', 'sheet', 'arrangement', 'preference', 'shares', 'not', 'attributable', 'company', 'subsidiaries', 'giving', 'effect', 'transactions', '2', 'short', 'term', 'debt', 'primarily', 'comprises', 'inventory', 'funding', 'facilities', '80', 'pensions', 'provide', 'retirement', 'benefits', 'certain', 'former', 'current', 'employees', 'defined', 'benefit', 'pension', 'arrangement', 'uk', 'db', 'plan', 'contributions', 'uk', 'db', 'plan', 'made', 'fund', 'future', 'accrual', 'benefits', 'well', 'seek', 'address', 'funding', 'shortfall', 'respect', 'benefits', 'already', 'accrued', 'since', 'may', '31', '2011', 'new', 'employees', 'no', 'longer', 'able', 'participate', 'uk', 'db', 'plan', 'although', 'plan', 'remains', 'open', 'future', 'benefit', 'accrual', 'existing', 'active', 'members', 'currently', 'estimate', 'contributions', 'defined', 'benefit', 'pension', 'plan', '12', '7', 'million', '2017', 'expected', 'cash', 'outflows', '2017', 'subsequent', 'years', 'uncertain', 'may', 'change', 'consequence', 'statutory', 'funding', 'requirements', 'well', 'changes', 'actual', 'versus', 'currently', 'assumed', 'discount', 'rates', 'estimations', 'compensation', 'increases', 'returns', 'pension', 'plan', 'assets', 'latest', 'actuarial', 'valuation', 'uk', 'db', 'plan', 'april', '6', '2014', 'showed', 'surplus', 'scheme', '3', '4', 'million', 'scheme', 'specific', 'funding', 'subsequent', 'deterioration', 'funding', 'position', 'resulted', 'recognition', 'liability', 'balance', 'sheet', 'respect', 'scheme', 'recent', 'periods', 'specifically', 'total', 'fair', 'value', 'plan', 'assets', '253', '7', 'million', 'present', 'value', 'funded', 'obligations', 'liability', '323', '5', 'million', 'case', 'december', '31', '2016', 'therefore', 'recognized', 'liability', '69', '8', 'million', 'balance', 'sheet', 'december', '31', '2016', 'result', 'addition', 'agreed', 'annual', 'contributions', 'fund', 'ongoing', 'accrual', 'benefits', 'agreed', 'make', 'recovery', 'contributions', 'uk', 'db', 'plan', 'approximately', '2', '8', 'million', 'year', 'march', '31', '2021', 'together', 'potential', 'additional', 'contributions', '3', '0', 'million', 'per', 'annum', 'depending', 'business', 'meeting', 'certain', 'defined', 'performance', 'targets', 'future', 'uk', 'db', 'plan', 'next', 'actuarial', 'valuation', 'need', 'take', 'place', 'effective', 'date', 'latest', 'april', '6', '2017', 'contributions', 'uk', 'db', 'plan', 'may', 'increase', 'following', 'results', 'valuation', 'balance', 'sheet', 'arrangements', 'also', 'wholesale', 'finance', 'facility', 'provide', 'additional', 'liquidity', 'utilize', '125', 'million', 'currently', 'process', 'upsizing', 'facility', 'received', 'credit', 'approval', 'standard', 'chartered', 'bank', 'increase', 'availability', 'facility', '145', 'million', 'wholesale', 'finance', 'facility', 'global', 'facility', 'pursuant', 'aml', 'amlna', 'offer', 'standard', 'chartered', 'bank', 'certain', 'receivables', 'owing', 'dealers', 'acquired', 'aston', 'martin', 'cars', 'credit', 'terms', 'not', 'exceeding', '270', 'days', 'date', 'dispatch', 'facility', 'used', 'e', 'standard', 'chartered', 'bank', 'purchases', 'receivables', 'offered', 'receive', 'standard', 'chartered', 'bank', 'purchase', 'price', 'car', 'less', 'discount', 'rate', 'calculated', 'accordance', 'wholesale', 'finance', 'facility', 'agreement', 'following', 'issuance', 'invoice', 'dealer', 'subject', 'satisfaction', 'certain', 'requirements', 'dealer', 'instructed', 'make', 'payment', 'amounts', 'due', 'invoice', 'account', 'standard', 'chartered', 'bank', 'amounts', 'paid', 'account', 'recovered', 'retained', 'standard', 'chartered', 'bank', 'required', 'pay', 'standard', 'chartered', 'bank', 'flat', 'fee', 'providing', 'wholesale', 'finance', 'facility', 'quarterly', 'basis', 'duration', 'facility', 'charge', 'discount', 'rate', 'applied', 'standard', 'chartered', 'bank', 'fees', 'associated', 'wholesale', 'finance', 'facility', 'dealers', 'time', 'time', 'can', 'not', 'utilize', 'facility', 'connection', 'sales', 'dealer', 'dealer', 'required', 'pay', 'car', 'prior', 'delivery', 'north', 'america', 'dealers', 'typically', '10', 'days', 'pay', 'us', 'wholesale', 'finance', 'facility', 'backed', 'credit', 'insurance', 'event', 'dealer', 'fails', 'repay', 'financing', 'scheme', 'credit', 'insurance', 'not', 'cover', 'cost', 'financing', 'direct', 'liability', 'respect', 'amounts', 'due', 'defaulting', 'dealer', 'standard', 'chartered', 'subject', 'aggregate', 'limit', '200', '000', 'two', 'year', 'period', 'ending', 'august', '31', '2018', 'december', '31', '2016', 'utilization', 'wholesale', 'finance', 'facility', '120', '9', 'million', 'see', 'description', 'financial', 'arrangements', 'wholesale', 'finance', 'facility', '81', 'qualitative', 'quantitative', 'disclosures', 'credit', 'risk', 'market', 'risk', 'interest', 'rate', 'risk', 'foreign', 'exchange', 'rate', 'risk', 'exposed', 'changes', 'interest', 'rates', 'foreign', 'currency', 'exchange', 'rates', 'finance', 'certain', 'operations', 'fixed', 'variable', 'rate', 'debt', 'instruments', 'denominate', 'transactions', 'variety', 'foreign', 'currencies', 'changes', 'rates', 'may', 'impact', 'future', 'cash', 'flow', 'earnings', 'manage', 'risks', 'normal', 'operating', 'financing', 'activities', 'deemed', 'appropriate', 'use', 'derivative', 'financial', 'instruments', 'not', 'enter', 'financial', 'instruments', 'trading', 'speculative', 'purposes', 'using', 'derivative', 'instruments', 'subject', 'credit', 'market', 'risk', 'fair', 'market', 'value', 'derivative', 'instruments', 'determined', 'using', 'valuation', 'models', 'whose', 'inputs', 'derived', 'using', 'market', 'observable', 'inputs', 'including', 'interest', 'rate', 'yield', 'curves', 'well', 'foreign', 'exchange', 'commodity', 'spot', 'forward', 'rates', 'reflects', 'asset', 'liability', 'position', 'end', 'reporting', 'period', 'fair', 'value', 'derivative', 'contract', 'positive', 'counterparty', 'owes', 'us', 'thus', 'creating', 'receivable', 'risk', 'us', 'exposed', 'counterparty', 'credit', 'risk', 'event', 'non', 'performance', 'counterparties', 'derivative', 'agreements', 'minimize', 'counterparty', 'credit', 'repayment', 'risk', 'entering', 'transactions', 'major', 'financial', 'institutions', 'investment', 'grade', 'credit', 'rating', 'exposure', 'market', 'risk', 'not', 'hedged', 'manner', 'completely', 'eliminates', 'effects', 'changing', 'market', 'conditions', 'earnings', 'cash', 'flow', 'exposed', 'credit', 'risk', 'sell', 'parts', 'certain', 'cases', 'cars', 'credit', 'dealers', 'well', 'provide', 'servicing', 'restoration', 'services', 'terms', 'payment', 'made', 'collection', 'car', 'interest', 'rate', 'risk', 'following', 'closing', 'offering', 'excluding', 'wholesale', 'finance', 'facility', 'since', 'costs', 'us', 'wholesale', 'finance', 'facility', 'charge', 'dealers', 'variable', 'rate', 'borrowing', 'arrangements', 'may', 'borrowings', 'new', 'revolving', 'credit', 'facility', 'no', 'borrowings', 'consummation', 'offering', 'ii', 'inventory', 'funding', 'facilities', 'evaluate', 'whether', 'hedging', 'interest', 'rate', 'risk', 'interest', 'rate', 'swaps', 'instruments', 'appropriate', 'going', 'forward', 'foreign', 'currency', 'risk', 'also', 'exposed', 'risk', 'changes', 'foreign', 'currency', 'exchange', 'rates', 'could', 'affect', 'operating', 'results', 'well', 'financial', 'position', 'cash', 'flows', 'addition', 'following', 'offering', 'notes', 'continue', 'debt', 'service', 'obligations', 'u', 'dollars', 'sterling', 'monitor', 'exposures', 'market', 'risks', 'generally', 'employ', 'operating', 'financing', 'activities', 'offset', 'exposures', 'appropriate', 'not', 'operating', 'financing', 'activities', 'sufficiently', 'offset', 'exposures', 'time', 'time', 'may', 'employ', 'derivative', 'financial', 'instruments', 'swaps', 'collars', 'forwards', 'options', 'instruments', 'limit', 'volatility', 'earnings', 'cash', 'flows', 'generated', 'exposures', 'primary', 'foreign', 'currency', 'exposure', 'relates', 'pounds', 'sterling', 'u', 'dollar', 'exchange', 'rate', 'due', 'significant', 'proportion', 'sales', 'u', 'dollar', 'denominated', 'markets', 'however', 'foreign', 'currency', 'exposures', 'also', 'relate', 'not', 'limited', 'euro', 'australian', 'dollar', 'canadian', 'dollar', 'japanese', 'yen', 'incur', '75', 'costs', 'pounds', 'sterling', 'also', 'subject', 'cost', 'based', 'currency', 'exposure', 'relation', 'euro', 'due', 'significant', 'portion', 'costs', 'sustained', 'currency', 'estimate', '5', 'decrease', 'u', 'dollar', 'pounds', 'sterling', 'exchange', 'rate', 'variables', 'held', 'constant', 'would', 'increased', 'profit', 'tax', '7', '7', 'million', 'year', 'ended', 'december', '31', '2016', '4', '4', 'million', 'year', 'ended', 'december', '31', '2015', 'policy', 'transaction', 'exposures', 'hedged', 'accordingly', 'identify', 'measure', 'exposure', 'transactions', 'denominated', 'functional', 'currency', 'calculate', 'net', 'exposure', 'cash', 'flow', 'basis', 'considering', 'anticipated', 'revenues', 'expenses', 'foreign', 'currency', 'exposures', 'maximum', 'period', 'five', 'years', 'progressively', 'hedged', 'using', 'forward', 'contracts', '82', 'credit', 'risk', 'sell', 'cars', 'dealer', 'network', 'dealers', 'outside', 'north', 'america', 'required', 'pay', 'cars', 'advance', 'dispatch', 'purchase', 'cars', 'deferred', 'payment', 'terms', 'look', 'sell', 'resulting', 'receivable', 'standard', 'chartered', 'bank', 'pursuant', 'wholesale', 'finance', 'facility', 'dealers', 'within', 'north', 'america', 'allowed', '10', 'day', 'credit', 'terms', 'date', 'invoice', 'unless', 'cars', 'sold', 'longer', 'deferred', 'payment', 'terms', 'set', 'previous', 'sentence', 'drawings', 'wholesale', 'finance', 'facility', 'covered', 'credit', 'risk', 'insurance', 'aggregate', 'limit', 'direct', 'liability', 'event', 'credit', 'insurance', 'not', 'covering', 'dealer', 'default', '200', '000', 'two', 'year', 'period', 'prior', 'august', '31', '2018', 'result', 'amendments', 'made', 'wholesale', 'finance', 'facility', 'june', '6', '2011', 'exceptional', 'circumstances', 'thorough', 'consideration', 'credit', 'history', 'individual', 'dealer', 'may', 'sell', 'cars', 'dealer', 'outside', 'credit', 'risk', 'insurance', 'policy', 'deferred', 'payment', 'terms', 'not', 'able', 'sell', 'receivable', 'standard', 'chartered', 'bank', 'pursuant', 'wholesale', 'finance', 'facility', 'see', 'risk', 'factors', 'insurance', 'coverage', 'may', 'not', 'adequate', 'protect', 'us', 'potential', 'losses', 'may', 'subject', 'could', 'material', 'adverse', 'effect', 'business', 'parts', 'sales', 'represent', 'smaller', 'element', 'total', 'revenue', 'made', 'dealers', '30', 'day', 'credit', 'terms', 'service', 'restoration', 'receivables', 'due', 'payment', 'collection', 'car', 'stage', 'payments', 'requested', 'longer', 'restoration', 'projects', 'critical', 'accounting', 'policies', 'preparation', 'financial', 'statements', 'requires', 'management', 'make', 'estimates', 'assumptions', 'affect', 'amounts', 'reported', 'assets', 'liabilities', 'reporting', 'date', 'amounts', 'reported', 'revenues', 'expenses', 'period', 'nature', 'estimation', 'means', 'actual', 'outcomes', 'could', 'differ', 'estimates', 'process', 'applying', 'accounting', 'policies', 'management', 'made', 'following', 'judgments', 'significant', 'effect', 'amounts', 'recognized', 'financial', 'statements', 'point', 'capitalization', 'amortization', 'development', 'costs', 'useful', 'lives', 'tangible', 'intangible', 'assets', 'key', 'sources', 'estimation', 'uncertainty', 'significant', 'risk', 'causing', 'material', 'adjustments', 'carrying', 'amounts', 'assets', 'liabilities', 'within', 'next', 'financial', 'year', 'follows', 'measurement', 'impairment', 'indefinite', 'life', 'intangible', 'assets', 'including', 'goodwill', 'measurement', 'warranty', 'liabilities', 'measurement', 'defined', 'benefit', 'pension', 'assets', 'obligations', 'measurement', 'intangible', 'assets', 'goodwill', 'business', 'combination', 'involves', 'estimation', 'future', 'cash', 'flows', 'selection', 'suitable', 'discount', 'rate', 'determine', 'whether', 'indefinite', 'life', 'intangible', 'assets', 'impaired', 'annual', 'basis', 'requires', 'estimation', 'value', 'use', 'cash', 'generating', 'units', 'intangible', 'assets', 'allocated', 'involves', 'estimation', 'future', 'cash', 'flows', 'choosing', 'suitable', 'discount', 'rate', 'see', 'note', '11', 'financial', 'statements', 'year', 'ended', 'december', '31', '2016', 'included', 'elsewhere', 'offering', 'memorandum', 'measurement', 'warranty', 'liabilities', 'estimated', 'past', 'experience', 'actual', 'level', 'warranty', 'claims', 'received', 'management', 'establishes', 'estimates', 'based', 'historical', 'information', 'nature', 'frequency', 'average', 'cost', 'warranty', 'claims', 'measurement', 'defined', 'benefit', 'pension', 'obligations', 'requires', 'estimation', 'future', 'changes', 'salaries', 'inflation', 'well', 'mortality', 'rates', 'expected', 'return', 'assets', 'suitable', 'discount', 'rates', 'see', 'note', '21', 'financial', 'statements', 'year', 'ended', 'december', '31', '2016', 'included', 'elsewhere', 'offering', 'memorandum', '83', 'new', 'accounting', 'pronouncements', 'following', 'standards', 'interpretations', 'not', 'yet', 'effective', 'not', 'yet', 'endorsed', 'european', 'union', 'not', 'early', 'adopted', 'group', 'adopted', 'future', 'accounting', 'periods', 'ifrs', '9', 'financial', 'instruments', 'july', '2014', 'international', 'accounting', 'standards', 'board', 'issued', 'final', 'version', 'ifrs', '9', 'financial', 'instruments', 'ifrs', '9', 'effective', 'annual', 'periods', 'beginning', 'january', '1', '2018', 'early', 'adoption', 'permitted', 'currently', 'plan', 'apply', 'ifrs', '9', 'initially', 'january', '1', '2018', 'actual', 'impact', 'adopting', 'ifrs', '9', 'group', 'consolidated', 'financial', 'statements', '2018', 'not', 'known', 'can', 'not', 'reliably', 'estimated', 'ifrs', '15', 'revenue', 'contracts', 'customers', 'ifrs', '15', 'establishes', 'comprehensive', 'framework', 'determining', 'whether', 'much', 'revenue', 'recognized', 'replaces', 'existing', 'revenue', 'recognition', 'guidance', 'including', 'ias', '18', 'revenue', 'ias', '11', 'construction', 'contracts', 'ifric', '13', 'customer', 'loyalty', 'programs', 'ifrs', '15', 'effective', 'annual', 'periods', 'beginning', 'january', '1', '2018', 'early', 'adoption', 'permitted', 'currently', 'plan', 'apply', 'ifrs', '15', 'initially', 'january', '1', '2018', 'ifrs', '16', 'leases', 'ifrs', '16', 'introduces', 'single', 'balance', 'sheet', 'lease', 'accounting', 'model', 'lessees', 'lessee', 'recognizes', 'right', 'use', 'asset', 'representing', 'right', 'use', 'underlying', 'asset', 'lease', 'liability', 'representing', 'obligations', 'make', 'lease', 'payments', 'optional', 'exemptions', 'short', 'term', 'leases', 'leases', 'low', 'value', 'items', 'lessor', 'accounting', 'remains', 'similar', 'current', 'standard', 'lessors', 'continue', 'classify', 'leases', 'finance', 'operating', 'leases', 'ifrs', '16', 'replaces', 'existing', 'leases', 'guidance', 'including', 'ias', '17', 'leases', 'ifric', '4', 'determining', 'whether', 'arrangement', 'contains', 'lease', 'sic', '15', 'operating', 'leases', 'incentives', 'sic', '27', 'evaluating', 'substance', 'transactions', 'involving', 'legal', 'form', 'lease', 'standard', 'effective', 'annual', 'periods', 'beginning', 'january', '1', '2019', 'early', 'adoption', 'permitted', 'entities', 'apply', 'ifrs', '15', 'revenue', 'contracts', 'customers', 'date', 'initial', 'application', 'ifrs', '16', 'currently', 'plan', 'apply', 'ifrs', '16', 'initially', 'january', '1', '2019', 'introduction', 'ifrs', '15', 'ifrs', '9', 'ifrs', '16', 'significant', 'impact', 'reported', 'results', 'group', 'although', 'not', 'currently', 'possible', 'quantify', 'effect', 'dependent', 'financial', 'instruments', 'hold', 'economic', 'conditions', 'time', 'well', 'accounting', 'elections', 'judgements', 'make', 'future', '84', 'industry', 'information', 'section', 'not', 'relate', 'us', 'not', 'independently', 'verified', 'issuer', 'guarantors', 'initial', 'purchasers', 'no', 'representation', 'made', 'accuracy', 'information', 'may', 'inconsistent', 'information', 'available', 'compiled', 'sources', 'certain', 'geographical', 'information', 'not', 'available', 'provided', 'information', 'equivalent', 'regions', 'information', 'may', 'useful', 'investors', 'information', 'not', 'however', 'necessarily', 'represent', 'actual', 'results', 'trends', 'particular', 'geographical', 'regions', 'prospective', 'investors', 'not', 'place', 'undue', 'reliance', 'forecasts', 'presented', 'make', 'independent', 'assessment', 'future', 'prospects', 'risks', 'relating', 'markets', 'operate', 'operate', 'high', 'luxury', 'sports', 'hls', 'segment', 'automotive', 'industry', 'includes', 'broad', 'range', 'cars', 'hyper', 'cars', 'aston', 'martin', 'vulcan', 'premium', 'high', 'luxury', 'four', 'door', 'coupe', 'models', 'rapide', 'compared', 'broader', 'passenger', 'car', 'market', 'hls', 'segment', 'shares', 'several', 'characteristics', 'luxury', 'goods', 'prestige', 'exclusivity', 'aesthetics', 'appreciation', 'performance', 'quality', 'luxury', 'goods', 'market', 'affected', 'global', 'macroeconomic', 'conditions', 'directly', 'impacted', 'population', 'wealth', 'high', 'net', 'worth', 'individuals', 'hnwi', 'wealth', 'hls', 'cars', 'particular', 'growth', 'personal', 'luxury', 'goods', 'market', 'significantly', 'exceeded', 'global', 'gdp', 'growth', 'shown', 'chart', 'global', 'gdp', 'growth', 'vs', 'global', 'personal', 'luxury', 'goods', 'market', 'growth', '1994', '2016', 'indexed', '100', '400', '350', '300', '250', '200', '150', '100', '50', '0', '1994', '1996', '1998', '2000', '2002', 'global', 'gdp', '2004', '2006', '2008', '2010', '2012', 'global', 'personal', 'luxury', 'goods', 'market', '2014', '2016', 'given', 'significant', 'cost', 'high', 'degree', 'customization', 'cars', 'offered', 'within', 'hls', 'segment', 'customers', 'tend', 'hnwi', 'typically', 'defined', 'individuals', 'investable', 'assets', 'financial', 'assets', 'not', 'including', 'primary', 'residence', 'collectibles', 'consumables', 'consumer', 'durables', 'excess', '1', 'million', '85', 'since', '2008', 'hls', 'segment', 'grown', 'faster', 'broader', 'luxury', 'market', 'rate', 'exceeding', 'global', 'gdp', 'growth', 'driven', 'expanding', 'population', 'hnwi', 'increasing', 'levels', 'hls', 'ownership', 'among', 'hnwi', 'luxury', 'cars', 'segment', 'estimated', 'value', '438', 'billion', '2016', 'fastest', 'expanding', 'segment', 'worldwide', 'luxury', 'market', 'growing', 'approximately', '8', '2016', 'according', 'bain', 'company', 'luxury', 'goods', 'worldwide', 'market', 'study', 'historically', 'one', 'fastest', 'growing', 'sub', 'segments', 'luxury', 'market', 'shown', 'graphic', 'absolute', 'luxury', 'cars', 'home', 'luxury', 'experiences', 'grow', 'wth', '2012', '16e', 'cagr', '14', '22', '12', 'home', 'home', 'luxury', 'experiences', '10', '8', 'accessible', 'aspirational', 'luxury', 'cars', 'personal', 'luxury', 'goods', '6', '4', 'luxury', 'toys', 'luxury', 'consumable', 'experiences', '2', '0', '2', '4', '6', '8', '2008', '12', 'cagr', 'source', 'bain', 'company', 'luxury', 'goods', 'worldwide', 'market', 'study', 'fall', 'winter', '2016', 'note', 'home', 'luxury', 'experiences', 'includes', 'luxury', 'hospitality', 'cruises', 'restaurants', 'home', 'luxury', 'experiences', 'includes', 'designer', 'furniture', 'fine', 'art', 'luxury', 'consumable', 'experiences', 'includes', 'beauty', 'fine', 'wines', 'spirits', 'fine', 'food', 'luxury', 'toys', 'includes', 'private', 'jets', 'yachts', 'source', 'bain', 'company', 'luxury', 'goods', 'worldwide', 'market', 'study', 'fall', 'winter', '2016', 'world', 'bank', 'data', 'gdp', 'growth', '1994', '2015', 'pwc', 'global', 'economy', 'watch', 'estimate', 'gdp', 'growth', 'estimate', '2016', 'economic', 'growth', 'increasing', 'concentration', 'wealth', 'changing', 'demand', 'patterns', 'significant', 'infrastructure', 'investments', 'particular', 'led', 'surge', 'demand', 'hls', 'cars', 'worldwide', 'additionally', 'increasingly', 'young', 'age', 'hnwi', 'introduction', 'new', 'products', 'driven', 'demand', 'within', 'hls', 'segment', 'manufacturers', 'hls', 'segment', 'separated', 'exclusive', 'luxury', 'brands', 'large', 'automotive', 'companies', 'certain', 'product', 'derivatives', 'bmw', 'm6', 'coupe', 'exclusive', 'luxury', 'brands', 'aston', 'martin', 'bentley', 'ferrari', 'lamborghini', 'mclaren', 'rolls', 'royce', 'generally', 'pursue', 'low', 'volume', 'production', 'strategy', 'maintain', 'reputation', 'exclusivity', 'scarcity', 'promote', 'premium', 'pricing', 'due', 'relatively', 'small', 'size', 'hls', 'segment', 'new', 'product', 'offerings', 'tend', 'drive', 'overall', 'volume', 'development', 'consequently', 'market', 'share', 'not', 'relevant', 'compared', 'segments', 'automotive', 'market', '86', 'key', 'market', 'drivers', 'number', 'high', 'net', 'worth', 'individuals', 'principal', 'driver', 'hls', 'segment', 'number', 'hnwi', 'resources', 'available', 'purchase', 'hls', 'cars', 'pool', 'hnwi', 'impacted', 'global', 'economic', 'growth', 'wealth', 'creation', 'particularly', 'certain', 'emerging', 'economies', 'rising', 'levels', 'affluence', 'demand', 'emerging', 'middle', 'upper', 'classes', 'asia', 'pacific', 'region', 'according', 'capgemini', '2016', 'wealth', 'report', 'population', 'hnwi', 'grown', '4', '9', '2014', '2015', '15', '4', 'million', 'hnwis', 'globally', 'hnwi', 'population', 'grew', 'cagr', 'approximately', '7', '2010', '2015', 'following', 'chart', 'shows', 'hnwi', 'popula', '2010', '2015', 'region', '4', '0', '2010', '2015', 'cagr', '7', '15', '4', '15', '8', '0', '5', '0', '6', '4', '2', '4', '7', '4', '8', '7', '4', '3', '4', '3', '4', '7', '5', '1', '9', 'number', 'hnwi', 'millions', '16', '0', '13', '7', '12', '0', '10', '9', '11', '0', '8', '0', '0', '5', '3', '1', '0', '5', '3', '2', '4', '0', '12', '0', '0', '5', '3', '4', '3', '4', '3', '4', '3', '7', '3', '3', '3', '4', '3', '7', '0', '5', '3', '8', '14', '6', '0', '5', '0', '0', '2010', 'asia', 'paci', 'c', '2011', '2012', 'north', 'america', 'europe', '2013', '2014', '2015', 'la', 'n', 'america', 'middle', 'east', 'africa', 'note', 'chart', 'numbers', 'quoted', 'percentages', 'may', 'not', 'add', 'due', 'rounding', 'cagrs', 'calculated', 'rounded', 'figures', 'source', 'capgemini', 'financial', 'services', 'analysis', '2016', 'world', 'wealth', 'report', '2016', 'capgemini', '87', 'hnwi', 'wealth', 'expected', 'continue', 'expand', 'rapidly', 'surpassing', '100', 'trillion', 'globally', '2025', 'according', 'capgemini', 'financial', 'services', 'analysis', '2016', 'increasingly', 'younger', 'age', 'individuals', 'obtaining', 'high', 'net', 'worth', 'status', 'also', 'important', 'factor', 'hls', 'segment', 'attracts', 'younger', 'purchasers', 'believe', 'age', 'drives', 'penetration', 'hnwi', 'population', 'hls', 'car', 'market', 'via', 'age', 'effect', 'individual', 'tastes', 'two', 'respects', 'first', 'individuals', 'entering', 'hnwi', 'population', 'increasingly', 'younger', 'ages', 'creating', 'larger', 'market', 'characterized', 'youthful', 'spending', 'habits', 'second', 'older', 'members', 'hnwi', 'population', 'tend', 'resist', 'growing', 'old', 'terms', 'style', 'appearance', 'attitude', 'comes', 'purchasing', 'car', 'youthful', 'mentality', 'supports', 'demand', 'market', 'older', 'members', 'hnwi', 'population', 'sporty', 'cars', 'additionally', 'growth', 'number', 'high', 'net', 'worth', 'women', 'leads', 'correspondingly', 'higher', 'household', 'income', 'also', 'become', 'driver', 'increase', 'hls', 'segment', 'following', 'chart', 'sets', 'forth', 'expected', 'hnwi', 'wealth', 'projection', 'region', 'hnwi', 'wealth', 'projec', '2006', '2015', '2025p', 'region', 'us', 'trillions', '125', '106', '0', '100', '11', '7', '75', '50', '25', '0', '19', '9', '58', '7', '37', '2', '5', '1', '10', '1', '11', '2', '8', '4', '2006', 'asia', 'paci', 'c', 'north', 'america', '2015', '2025p', 'cagr', '6', '5', '7', '5', '4', '25', '7', '7', '4', '13', '6', '16', '6', '42', '1', '4', '9', '17', '4', '2015', 'europe', 'la', 'n', 'america', '2025p', 'middle', 'east', 'africa', 'chart', 'numbers', 'quoted', 'percentages', 'may', 'not', 'add', 'due', 'rounding', '2025', 'data', 'calculated', 'applying', 'countrylevel', 'annualized', 'growth', 'rate', '2006', '2015', '2015', '2025', 'period', 'cagrs', 'calculated', 'using', 'rounded', 'figures', 'projected', 'data', 'illustrative', 'purposes', 'not', 'taken', 'indicative', 'future', 'market', 'value', 'impacted', 'many', 'factors', 'inherently', 'uncertain', 'source', 'capgemini', 'financial', 'services', 'analysis', '2016', 'world', 'wealth', 'report', '2016', 'capgemini', 'penetration', 'hls', 'among', 'hnwi', 'driver', 'hls', 'segment', 'rate', 'hls', 'penetration', 'hnwi', 'population', 'influenced', 'growing', 'availability', 'hls', 'cars', 'given', 'dealership', 'network', 'expansions', 'volume', 'increases', 'major', 'original', 'equipment', 'manufacturers', 'oems', 'monitoring', 'scarcity', 'availability', 'appropriate', 'infrastructure', 'relative', 'affordability', 'new', 'cars', 'entering', 'hls', 'segment', 'lower', 'prices', 'additionally', 'improving', 'infrastructure', 'emerging', 'markets', 'well', 'increasing', 'hls', 'product', 'awareness', 'among', 'hnwi', 'consumers', 'expected', 'drive', 'penetration', 'levels', 'markets', 'historically', 'western', 'levels', 'due', 'road', 'traffic', 'constraints', 'widespread', 'reliance', 'chauffeurs', 'lack', 'suitable', 'racetracks', 'new', 'product', 'launches', 'economic', 'confidence', 'given', 'significant', 'financial', 'resources', 'available', 'hnwi', 'customer', 'base', 'key', 'characteristic', 'hls', 'segment', 'considerable', 'portion', 'demand', 'driven', 'new', 'product', 'offerings', 'tend', 'create', 'demand', 'drive', 'sales', 'volumes', 'even', 'difficult', 'market', 'environments', 'consumer', 'demand', 'passenger', 'cars', 'general', 'affected', 'global', 'economic', 'conditions', 'turn', 'affect', 'consumers', 'disposable', 'income', 'purchasing', 'power', 'availability', 'credit', 'high', 'disposable', 'income', 'liquid', 'wealth', 'levels', 'hnwi', 'segment', 'mean', 'hls', 'customers', 'less', 'affected', 'economic', 'cycle', 'factors', 'uncertainty', 'economic', '88', 'outlook', 'declining', 'return', 'investments', 'reduced', 'income', 'streams', 'social', 'acceptance', 'impact', 'customers', 'willingness', 'buy', 'hls', 'cars', 'seasonality', 'hls', 'cars', 'typically', 'made', 'order', 'customers', 'inclined', 'order', 'cars', 'second', 'quarter', 'spring', 'summer', 'season', 'fourth', 'quarter', 'parallel', 'dealers', 'need', 'certain', 'number', 'cars', 'show', 'rooms', 'walk', 'ins', 'dealers', 'typically', 'stock', 'inventories', 'fourth', 'quarter', 'calendar', 'year', 'lead', 'holiday', 'shopping', 'season', 'hls', 'car', 'sales', 'typically', 'lowest', 'first', 'quarter', 'dealers', 'sell', 'excess', 'inventory', 'purchase', 'fewer', 'cars', 'also', 'peak', 'sales', 'second', 'quarter', 'year', 'due', 'increased', 'customer', 'demand', 'anticipation', 'summer', 'hls', 'market', 'characterization', 'hls', 'segment', 'broken', 'price', 'range', 'degree', 'sporting', 'characteristics', 'classifications', 'include', 'hyper', 'cars', 'supercars', 'exotic', 'cars', 'sports', 'cars', 'sports', 'grand', 'tourer', 'cars', '4', 'door', 'coupes', 'typically', 'customer', 'purchase', 'hls', 'car', 'second', 'car', 'particularly', 'supercars', 'aggressive', 'sports', 'cars', 'may', 'driven', 'special', 'occasions', 'purchased', 'trophy', 'assets', 'driven', 'rarely', 'order', 'preserve', 'value', 'condition', 'driving', 'characteristics', 'limited', 'comfort', 'levels', 'typically', 'found', 'supercars', 'aggressive', 'sports', 'cars', 'may', 'also', 'limit', 'utility', 'regular', 'means', 'transport', 'end', 'spectrum', 'less', 'aggressive', 'sports', 'cars', 'grand', 'tourer', 'cars', 'greater', 'focus', 'comfort', 'drivability', 'may', 'purchased', 'everyday', 'driving', 'cars', 'weekend', 'cars', 'case', 'four', 'seater', 'models', 'may', 'even', 'used', 'family', 'cars', 'established', 'developing', 'markets', 'hls', 'segment', 'varies', 'significantly', 'one', 'region', 'another', 'terms', 'expected', 'growth', 'significant', 'variation', 'mature', 'developing', 'markets', 'established', 'markets', 'developed', 'markets', 'europe', 'north', 'america', 'represent', 'majority', 'hls', 'segment', 'constitute', 'approximately', '60', 'world', 'hnwi', 'population', 'according', 'world', 'wealth', 'report', '2016', 'issued', 'capgemini', 'although', 'representing', 'approximately', '15', 'world', 'population', 'according', 'united', 'nations', 'department', 'economic', 'social', 'affairs', 'populution', 'division', 'developed', 'markets', 'benefit', 'high', 'hnwi', 'density', 'advanced', 'infrastructure', 'generally', 'high', 'brand', 'awareness', 'developing', 'markets', 'developing', 'markets', 'rapidly', 'gaining', 'importance', 'within', 'hls', 'segment', 'changing', 'demand', 'patterns', 'choosing', 'drive', 'oneself', 'rather', 'using', 'chauffeur', 'significant', 'infrastructure', 'investments', 'led', 'increase', 'demand', 'russian', 'indian', 'chinese', 'markets', 'particularly', 'china', 'wider', 'asia', 'pacific', 'region', 'average', 'absolute', 'purchasing', 'power', 'countries', 'expected', 'increase', 'significantly', 'coming', 'years', 'including', 'respect', 'hnwi', 'trend', 'also', 'likely', 'supported', 'increasing', 'number', 'working', 'women', 'high', 'incomes', 'countries', 'leads', 'correspondingly', 'higher', 'household', 'income', 'well', 'general', 'corresponding', 'increase', 'motor', 'car', 'ownership', 'per', 'capita', 'result', 'increasing', 'number', 'hnwi', 'within', 'developing', 'markets', 'may', 'represent', 'purchasers', 'hls', 'segment', 'especially', 'true', 'japan', 'china', 'rising', 'levels', 'affluence', 'well', 'growth', 'luxury', 'goods', 'consumption', 'highest', 'income', 'class', 'countries', 'together', 'drove', 'close', '60', 'global', 'hnwi', 'population', 'growth', '2015', 'according', 'world', 'wealth', 'report', '2016', 'issued', 'capgemini', 'brand', 'recognition', 'particularly', 'relevant', 'developing', 'markets', 'given', 'brands', 'widely', 'recognized', '89', 'competitive', 'position', 'competition', 'luxury', 'performance', 'car', 'market', 'concentrated', 'fairly', 'small', 'number', 'producers', 'include', 'large', 'automotive', 'companies', 'respect', 'certain', 'models', 'well', 'small', 'producers', 'like', 'aston', 'martin', 'exclusively', 'focused', 'luxury', 'cars', 'competition', 'hls', 'car', 'market', 'mainly', 'driven', 'strength', 'differentiation', 'brand', 'appeal', 'cars', 'terms', 'styling', 'performance', 'innovation', 'regular', 'renewal', 'model', 'offerings', 'order', 'continuously', 'stimulate', 'customer', 'demand', 'following', 'table', 'sets', 'forth', 'examples', 'current', 'hls', 'models', 'model', 'classification', 'producer', 'types', 'classification', 'aston', 'martin', 'model', 'selected', 'competitor', 'models', 'hyper', 'car', 'exotic', 'aston', 'martin', 'vulcan', 'aston', 'martin', 'valkyrie', 'vanquish', 'zagato', 'ferrari', 'laferrari', 'aperta', 'supercar', 'vanquish', 'lamborghini', 'aventador', 'ferrari', 'f12', 'ferrari', 'gtc4', 'lusso', 'sports', 'vantage', 'gt8', 'vantage', 'gt12', 'v12', 'vantage', 'v8', 'vantage', 'mclaren', '650s', 'lamborghini', 'huracan', 'ferrari', '488', 'porsche', '911', 'turbo', 'sports', 'grand', 'tourer', 'db9', 'gt', 'vanquish', 'db11', 'bentley', 'continental', 'gt', 'ferrari', 'california', 'rolls', 'royce', 'wraith', 'mercedes', 's65', 'coupe', '4', 'door', 'coupe', 'rapide', 'bmw', 'm6', 'coupe', 'porsche', 'panamera', 'turbo', 'turbo', 'bentley', 'flying', 'spur', 'exclusive', 'luxury', 'brands', 'ultimately', 'differentiate', 'large', 'automotive', 'companies', 'reputation', 'exclusivity', 'scarcity', 'largely', 'driven', 'low', 'volume', 'production', 'personalization', 'rare', 'issues', 'special', 'editions', 'differentiated', 'design', 'heritage', 'performance', 'innovation', 'luxury', 'enable', 'exclusive', 'luxury', 'brands', 'position', 'cars', 'distinctively', 'hnwis', 'believe', 'aston', 'martin', 'brand', 'uniquely', 'positioned', 'terms', 'connotations', 'beauty', 'sophistication', 'luxury', 'clearly', 'distinct', 'design', 'catering', 'specific', 'tastes', 'personal', 'preferences', 'hnwis', '90', 'business', 'overview', 'aston', 'martin', 'brand', 'one', 'world', 'iconic', 'leading', 'luxury', 'brands', 'focused', 'design', 'engineering', 'manufacturing', 'luxury', 'sports', 'cars', 'brand', 'history', '100', 'years', 'symbolizes', 'luxury', 'exclusivity', 'elegance', 'power', 'beauty', 'sophistication', 'innovation', 'performance', 'exceptional', 'standard', 'styling', 'design', 'believe', 'rich', 'prestigious', 'heritage', 'defines', 'aston', 'martin', 'something', 'truly', 'unique', 'within', 'automotive', 'industry', 'cars', 'solely', 'address', 'high', 'luxury', 'sports', 'hls', 'segment', 'believe', 'epitome', 'performance', 'luxury', 'styling', 'current', 'core', 'model', 'line', 'comprises', 'five', 'core', 'models', 'including', 'two', 'sports', 'cars', 'v8', 'vantage', 'v12', 'vantage', 'one', 'grand', 'tourer', 'new', 'db11', 'one', 'four', 'door', 'four', 'seat', 'sports', 'coupe', 'rapide', 'one', 'super', 'car', 'vanquish', 'models', 'available', 'different', 'model', 'types', 'well', 'coupe', 'convertible', 'models', 'also', 'regularly', 'develop', 'produce', 'special', 'edition', 'niche', 'models', 'vantage', 'gt12', 'aston', 'martin', 'vulcan', 'lagonda', 'taraf', 'vanquish', 'zagato', 'new', 'hyper', 'car', 'aston', 'martin', 'valkyrie', '2015', 'introduced', 'new', 'second', 'century', 'plan', 'based', 'three', 'key', 'principles', 'one', 'two', 'new', 'core', 'models', 'derivatives', 'per', 'year', 'promoting', 'self', 'funding', 'business', 'diversifying', 'portfolio', 'products', 'cover', 'sports', 'cars', 'sedans', 'sports', 'utility', 'vehicle', 'suv', 'three', 'pillar', 'strategy', 'plan', 'four', 'phases', 'business', 'stabilization', 'core', 'strengthening', 'expansion', 'products', 'portfolio', 'culminating', 'final', 'phase', 'solidify', 'position', 'self', 'sustaining', 'luxury', 'business', 'begun', 'transition', 'phase', 'two', 'phase', 'three', 'plan', 'following', 'successful', 'introduction', 'db11', 'recent', 'unveiling', 'aston', 'martin', 'valkyrie', 'also', 'made', 'significant', 'progress', 'plans', 'expand', 'diversify', 'product', 'line', 'finalizing', 'acquisition', 'st', 'athan', 'wales', 'manufacturing', 'site', 'dbx', 'first', 'suv', 'made', 'adoption', 'second', 'century', 'plan', 'based', 'strategy', 'introduce', 'one', 'two', 'new', 'core', 'models', 'derivatives', 'every', 'year', 'next', 'seven', 'years', 'drive', 'highly', 'profitable', 'growth', 'manage', 'cash', 'flow', 'introduced', 'db11', 'fall', '2016', 'launch', 'db11', 'marked', 'start', 'new', 'chapter', 'aston', 'martin', 'inflection', 'point', 'business', 'march', '1', '2017', 'combined', 'sales', 'total', 'orders', '2', '462', 'db11', 'cars', '1', '371', 'sold', 'end', 'february', '2017', '993', 'constituted', 'orders', 'production', 'date', 'year', 'ended', 'december', '31', '2016', 'sold', '3', '687', 'cars', '1', '005', 'db11', 'cars', 'product', 'development', 'team', 'comprised', '747', 'designers', 'engineers', 'technicians', 'covering', 'almost', 'aspects', 'new', 'car', 'planning', 'design', 'development', 'products', 'design', 'resulted', 'numerous', 'awards', 'including', 'recently', 'car', 'design', 'year', '2016', 'salone', 'dell', 'auto', 'sports', 'car', 'year', '2016', 'autonis', 't3', 'design', 'year', '2016', 'db11', 'best', 'car', '2016', 'auto', 'motor', 'und', 'sport', 'vanquish', 'best', 'car', '2014', 'auto', 'motor', 'und', 'sport', 'rapide', 'production', 'facility', 'located', 'gaydon', 'united', 'kingdom', 'uk', 'gaydon', 'facility', 'opened', '2003', 'developed', 'specific', 'needs', 'aston', 'martin', 'believe', 'one', 'europe', 'modern', 'automotive', 'manufacturing', 'facilities', 'one', 'advanced', 'manufacturing', 'facilities', 'hls', 'segment', 'design', 'activities', 'centered', 'gaydon', 'ensuring', 'maximum', 'efficiency', 'ease', 'oversight', 'promotion', 'harmony', 'design', 'teams', 'engineers', 'technicians', 'addition', 'currently', 'building', 'new', 'plant', 'wales', 'uk', 'future', 'production', 'suvs', 'anticipate', 'begin', 'full', 'production', '2019', 'december', '31', '2016', 'employed', '1', '594', 'employees', '727', 'contractors', '91', 'sell', 'cars', 'global', 'dealer', 'network', '165', 'dealers', 'december', '31', '2016', 'allows', 'us', 'benefit', 'geographical', 'diversification', 'revenues', 'access', 'high', 'growth', 'markets', 'divide', 'markets', 'following', 'regions', 'europe', 'uk', 'south', 'africa', 'americas', 'china', 'asia', 'pacific', 'middle', 'east', 'north', 'africa', 'following', 'chart', 'represents', 'revenue', 'geography', 'year', 'ended', 'december', '31', '2016', 'revenue', 'geography', '1', 'middle', 'east', 'north', 'africa', '4', '5', '1', 'asia', 'pacific', '5', '13', 'americas', '2', '22', '2', 'china', '7', '3', 'europe', '3', '22', '1', 'united', 'kingdom', 'south', 'africa', '30', '3', '1', 'revenue', 'geography', 'based', 'location', 'dealer', 'sell', 'cars', '2', 'americas', 'consists', 'brazil', 'canada', 'chile', 'mexico', 'peru', 'united', 'states', '3', 'europe', 'excludes', 'united', 'kingdom', '4', 'middle', 'east', 'north', 'africa', 'consists', 'azerbaijan', 'bahrain', 'egypt', 'kuwait', 'india', 'israel', 'jordan', 'lebanon', 'oman', 'qatar', 'saudi', 'arabia', 'turkey', '5', 'asia', 'pacific', 'consists', 'australia', 'hong', 'kong', 'indonesia', 'japan', 'macau', 'malaysia', 'new', 'zealand', 'philippines', 'singapore', 'south', 'korea', 'taiwan', 'thailand', 'vietnam', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'twelve', 'months', 'ended', 'february', '28', '2017', 'would', '161', '0', 'million', 'ebitda', 'year', 'ended', 'december', '31', '2016', '100', '9', 'million', 'history', 'founded', 'london', '1913', 'much', 'history', 'niche', 'producer', 'luxury', 'high', 'performance', 'sports', 'cars', 'mainly', 'uk', 'customers', '1987', 'ford', 'acquired', '75', 'stake', 'company', 'increased', '100', '1994', 'following', 'ford', 'acquisition', 'operations', 'sales', 'expanded', 'introduction', 'db7', 'vanquish', 'models', '2004', 'vertical', 'horizontal', 'architecture', 'introduced', 'underpinning', 'new', 'products', 'db9', 'v8', 'vantage', 'introduced', 'increasing', 'sales', 'average', 'less', '200', 'cars', 'per', 'year', 'years', 'prior', '1987', 'pre', 'downturn', 'peak', '7', '000', 'cars', '2007', '2007', 'ford', 'sold', 'majority', 'ownership', 'company', 'consortium', 'investors', 'including', 'investment', 'dar', 'adeem', 'investment', '2013', 'investment', 'subsidiaries', 'investindustrial', 'v', 'l', 'p', 'purchased', '37', '7', 'business', 'primary', 'transaction', '2013', 'continued', 'focus', 'high', 'performance', 'sports', 'cars', 'introduction', 'v12', 'vantage', 'facelift', 'four', 'door', 'sports', 'coupe', 'rapide', 'also', '2013', 'partnered', 'daimler', 'ag', 'provide', 'us', 'mercedes', 'amg', 'engines', 'navigation', 'entertainment', 'systems', 'part', 'partnership', 'daimler', 'ag', 'became', 'holder', '4', '9', 'non', 'voting', 'ordinary', 'shares', 'since', '2013', 'supportive', 'shareholders', 'made', 'significant', 'investments', 'example', 'preference', 'shares', 'aston', 'martin', 'second', 'century', 'plan', '2016', 'introduced', 'db11', 'replacing', 'db9', 'vehicle', 'db11', 'introduced', 'improved', 'modular', 'architecture', 'form', 'basis', 'future', 'sports', 'cars', 'also', 'first', 'product', 'introduce', 'mercedes', 'navigation', 'entertainment', 'systems', 'following', 'partnership', 'daimler', 'ag', '92', 'strengths', 'believe', 'following', 'key', 'competitive', 'strengths', 'help', 'us', 'realize', 'strategic', 'goals', 'reinforce', 'competitive', 'position', 'quintessential', 'luxury', 'brand', 'believe', 'aston', 'martin', 'brand', 'one', 'globally', 'recognized', 'luxury', 'brands', 'leader', 'luxury', 'sports', 'cars', 'segment', 'strong', 'heritage', 'global', 'recognition', 'aston', 'martin', 'brand', 'enabled', 'us', 'achieve', 'market', 'position', 'place', 'us', 'competitive', 'class', 'exceptional', 'brand', 'authority', 'aston', 'martin', 'brand', 'internationally', 'recognized', 'iconic', 'beautiful', 'design', 'luxury', 'experience', 'associated', 'meticulously', 'crafted', 'products', 'founded', '1913', 'aston', 'martin', 'long', 'tradition', 'exceptional', 'design', 'engineering', 'manufacturing', 'luxury', 'sports', 'cars', 'sedans', 'addition', 'racing', 'pedigree', 'includes', 'motorsport', 'debut', 'french', 'grand', 'prix', '1923', 'well', 'dbr1', 'famous', 'le', 'mans', '24', 'hour', 'race', 'victory', '1959', 'inspired', 'various', 'aston', 'martin', 'models', 'last', 'hundred', 'years', 'aston', 'martin', 'recognized', 'elegant', 'sophisticated', 'british', 'style', 'iconic', 'db5', 'introduced', '1964', 'james', 'bond', 'film', 'goldfinger', 'newest', 'db', 'model', 'award', 'winning', 'db11', 'long', 'established', 'strong', 'player', 'within', 'segment', 'brand', 'exclusive', 'understated', 'elegantly', 'styled', 'yet', 'aston', 'martin', 'product', 'remains', 'visible', 'sought', 'including', 'legacy', 'models', 'typically', 'command', 'high', 'resale', 'prices', 'today', 'perpetuate', 'exclusive', 'brand', 'image', 'pairing', 'power', 'performance', 'refinement', 'style', 'cars', 'well', 'comprehensive', 'brand', 'management', 'effective', 'public', 'relations', 'including', 'high', 'end', 'dealer', 'showrooms', 'customers', 'able', 'experience', 'emotional', 'link', 'brand', 'design', 'performance', 'quality', 'ensure', 'experience', 'high', 'class', 'unique', 'experience', 'emotional', 'connection', 'driver', 'car', 'furthered', 'newly', 'relaunched', 'q', 'aston', 'martin', 'program', 'whereby', 'customer', 'work', 'award', 'winning', 'design', 'team', 'completely', 'customize', 'aston', 'martin', 'adding', 'personalized', 'distinctive', 'touches', 'link', 'customers', 'products', 'also', 'enabled', 'us', 'build', 'loyal', 'consumer', 'base', 'continue', 'cater', 'loyal', 'customers', 'benefit', 'exclusive', 'offers', 'opportunities', 'example', '150', 'road', 'going', 'models', 'aston', 'martin', 'valkyrie', 'largely', 'allocated', 'existing', 'aston', 'martin', 'car', 'owners', 'future', 'special', 'edition', 'models', 'expect', 'primarily', 'target', 'existing', 'aston', 'martin', 'car', 'owners', 'continual', 'advances', 'automotive', 'performance', 'innovation', 'styling', 'design', 'resulted', 'proud', 'heritage', 'prestige', 'luxury', 'quality', 'beauty', 'materially', 'contributed', 'financial', 'success', 'proven', 'pricing', 'power', 'value', 'resilience', 'result', 'aston', 'martin', 'brand', 'strength', 'past', 'present', 'proven', 'pricing', 'power', 'value', 'resilience', 'customers', 'purchase', 'products', 'variety', 'reasons', 'purchasing', 'decisions', 'primarily', 'based', 'emotive', 'factors', 'design', 'performance', 'quality', 'able', 'increase', 'average', 'selling', 'prices', 'core', 'models', '96', '2007', '2016', 'mainly', 'due', 'strategic', 'introduction', 'new', 'core', 'models', 'enhanced', 'versions', 'existing', 'models', 'capitalize', 'emotive', 'factors', 'product', 'launches', 'whether', 'new', 'models', 'derivatives', 'generally', 'met', 'enthusiastically', 'demand', 'outpacing', 'production', 'year', 'launch', 'limited', 'production', 'enhanced', 'versions', 'existing', 'models', 'promotes', 'exclusivity', 'brand', 'image', 'allows', 'us', 'raise', 'price', 'points', 'cars', 'enhanced', 'features', 'increase', 'price', 'existing', 'models', 'example', 'road', 'going', 'version', 'newly', 'unveiled', 'aston', 'martin', 'valkyrie', 'latest', 'special', 'edition', 'model', 'fully', 'sold', 'shortly', 'launch', 'despite', 'customer', 'selection', 'price', 'deposit', 'requirements', 'cars', 'also', 'maintain', 'values', 'often', 'command', 'collector', 'premiums', 'strength', 'brand', 'beautiful', 'innovative', 'design', 'products', 'pricing', 'power', 'resilient', 'even', 'economic', 'downturns', 'demonstrates', 'leadership', 'luxury', 'sports', 'car', 'segment', '93', 'global', 'access', 'fast', 'growing', 'wealth', 'creation', 'market', 'sell', 'vehicles', 'global', 'sales', 'distribution', 'network', 'designed', 'achieve', 'geographically', 'diversified', 'sales', 'facilitate', 'growth', 'key', 'markets', 'including', 'asia', 'pacific', 'region', 'china', 'north', 'america', 'middle', 'east', 'europe', 'united', 'kingdom', 'past', '16', 'years', 'dealer', 'network', 'undergone', 'extensive', 'expansion', 'grown', '61', 'dealerships', '19', 'countries', '2000', '165', 'dealers', '52', 'countries', '2016', 'aston', 'martin', 'well', 'positioned', 'within', 'hls', 'segment', 'automotive', 'market', 'experienced', 'significant', 'growth', 'due', 'sustained', 'growth', 'number', 'wealth', 'high', 'net', 'worth', 'individuals', 'hnwi', 'hnwi', 'wealth', 'nearly', 'tripled', 'last', 'decade', 'growth', 'number', 'wealth', 'hnwi', 'positively', 'correlated', 'growth', 'potential', 'clientele', 'stand', 'greatly', 'benefit', 'large', 'diversified', 'global', 'dealer', 'network', 'dealers', 'well', 'positioned', 'attractive', 'key', 'growth', 'markets', 'provide', 'us', 'critical', 'resources', 'help', 'us', 'take', 'advantage', 'trend', 'establish', 'aston', 'martin', 'brand', 'unique', 'design', 'engineering', 'capabilities', 'advanced', 'technology', 'state', 'art', 'facility', 'consistently', 'develop', 'manufacture', 'luxury', 'vehicles', 'believe', 'seamlessly', 'combine', 'customers', 'demands', 'technologically', 'advanced', 'cars', 'maintaining', 'traditional', 'style', 'beauty', 'essence', 'aston', 'martin', 'brand', 'creators', 'beautiful', 'cars', 'business', 'supported', 'award', 'winning', 'design', 'capabilities', 'distinctive', 'model', 'line', 'ups', 'product', 'development', 'design', 'team', '747', 'designers', 'engineers', 'several', 'prestigious', 'design', 'awards', 'car', 'design', 'year', '2016', 'salone', 'dell', 'auto', 't3', 'design', 'year', '2016', 'db11', 'product', 'launch', 'able', 'showcase', 'evolving', 'style', 'influenced', 'changing', 'tastes', 'demands', 'consumer', 'base', 'maintaining', 'elements', 'design', 'historically', 'defined', 'continue', 'define', 'aston', 'martin', 'introduction', 'db11', 'prime', 'example', 'ability', 'successfully', 'introduce', 'aston', 'martin', 'car', 'distinctively', 'new', 'yet', 'unequivocally', 'aston', 'martin', 'design', 'products', 'beautifully', 'designed', 'crafted', 'embodying', 'elements', 'sophistication', 'elegance', 'proudly', 'hold', 'brand', 'incredibly', 'high', 'standard', 'order', 'cars', 'earn', 'iconic', 'aston', 'martin', 'wings', 'must', 'undergo', 'final', '175', 'point', 'inspection', 'concludes', 'inspector', 'name', 'stamped', 'engine', 'bay', 'mark', 'quality', 'aston', 'martin', 'wings', 'affixed', 'beautifully', 'crafted', 'cars', 'world', 'class', 'technical', 'capabilities', 'used', 'modular', 'architecture', 'basis', 'models', '12', 'years', 'starting', 'db9', '2004', 'introduction', 'db11', 'revitalised', 'product', 'portfolio', 'introduced', 'new', 'modular', 'architecture', 'including', 'revised', 'aluminum', 'body', 'structure', 'electrical', 'electronic', 'architecture', 'infotainment', 'system', 'efficient', 'v12', 'engine', 'signifying', 'next', 'step', 'implementation', 'second', 'century', 'plan', 'updated', 'advanced', 'world', 'class', 'modular', 'architecture', 'backbone', 'product', 'portfolio', 'employs', 'carry', 'carry', 'across', 'principle', 'key', 'systems', 'components', 'reduce', 'engineering', 'cost', 'complexity', 'following', 'models', 'invested', 'significantly', 'modular', 'architecture', 'db11', 'intend', 'develop', 'future', 'models', 'based', 'architecture', 'highly', 'flexible', 'modular', 'architecture', 'allows', 'high', 'degree', 'product', 'differentiation', 'enables', 'us', 'easily', 'adapt', 'production', 'new', 'models', 'thereby', 'reducing', 'production', 'development', 'costs', 'incremental', 'models', 'based', 'architecture', 'reduced', 'carbon', 'dioxide', 'co2', 'output', 'european', 'fleet', '30', 'last', 'sixteen', 'years', '470', 'g', 'km', '312', 'g', 'km', 'introduction', 'improved', 'materials', 'technologies', 'including', 'lightweight', 'bonded', 'aluminum', 'body', 'structure', 'efficient', 'engines', 'transmissions', 'use', 'composite', 'carbon', 'fiber', 'panels', 'lightweight', 'components', 'targeting', 'reductions', '285', 'g', 'km', '2021', 'example', 'ongoing', 'improvements', 'past', 'decade', '2006', 'final', 'db9', 'model', '2016', 'reduced', 'co2', 'emissions', 'db9', '23', 'increasing', 'power', 'output', '20', '94', 'utilized', 'added', 'efficiency', 'developing', 'db11', 'db9', 'replacement', '18', 'efficient', 'predecessor', 'similarly', 'since', 'launch', 'v8', 'vantage', 'model', '2005', 'reduced', 'co2', 'emissions', '27', 'enhancing', 'competitiveness', 'power', 'increase', '13', 'believe', 'bonded', 'aluminium', 'body', 'structure', 'use', 'lightweight', 'materials', 'including', 'carbon', 'fiber', 'certain', 'models', 'modular', 'approach', 'combined', 'recent', 'continuing', 'efforts', 'maintain', 'performance', 'decreasing', 'emissions', 'demonstrates', 'valuable', 'industry', 'leading', 'capabilities', 'highly', 'scalable', 'efficient', 'manufacturing', 'capabilities', 'state', 'art', 'facility', 'gaydon', 'facility', 'houses', 'manufacturing', 'facility', 'design', 'team', 'senior', 'management', 'adding', 'element', 'collaboration', 'would', 'not', 'expected', 'largeproduction', 'manufacturing', 'facilities', 'opened', '2003', 'highly', 'modern', 'advanced', 'manufacturing', 'facility', 'result', 'investments', 'gaydon', 'created', 'factory', 'fundamental', 'infrastructure', 'support', 'flexible', 'production', 'capacity', 'able', 'expand', 'production', 'limited', 'additional', 'investment', 'flexibility', 'enabled', 'us', 'lower', 'costs', 'periods', 'economic', 'uncertainty', 'declining', 'sales', 'also', 'permitted', 'us', 'increase', 'production', 'capacity', 'meet', 'expected', 'unit', 'growth', 'case', 'introduction', 'db11', 'gaydon', 'facility', 'also', 'boasts', 'highly', 'flexible', 'employee', 'base', 'trained', 'production', 'station', 'models', 'allows', 'us', 'add', 'reduce', 'personnel', 'needed', 'flexible', 'employee', 'base', 'allows', 'us', 'accommodate', 'production', 'requirements', 'shift', 'employees', 'across', 'different', 'areas', 'production', 'order', 'maximize', 'production', 'capacity', 'utilization', 'able', 'increase', 'production', 'volumes', 'production', 'line', 'rate', 'increases', 'additional', 'shifts', 'extra', 'working', 'days', 'production', 'db11', 'introduced', 'new', 'lean', 'manufacturing', 'techniques', 'implemented', 'throughout', 'production', 'process', 'yielded', 'efficiency', 'savings', 'unique', 'business', 'model', 'built', 'around', 'second', 'century', 'plan', 'drive', 'revenues', 'cash', 'flow', 'shareholders', 'management', 'team', 'provided', 'clear', 'strategic', 'guidance', 'company', 'since', 'came', 'board', 'second', 'century', 'plan', 'focused', 'three', 'key', 'principles', 'one', 'two', 'new', 'core', 'models', 'derivatives', 'per', 'year', 'self', 'funding', 'business', 'model', 'three', 'pillar', 'strategy', 'detailed', 'stable', 'constant', 'new', 'products', 'invested', 'significantly', 'aston', 'martin', 'product', 'offerings', 'diverse', 'product', 'portfolio', 'five', 'core', 'models', 'variations', 'core', 'models', 'addition', 'special', 'edition', 'models', 'recently', 'announced', 'aston', 'martin', 'valkyrie', 'second', 'century', 'plan', 'intend', 'introduce', 'one', 'two', 'new', 'core', 'models', 'derivatives', 'models', 'year', 'next', 'seven', 'years', 'first', 'car', 'plan', 'db11', 'enthusiastically', 'received', 'market', 'generated', 'strong', 'sales', 'orders', 'outpacing', 'production', 'availability', 'order', 'book', 'march', '1', '2017', 'included', '1', '438', '993', 'db11', 'orders', 'orders', 'production', 'period', 'march', '1', '2017', 'may', '31', '2017', 'primarily', 'result', 'higher', 'sales', 'volumes', 'driven', 'db11', 'launch', 'second', 'century', 'plan', 'revenue', 'ebitda', 'net', 'cash', 'flows', 'operating', 'activities', 'grew', '593', '5', 'million', '100', '9', 'million', '164', '4', 'million', 'respectively', 'year', 'ended', 'december', '31', '2016', '510', '2', 'million', '61', '2', 'million', '75', '2', 'million', 'respectively', 'year', 'ended', '2015', 'pro', 'forma', 'adjusted', 'february', 'ltm', 'ebitda', 'twelve', 'months', 'ended', 'february', '28', '2017', 'would', '161', '0', 'million', 'believe', 'second', 'century', 'plan', 'strong', 'executive', 'management', 'leadership', 'achieve', 'profitable', 'growth', 'self', 'sustaining', 'business', 'three', 'pillar', 'strategy', 'current', 'model', 'line', 'addresses', 'high', 'luxury', 'sport', 'hls', 'segment', 'currently', 'primarily', 'focused', 'sports', 'cars', 'second', 'century', 'plan', 'transitioning', 'three', 'pillar', 'product', 'strategy', 'sports', 'cars', 'suvs', 'sedans', 'based', 'flexible', 'architecture', 'enables', 'us', 'easily', 'adapt', 'production', 'new', 'models', 'thereby', 'reducing', 'production', 'development', 'costs', 'incremental', 'models', 'believe', 'introduction', '95', 'one', 'two', 'new', 'core', 'models', 'derivatives', 'models', 'every', 'year', 'second', 'century', 'plan', 'continue', 'support', 'highly', 'attractive', 'cash', 'flow', 'model', 'provide', 'us', 'capital', 'cost', 'flexibility', 'anticipate', 'launch', 'next', 'generation', 'four', 'door', 'sports', 'sedan', '2020', 'anticipate', 'funded', 'future', 'cash', 'flows', 'production', 'model', 'funds', 'working', 'capital', 'requirements', 'aston', 'martin', 'produces', 'vehicles', 'client', 'order', 'whether', 'actual', 'final', 'customer', 'dealer', 'customers', 'additionally', 'required', 'pay', 'range', 'deposits', 'get', 'access', 'waiting', 'list', 'special', 'edition', 'models', 'approach', 'allows', 'us', 'efficiently', 'manage', 'working', 'capital', 'positively', 'support', 'cash', 'flows', 'wait', 'lists', 'range', 'three', 'months', 'several', 'years', 'special', 'editions', 'cases', 'aston', 'martin', 'valkyrie', 'db4', 'gt', 'vanquish', 'zagato', 'deposits', 'already', 'funded', 'entire', 'working', 'capital', 'needed', 'deliver', 'upcoming', 'project', 'well', 'advance', 'production', 'commencing', 'able', 'manage', 'working', 'capital', 'requirements', 'orders', 'model', 'can', 'not', 'unilaterally', 'cancelled', 'dealers', 'production', 'begun', 'approximately', 'twelve', 'weeks', 'prior', 'delivery', 'experienced', 'management', 'team', 'long', 'term', 'committed', 'shareholders', 'highly', 'experienced', 'respected', 'senior', 'management', 'team', 'led', 'ceo', 'dr', 'andrew', 'palmer', 'personally', 'inspected', 'signed', 'first', '1', '000', 'db11s', 'produced', 'demonstrating', 'top', 'commitment', 'quality', 'aston', 'martin', 'brand', 'senior', 'management', 'team', 'comprised', 'senior', 'automotive', 'executives', 'extensive', 'experience', 'automotive', 'industry', 'supportive', 'shareholders', 'also', 'committed', 'brand', 'made', 'significant', 'investments', 'aston', 'martin', 'second', 'century', 'plan', 'believe', 'shareholders', 'believe', 'rejuvenate', 'business', 'materially', 'positive', 'effect', 'business', 'whole', 'believe', 'experience', 'industry', 'knowledge', 'leadership', 'senior', 'management', 'team', 'continued', 'support', 'shareholders', 'contributed', 'success', 'help', 'us', 'implement', 'strategy', 'described', 'continue', 'achieve', 'profitable', 'growth', 'strategies', 'leader', 'performance', 'luxury', 'car', 'market', 'due', 'iconic', 'exclusive', 'brand', 'unique', 'design', 'engineering', 'capabilities', 'business', 'model', 'built', 'around', 'second', 'century', 'plan', 'experienced', 'management', 'team', 'supportive', 'shareholders', 'aim', 'achieve', 'profitable', 'growth', 'enhance', 'cash', 'flow', 'generation', 'pursuing', 'strategy', 'focused', 'continuously', 'renewing', 'product', 'offerings', 'expansion', 'new', 'existing', 'markets', 'order', 'achieve', 'goals', 'pursuing', 'following', 'strategies', 'near', 'term', 'growth', 'pinned', 'strong', 'product', 'offerings', 'strategic', 'business', 'plan', 'second', 'century', 'plan', 'focuses', 'new', 'product', 'launches', 'new', 'derivatives', 'refurbishments', 'existing', 'models', 'scheduled', 'next', 'years', 'based', 'successful', 'launch', 'db11', 'expect', 'future', 'launches', 'second', 'century', 'plan', 'key', 'driver', 'revenue', 'profit', 'growth', 'intend', 'introduce', 'average', 'one', 'two', 'new', 'core', 'models', 'derivatives', 'existing', 'models', 'year', 'next', 'seven', 'years', 'response', 'consumer', 'demand', 'line', 'strategy', 'diversify', 'customer', 'offering', 'introduce', 'fresh', 'products', 'year', 'begun', 'research', 'development', 'respect', 'electrification', 'suv', '2015', 'announced', 'dbx', 'first', 'suv', 'produced', 'facility', 'st', 'athan', 'wales', 'currently', 'construction', 'address', 'fastest', 'growing', 'part', 'car', 'market', 'stylish', 'luxurious', 'vehicle', 'also', 'practical', 'family', 'friendly', 'believe', 'products', 'dbx', 'allow', 'us', 'address', 'new', 'markets', 'diversify', 'profitably', 'increase', 'revenue', 'stream', 'also', 'intend', 'continue', 'leverage', 'aston', 'martin', 'brand', 'design', 'technology', 'engineering', 'strengths', 'take', 'advantage', 'flexible', 'manufacturing', 'facility', 'pursue', 'opportunities', 'attractive', 'market', 'niches', 'example', 'anticipate', 'late', '2018', 'begin', 'production', 'fully', 'electric', 'concept', 'rapide', 'four', 'door', 'sports', 'coupe', 'known', 'rapide', 'targeting', 'niche', 'market', 'hnwi', 'market', 'environmentally', 'friendly', 'luxury', 'cars', '96', 'determining', 'number', 'cars', 'produce', 'year', 'try', 'achieve', 'balance', 'volume', 'cars', 'produce', 'brand', 'exclusivity', 'balance', 'central', 'production', 'philosophy', 'believe', 'increase', 'production', 'much', 'meet', 'demand', 'could', 'lead', 'brand', 'dilution', 'therefore', 'result', 'erosion', 'consumer', 'demand', 'cars', 'currently', 'believe', 'optimal', 'balance', 'around', '7', '000', 'sports', 'cars', 'per', 'year', 'deepen', 'penetration', 'existing', 'markets', 'expand', 'new', 'markets', 'well', 'positioned', 'within', 'hls', 'segment', 'automotive', 'market', 'experienced', 'significant', 'global', 'growth', 'due', 'proliferation', 'hnwi', 'increasing', 'availability', 'certain', 'hls', 'cars', 'among', 'individuals', 'current', 'strategy', 'actively', 'seeking', 'gain', 'better', 'foothold', 'emerging', 'markets', 'asia', 'pacific', 'region', 'experienced', 'hnwi', 'growth', 'currently', 'represented', 'could', 'provide', 'us', 'significant', 'growth', 'potential', 'may', 'well', 'positioned', 'meet', 'growing', 'demand', 'hls', 'cars', 'markets', 'intend', 'increase', 'sales', 'emerging', 'markets', 'markets', 'expanding', 'dealer', 'network', 'regions', 'investing', 'strengthening', 'brand', 'power', 'markets', 'also', 'intend', 'capitalize', 'potential', 'increasing', 'penetration', 'established', 'markets', 'united', 'states', 'management', 'existing', 'dealers', 'appointment', 'additional', 'dealers', 'increasing', 'brand', 'awareness', 'core', 'second', 'century', 'plan', 'enhanced', 'ability', 'successfully', 'enter', 'new', 'markets', 'achieve', 'higher', 'penetration', 'existing', 'markets', 'considered', 'deliberate', 'targeting', 'broader', 'range', 'customers', 'plan', 'continue', 'support', 'growth', 'balanced', 'geographical', 'mix', 'sales', 'order', 'minimize', 'dependence', 'given', 'region', 'expanding', 'new', 'regions', 'attract', 'growing', 'customer', 'base', 'focus', 'cash', 'flow', 'generation', 'cost', 'savings', 'support', 'future', 'deleveraging', 'committed', 'pursuing', 'available', 'revenue', 'generating', 'opportunities', 'manner', 'generates', 'high', 'incremental', 'return', 'investments', 'key', 'priorities', 'develop', 'new', 'products', 'focus', 'new', 'growth', 'areas', 'increase', 'revenue', 'implement', 'cost', 'savings', 'thereby', 'achieve', 'operationally', 'driven', 'deleveraging', 'medium', 'term', 'combination', 'growth', 'ebitda', 'combined', 'cash', 'flow', 'generation', 'second', 'part', 'second', 'century', 'plan', 'expect', 'advances', 'modular', 'based', 'engineering', 'allows', 'us', 'use', 'shared', 'systems', 'components', 'reduce', 'engineering', 'complexities', 'result', 'cost', 'saving', 'model', 'synergies', 'going', 'forward', 'body', 'structure', 'cars', 'comprised', 'number', 'common', 'structures', 'provides', 'flexibility', 'overall', 'car', 'dimensions', 'wheelbase', 'front', 'rear', 'overhangs', 'maximum', 'component', 'commonality', 'minimizing', 'engineering', 'tooling', 'investment', 'time', 'market', 'therefore', 'reducing', 'working', 'capital', 'requirements', 'addition', 'flexibility', 'structure', 'modular', 'strategy', 'enables', 'optimization', 'common', 'systems', 'components', 'chassis', 'system', 'steering', 'systems', 'infotainment', 'systems', 'heating', 'ventilation', 'air', 'conditioning', 'components', 'enabling', 'us', 'deliver', 'range', 'products', 'efficient', 'investment', 'levels', 'example', 'believe', 'following', 'investment', 'modular', 'architecture', 'employs', 'carry', 'carry', 'across', 'principle', 'key', 'systems', 'components', 'introduced', 'db11', 'new', 'vanquish', 'new', 'vantage', 'require', 'approximately', '51', '87', 'less', 'capital', 'expenditure', 'db11', 'respectively', 'expect', 'hit', 'peak', 'capital', 'expenditures', 'near', 'term', 'generation', 'vehicles', 'aim', 'fund', 'capital', 'expenditure', 'working', 'capital', 'cash', 'flows', 'operations', 'addtion', 'expect', 'anticipated', 'ebitda', 'growth', 'improved', 'cash', 'positions', 'allow', 'us', 'delever', 'near', 'term', 'enhance', 'strategic', 'partnerships', 'key', 'partners', 'believe', 'carefully', 'chosen', 'partnerships', 'source', 'technical', 'expertise', 'brand', 'strengthening', 'future', 'growth', 'significant', 'strategic', 'partnership', 'daimler', 'ag', 'develop', 'supply', 'high', 'powered', 'bespoke', 'v8', 'powertrains', 'future', 'models', 'enable', 'us', 'access', 'cutting', 'edge', 'technology', 'including', 'electronical', 'electronic', 'systems', 'addition', 'widely', 'anticipated', 'aston', 'martin', 'red', 'bull', 'co', 'designed', 'hyper', 'car', 'aston', 'martin', 'valkyrie', 'product', 'strategic', 'partnership', 'red', 'bull', 'technologies', 'aston', 'martin', 'valkyrie', 'official', 'name', 'unveiling', 'geneva', 'motor', 'show', 'generated', 'piqued', 'interest', 'aston', 'martin', '150', 'road', 'car', 'version', 'units', 'aston', 'martin', 'valkyries', 'slated', 'production', '97', 'already', 'allocated', 'partnership', 'red', 'bull', 'technologies', 'including', 'sponsorship', 'formula', 'one', 'team', 'given', 'us', 'global', 'brand', 'exposure', 'particularly', 'key', 'growth', 'markets', 'created', 'opportunity', 'share', 'technology', 'processes', 'advanced', 'form', 'racing', 'also', 'launched', 'aston', 'martin', 'consulting', '2016', 'collaborate', 'companies', 'share', 'expertise', 'design', 'manufacturing', 'engineering', 'believe', 'current', 'partnerships', 'future', 'partnerships', 'continue', 'result', 'exceptional', 'products', 'help', 'us', 'achieve', 'profitable', 'growth', 'cars', 'products', 'include', 'range', 'core', 'models', 'addition', 'special', 'edition', 'models', 'current', 'model', 'line', 'comprises', 'five', 'core', 'models', 'including', 'two', 'sports', 'cars', 'v8', 'vantage', 'v12', 'vantage', 'one', 'grand', 'tourer', 'new', 'db11', 'one', 'four', 'door', 'sports', 'coupe', 'rapide', 'one', 'super', 'car', 'vanquish', 'models', 'available', 'different', 'core', 'models', 'including', 'coupe', 'convertible', 'models', 'brand', 'volante', 'models', 'two', 'front', 'seats', 'small', 'backseat', 'roadster', 'models', 'two', 'front', 'seats', 'addition', 'core', 'range', 'regularly', 'produce', 'special', 'edition', 'models', 'limited', 'quantities', 'like', 'aston', 'martin', 'valkyrie', 'limited', '150', 'units', 'road', 'car', 'version', 'part', 'second', 'century', 'plan', 'program', 'product', 'refreshment', 'enhancement', 'intend', 'introduce', 'one', 'two', 'new', 'core', 'models', 'derivatives', 'every', 'year', 'next', 'seven', 'years', 'model', 'lineup', 'addresses', 'high', 'luxury', 'sports', 'segment', 'currently', 'focused', 'sports', 'cars', 'however', 'response', 'consumer', 'demand', 'line', 'strategy', 'part', 'second', 'century', 'plan', 'diversify', 'introduce', 'fresh', 'products', 'year', 'whether', 'new', 'models', 'derivatives', 'exiting', 'models', 'transition', 'three', 'pillar', 'product', 'strategy', 'sport', 'cars', 'db11', 'ii', 'suvs', 'dbx', 'iii', 'sedans', 'lagonda', 'taraf', 'year', 'ended', 'december', '31', '2016', 'sold', '3', '687', 'cars', 'produced', 'car', 'sale', 'revenues', '593', '5', 'million', 'db11', 'db11', 'current', 'flagship', 'model', 'first', 'produced', '2016', 'db11', 'debuted', 'geneva', 'motor', 'show', 'march', '2016', 'first', 'product', 'launched', 'second', 'century', 'plan', 'db11', 'available', 'v12', 'engine', 'two', 'door', 'coupe', 'powered', 'new', 'twinturbo', 'v12', 'engine', 'making', 'first', 'turbocharged', 'series', 'production', 'aston', 'martin', 'first', '1', '000', 'db11s', 'personally', 'inspected', 'president', 'chief', 'executive', 'officer', 'dr', 'andrew', 'palmer', 'db11', 'also', 'introduced', 'updated', 'advanced', 'modular', 'architecture', 'plan', 'use', 'base', 'cycles', 'core', 'models', 'new', 'electronic', 'architecture', 'infotainment', 'system', 'product', 'partnership', 'daimler', 'ag', 'customer', 'work', 'award', 'winning', 'design', 'team', 'completely', 'customize', 'db11', 'adding', 'personalized', 'distinctive', 'touches', 'paint', 'interior', 'finishes', 'db11', 'built', 'gaydon', 'uk', 'plant', 'msrp', '154', '900', '167', '015', 'v8', 'vantage', '98', 'v8', 'vantage', 'launched', '2005', 'one', 'popular', 'models', 'new', 'db11', '20', '700', 'cars', 'sold', 'since', '2005', 'v8', 'vantage', 'enhanced', 'performance', 'version', 'v8', 'vantage', 'based', 'vantage', 'gt4', 'race', 'car', 'launched', 'january', '2011', 'v8', 'vantage', 'available', 'two', 'door', 'two', 'seat', 'coupe', 'soft', 'top', 'roadster', 'marketed', 'high', 'performance', 'sports', 'car', '4', '7', 'ltr', 'v8', 'engine', 'developed', 'flexibility', 'performance', 'produced', 'gaydon', 'plant', 'suggested', 'retail', 'price', 'msrp', 'v8', 'vantage', '92', '795', '106', '795', 'v12', 'vantage', 'based', 'v8', 'vantage', 'v12', 'vantage', 'features', 'v12', 'engine', 'designed', 'aggressive', 'sports', 'car', 'combining', 'v12', 'engine', 'lightest', 'sports', 'car', 'v12', 'vantage', 'launched', 'may', '2013', 'available', 'two', 'door', 'two', 'seat', 'coupe', 'soft', 'top', 'roadster', 'v12', 'vantage', 'built', 'gaydon', 'plant', 'msrp', '140', '495', '149', '495', 'rapide', 'introduced', 'rapide', 'four', 'door', 'high', 'performance', 'sports', 'car', 'product', 'range', '2013', 'follow', 'rapide', 'rapide', 'intended', 'functional', 'yet', 'luxurious', 'sports', 'car', 'provides', 'comfortable', 'seating', 'four', 'adults', 'retains', 'driving', 'experience', 'synonymous', 'aston', 'martin', 'cars', 'rapide', 'designed', 'sporting', 'coupe', 'updated', '2015', 'rapide', 'aims', 'offer', 'high', 'speed', 'long', 'distance', 'cruising', 'ability', 'built', 'gaydon', 'facility', 'msrp', 'rapide', '149', '500', 'vanquish', 'initially', 'launched', '2012', 'updated', '2016', 'vanquish', 'coupe', 'flagship', 'grand', 'tourer', 'designed', 'combine', 'presence', 'performance', 'v12', 'engine', 'sports', 'car', 'opulence', 'luxury', 'grand', 'tourer', 'super', 'grand', 'tourer', 'soft', 'top', 'model', 'referred', 'vanquish', 'volante', 'vanquish', 'also', 'produced', 'gaydon', 'facility', 'sits', 'top', 'aston', 'martin', 'model', 'range', 'msrp', 'vanquish', '199', '950', '211', '950', 'vanquish', 'volante', '99', 'special', 'edition', 'models', 'also', 'regularly', 'produce', 'special', 'edition', 'models', 'typically', 'higher', 'price', 'standard', 'models', 'special', 'edition', 'models', 'recently', 'included', 'vantage', 'gt12', 'vantage', 'gt8', 'lagonda', 'taraf', 'vanquish', 'zagato', 'coupe', 'aston', 'martin', 'vulcan', 'forthcoming', 'models', 'include', 'vanquish', 'zagato', 'volante', 'db4', 'gt', 'aston', 'martin', 'valkyrie', 'based', 'v8', 'vantage', 'vantage', 'gt12', 'vantage', 'gt8', 'bridge', 'gap', 'road', 'race', 'track', 'driving', 'limited', 'production', 'vantage', 'gt12', '100', 'cars', 'produced', 'october', '2015', 'may', '2016', 'fully', 'sold', 'production', 'vantage', 'gt8', 'limited', '150', 'cars', 'production', 'vantage', 'gt8', 'began', 'october', '2016', 'expect', 'run', 'june', '2017', 'units', 'produced', 'sold', 'deposits', 'received', 'msrp', 'vantage', 'gt12', '250', '000', 'msrp', 'vantage', 'gt8', '165', '000', 'models', 'pre', 'sold', 'deposits', 'received', 'new', 'bespoke', 'super', 'saloon', 'lagonda', 'taraf', 'sees', 'revival', 'historic', 'lagonda', 'marque', 'v12', 'engine', 'limited', 'numbers', 'series', 'lagonda', 'taraf', 'offered', 'predominantly', 'middle', 'east', 'uk', 'european', 'markets', 'msrp', 'uk', 'base', 'model', '696', '000', 'aston', 'martin', 'vulcan', 'carbon', 'fiber', 'v12', 'track', 'supercar', 'production', 'limited', '24', 'cars', 'aston', 'martin', 'vulcan', 'msrp', '1', '8', 'million', 'fully', 'sold', 'vanquish', 'also', 'available', 'zagato', 'specification', 'collaboration', 'italian', 'design', 'house', 'limited', 'production', 'run', '99', 'cars', 'vanquish', 'zagato', 'coupe', 'vanquish', 'zagato', 'volante', 'msrp', '525', '000', 'vanquish', 'zagato', 'coupe', '575', '000', 'vanquish', 'zagato', 'volante', 'customer', 'deliveries', 'vanquish', 'zagato', 'coupe', 'began', 'december', '2016', 'customer', 'deliveries', 'vanquish', 'zagato', 'volante', 'set', 'begin', 'fourth', 'quarter', '2017', 'also', 'plan', 'release', 'special', 'edition', 'db4', 'gt', 'constructed', 'original', '1963', 'lightweight', 'specification', 'production', 'run', 'limited', '25', 'cars', 'sold', 'customers', 'package', 'consisting', 'access', 'racetrack', 'customer', 'use', 'db4', 'gt', 'two', '100', 'year', 'driver', 'experience', 'program', 'cars', 'sold', 'expect', 'customer', 'deliveries', 'made', 'throughout', '2017', 'run', 'db4', 'gts', 'msrp', '1', '5', 'million', 'newest', 'forthcoming', 'special', 'edition', 'aston', 'martin', 'valkyrie', 'result', 'partnership', 'red', 'bull', 'technologies', 'announced', 'aston', 'martin', 'valkyrie', 'official', 'name', 'march', '2017', 'geneva', 'motor', 'show', 'addition', 'select', 'specification', 'information', 'aston', 'martin', 'valkyrie', '6', '5', 'liter', 'naturally', 'aspirated', 'v12', 'engine', 'sport', 'michelin', 'pilot', 'sport', 'cup', '2', 'tires', 'aston', 'martin', 'valkyrie', 'latest', 'hyper', 'car', 'road', 'car', 'version', 'track', 'version', 'first', 'deliveries', 'aston', 'martin', 'valkyrie', 'anticipated', 'commence', '2019', 'december', '2016', '150', 'road', 'car', 'versions', 'allocated', 'q', 'aston', 'martin', 'q', 'aston', 'martin', 'unique', 'personalization', 'service', 'aston', 'martin', 'truly', 'reflects', 'customer', 'working', 'closely', 'aston', 'martin', 'award', 'winning', 'design', 'team', 'every', 'q', 'customer', 'ability', 'create', 'completely', 'customized', 'car', 'q', 'aston', 'martin', 'relaunched', '2017', 'geneva', 'motor', 'show', 'showcasing', 'enhanced', 'offering', 'two', 'defined', 'categories', 'q', 'aston', 'martin', 'collection', 'brings', 'array', 'distinctive', 'design', 'touches', 'exclusive', 'trim', 'enhancements', 'added', 'car', 'point', 'specification', 'installed', 'hand', 'finished', 'gaydon', 'headquarters', 'going', 'beyond', 'standard', 'options', 'list', 'collection', 'includes', 'exclusive', 'paint', 'upholstery', 'colors', 'material', 'finishes', 'craft', 'elements', 'range', 'unique', 'leather', 'quilt', 'upholstery', 'pattern', 'tinted', 'wheel', 'finishes', 'incorporate', 'body', 'colored', 'blades', 'diamond', 'turned', 'spokes', 'well', 'use', 'new', 'wood', 'leather', 'interior', 'elements', 'q', 'aston', 'martin', 'commission', 'process', 'involves', 'personal', 'collaboration', 'aston', 'martin', 'design', 'team', 'customers', 'select', 'model', 'work', 'aston', 'martin', 'design', 'team', 'customize', 'interior', 'exteriors', 'finest', 'details', 'leading', 'ultimately', 'production', 'car', 'customer', 'exact', 'specifications', 'commission', 'results', 'entirely', 'unique', 'car', 'aston', 'martin', 'long', 'storied', 'history', 'building', 'individual', 'cars', 'working', 'alongside', 'true', 'enthusiasts', 'wish', 'see', 'vision', 'translated', 'something', 'never', 'seen', 'examples', 'previous', 'commissions', 'q', 'aston', 'martin', 'include', 'cc', '100', 'speedster', 'concept', 'created', 'company', 'centenary', '2013', 'vantage', 'gt12', 'roadster', 'one', 'open', 'top', 'version', 'extreme', '600ps', 'race', 'bred', 'vantage', 'gt12', 'coupe', 'aston', 'martin', 'global', 'dealership', 'network', 'also', 'working', 'closely', 'commission', 'create', 'ultra', 'limited', 'run', 'series', 'features', 'design', 'elements', 'distinct', 'regions', 'customers', 'second', 'century', 'plan', '2014', 'introduced', 'new', 'second', 'century', 'plan', 'based', 'three', 'key', 'principles', 'one', 'two', 'new', 'core', 'models', 'derivatives', 'per', 'year', 'ii', 'creation', 'self', 'sustaining', 'business', 'iii', 'diversifying', 'portfolio', 'products', 'cover', 'sports', 'cars', 'suvs', 'sedans', 'also', 'know', 'three', 'pillar', 'strategy', 'plan', 'four', 'phases', 'business', 'stabilization', 'core', 'strengthening', 'expansion', 'products', 'portfolio', 'culminating', 'final', 'phase', 'solidify', 'position', 'self', 'sustaining', 'luxury', 'business', 'begun', 'transition', 'phase', 'two', 'phase', 'three', 'plan', 'following', 'successful', 'introduction', 'db11', 'announcement', 'dbx', 'unveiling', 'aston', 'martin', 'valkyrie', 'planned', 'new', 'models', 'updates', 'existing', 'fleet', 'part', 'six', 'year', 'second', 'century', 'plan', 'program', 'product', 'refreshment', 'enhancement', 'intend', 'introduce', 'one', 'two', 'new', 'core', 'models', 'derivatives', 'every', 'year', 'next', 'seven', 'years', 'addition', 'plan', 'release', 'average', 'per', 'year', 'next', 'three', 'years', 'two', 'special', 'edition', 'models', 'last', 'four', 'years', 'made', 'significant', 'investments', 'new', 'vehicle', 'platform', 'culminating', 'introduction', 'new', 'improved', 'modular', 'architecture', 'introduced', 'successful', 'launch', 'db11', 'intend', 'develop', 'future', 'models', 'based', 'new', 'modular', 'architecture', 'used', 'db11', 'employs', 'carry', 'carry', 'across', 'principle', 'key', 'systems', 'components', 'intend', 'continue', 'collaborate', 'partners', 'done', 'past', 'opportunistic', 'basis', 'produce', 'new', 'cars', 'second', 'century', 'plan', '101', '2015', 'announced', 'high', 'luxury', 'dbx', 'first', 'suv', 'produced', 'new', 'st', 'athan', 'facility', 'believe', 'dbx', 'widen', 'appeal', 'aston', 'martin', 'brand', 'intended', 'capture', 'diverse', 'global', 'audience', 'due', 'practical', 'family', 'friendly', 'characteristics', 'expect', 'launch', 'dbx', '2019', 'production', 'made', 'significant', 'investments', 'manufacturing', 'facilities', 'enable', 'us', 'expand', 'production', 'capacity', 'meet', 'expected', 'unit', 'growth', 'limited', 'additional', 'investment', 'addition', 'cars', 'based', 'advanced', 'aluminium', 'body', 'structure', 'utilizes', 'lightweight', 'aerospace', 'technologies', 'allows', 'flexible', 'profitable', 'manufacturing', 'low', 'volumes', 'easy', 'adaptation', 'new', 'models', 'limited', 'additional', 'investment', 'architecture', 'significantly', 'improved', 'db11', 'form', 'basis', 'next', 'generation', 'vehicles', 'also', 'utilizes', 'number', 'common', 'structures', 'reducing', 'tooling', 'investment', 'new', 'model', 'production', 'also', 'highly', 'flexible', 'employee', 'base', 'trained', 'production', 'stations', 'models', 'allows', 'us', 'add', 'reduce', 'personnel', 'needed', 'accommodate', 'production', 'needs', 'well', 'shift', 'employees', 'across', 'different', 'areas', 'production', 'order', 'maximize', 'production', 'capacity', 'december', '31', '2016', 'manufacturing', 'quality', 'team', 'comprised', '994', 'employees', 'ensure', 'production', 'processes', 'meet', 'highest', 'standards', 'quality', 'engineering', 'sophistication', 'expenditure', 'related', 'bringing', 'new', 'plant', 'st', 'athan', 'line', 'expect', 'majority', 'future', 'capital', 'expenditures', 'driven', 'introduction', 'new', 'models', 'upgrades', 'existing', 'models', 'thus', 'directly', 'linked', 'incremental', 'revenue', 'result', 'expect', 'incremental', 'economics', 'growth', 'continue', 'exceed', 'profitability', 'existing', 'business', 'highly', 'efficient', 'flexible', 'manufacturing', 'operations', 'also', 'provide', 'us', 'resilience', 'economic', 'downturns', 'manufacturing', 'facilities', 'partnerships', 'gaydon', 'uk', 'primary', 'production', 'facility', 'located', 'gaydon', 'uk', 'gaydon', 'facility', 'houses', 'manufacturing', 'facility', 'design', 'team', 'senior', 'management', 'tailor', 'built', 'aston', 'martin', 'opened', '2003', 'gaydon', 'highly', 'modern', 'advanced', 'manufacturing', 'facility', 'currently', 'manufacture', 'models', 'gaydon', 'adjust', 'production', 'capacity', 'accommodate', 'expected', 'production', 'needed', 'increase', 'production', 'adding', 'shifts', 'gaydon', 'facility', 'low', 'additional', 'capital', 'expenditures', 'meet', 'expected', 'needs', 'foreseeable', 'future', 'gaydon', 'facility', 'also', 'potential', 'expansion', 'required', '2016', 'quickly', 'increased', 'headcount', 'due', 'production', 'ramp', 'associated', 'orders', 'db11', 'quickly', 'reduce', 'headcount', 'demand', 'products', 'declines', 'engineers', 'technicians', 'typically', 'skilled', 'number', 'areas', 'provides', 'us', 'great', 'degree', 'flexibility', 'production', 'lines', 'flexibility', 'enables', 'us', 'shift', 'employees', 'across', 'product', 'range', 'different', 'areas', 'production', 'enabling', 'us', 'maximize', 'production', 'rate', 'capacity', 'dictated', 'demand', 'also', 'maintain', 'flexibility', 'employees', 'around', 'shifts', 'order', 'maximize', 'production', 'capacity', 'aston', 'martin', 'operates', 'well', 'established', 'production', 'system', 'derived', 'lean', 'manufacturing', 'principles', 'mixture', 'challenging', 'targets', 'employee', 'engagement', 'operations', 'team', 'delivered', 'year', 'year', 'improvements', 'productivity', 'quality', 'st', 'athan', 'uk', '2016', 'announced', 'new', 'manufacturing', 'facility', 'st', 'athan', 'uk', 'construction', 'facility', 'started', 'st', 'athan', 'december', '2016', 'expect', 'full', 'vehicle', 'production', 'commence', '2019', 'currently', 'plan', 'produce', 'dbx', 'st', 'athan', 'plant', 'connection', 'occupation', 'premises', 'st', 'athan', 'plant', 'entered', 'guarantee', 'fee', 'agreement', 'welsh', 'ministers', 'pursuant', 'agreed', 'pay', 'government', 'wales', 'fee', 'exchange', 'guarantee', 'certain', 'obligations', 'lease', 'agreement', '102', 'owner', 'premises', 'st', 'athan', 'plant', 'located', 'see', 'risk', 'factors', 'risks', 'related', 'indebtedness', 'notes', 'may', 'not', 'able', 'generate', 'sufficient', 'cash', 'service', 'indebtedness', 'including', 'due', 'factors', 'outside', 'control', 'may', 'forced', 'take', 'actions', 'satisfy', 'obligations', 'indebtedness', 'may', 'not', 'successful', 'engine', 'production', 'v12', 'certain', 'v8', 'engines', 'advanced', 'modular', 'architecture', 'based', 'cars', 'built', 'ford', 'aston', 'martin', 'branded', 'facility', 'aston', 'martin', 'engine', 'plant', 'ford', 'niehl', 'engine', 'plant', 'cologne', 'germany', 'pursuant', 'long', 'term', 'supply', 'agreement', 'ford', 'werke', 'gmbh', 'dated', 'november', '21', '2012', 'agreement', 'expires', 'december', '31', '2020', 'unless', 'extended', 'parties', 'pre', 'existing', 'intellectual', 'property', 'rights', 'associated', 'engines', 'production', 'licensed', 'us', 'pursuant', 'separate', 'agreement', 'ford', 'new', 'intellectual', 'property', 'rights', 'generated', 'agreement', 'belong', 'party', 'responsible', 'creation', 'event', 'ford', 'disagree', 'responsible', 'ford', 'grant', 'full', 'license', 'use', 'rights', 'although', 'not', 'required', 'make', 'minimum', 'volume', 'engine', 'purchases', 'agreed', 'purchase', 'prices', 'engines', 'basis', 'forecasted', 'volumes', 'orders', 'actual', 'volume', 'orders', 'exceeds', 'specified', 'thresholds', 'forecasted', 'volumes', 'required', 'renegotiate', 'price', 'per', 'unit', 'good', 'faith', 'agreement', 'includes', 'provision', 'allowing', 'us', 'meet', 'ford', 'time', 'throughout', 'term', 'agreement', 'negotiate', 'good', 'faith', 'possible', 'acquisition', 'engine', 'business', 'engine', 'manufacturing', 'assembly', 'business', 'carried', 'ford', 'cologne', 'engine', 'facility', 'assets', 'related', 'thereto', 'related', 'assets', 'fair', 'market', 'value', 'see', 'risk', 'factors', 'risks', 'relating', 'business', 'industry', 'could', 'experience', 'significant', 'disruption', 'production', 'capabilities', 'result', 'dependence', 'limited', 'number', 'key', 'suppliers', 'particular', 'ford', 'daimler', 'daimler', 'technical', 'partnership', 'daimler', 'ag', 'one', 'shareholders', 'provision', 'navigation', 'entertainment', 'systems', 'addition', 'anticipate', 'daimler', 'ag', 'provide', 'us', 'modified', 'm177', 'engine', 'bespoke', 'v8', 'powertrain', 'engine', 'certain', 'future', 'models', 'technical', 'commercial', 'partnership', 'daimler', 'ag', 'began', '2013', 'daimler', 'ag', 'became', 'one', 'shareholders', 'see', 'certain', 'relationships', 'related', 'party', 'transactions', 'daimler', 'agreement', 'manufacturing', 'process', 'manufacturing', 'process', 'gaydon', 'facility', 'comprised', 'chassis', 'production', 'body', 'assembly', 'painting', 'trimming', 'assembly', 'final', 'checks', 'modular', 'architecture', 'advanced', 'modular', 'architecture', 'backbone', 'product', 'portfolio', 'significantly', 'updated', 'db11', 'planned', 'form', 'basis', 'cycle', 'new', 'core', 'models', 'architecture', 'highly', 'flexible', 'integrated', 'modular', 'structure', 'employs', 'carry', 'carry', 'across', 'principle', 'key', 'systems', 'components', 'allows', 'high', 'degree', 'product', 'differentiation', 'includes', 'car', 'body', 'structure', 'well', 'common', 'systems', 'components', 'application', 'flexible', 'architecture', 'enables', 'us', 'produce', 'low', 'volumes', 'cars', 'easily', 'adapt', 'new', 'models', 'thereby', 'reducing', 'production', 'development', 'costs', 'incremental', 'models', 'based', 'architecture', 'aluminium', 'body', 'structure', 'cars', 'comprised', 'number', 'common', 'structures', 'provides', 'flexibility', 'overall', 'car', 'dimensions', 'wheelbase', 'front', 'rear', 'overhangs', 'maximum', 'component', 'commonality', 'minimizing', 'engineering', 'tooling', 'investment', 'time', 'market', 'chassis', 'construction', 'body', 'structure', 'cars', 'comprised', 'limited', 'variety', 'anodized', 'extruded', 'parts', 'aluminum', 'castings', 'formed', 'sheet', 'aluminum', 'bonded', 'together', 'heat', 'cured', 'epoxy', 'adhesive', 'rivets', 'create', 'rigid', 'light', 'weight', 'chassis', 'known', 'bonded', 'monocoque', 'gaydon', 'facility', 'consists', 'two', 'conveyor', 'based', 'system', 'components', '103', 'manufacturing', 'bonded', 'monocoques', 'adhesive', 'applied', 'robotic', 'application', 'cells', 'main', 'chassis', 'build', 'line', 'transports', 'chassis', 'series', 'geometry', 'stations', 'sub', 'assemblies', 'finally', 'curing', 'oven', 'chassis', 'measured', 'automated', 'measuring', 'machine', 'transported', 'appropriate', 'body', 'facility', 'three', 'body', 'assembly', 'bodies', 'assembled', 'assembly', 'line', 'hand', 'mechanical', 'assistance', 'sound', 'reducing', 'materials', 'fitted', 'chassis', 'adhesive', 'paths', 'cleaned', 'primed', 'sub', 'assemblies', 'assembled', 'hand', 'beside', 'assembly', 'line', 'robot', 'cell', 'applies', 'adhesive', 'roof', 'body', 'sides', 'trunk', 'lid', 'surround', 'sub', 'assemblies', 'main', 'body', 'panels', 'fitted', 'chassis', 'tub', 'framing', 'stations', 'hand', 'framing', 'fully', 'automated', 'process', 'db11', 'future', 'core', 'products', 'assembly', 'line', 'closures', 'fitted', 'final', 'inspection', 'hand', 'finishing', 'bodies', 'proceed', 'paint', 'preparation', 'area', 'three', 'body', 'assembly', 'lines', 'process', 'carried', 'optimized', 'low', 'volume', 'cars', 'main', 'differences', 'line', 'longer', 'cycle', 'time', 'manual', 'application', 'adhesive', 'painting', 'car', 'bodies', 'first', 'sealed', 'cleaned', 'transferred', 'primer', 'line', 'automatic', 'pressure', 'blower', 'cleans', 'dirt', 'particles', 'body', 'sprayed', 'cured', 'gas', 'fired', 'ovens', 'colors', 'spraying', 'primarily', 'carried', 'robots', 'although', 'elements', 'application', 'conductive', 'primer', 'localized', 'areas', 'carried', 'hand', 'special', 'colors', 'paint', 'application', 'carried', 'hand', 'whole', 'car', 'painted', 'time', 'ensure', 'color', 'harmony', 'able', 'offer', 'large', 'range', 'colors', 'including', 'color', 'matching', 'customer', 'specific', 'requirement', 'robots', 'capable', 'painting', 'color', 'sequence', 'following', 'painting', 'curing', 'bodies', 'transferred', 'polish', 'line', 'polished', 'final', 'inspection', 'number', 'paint', 'rectification', 'booths', 'painted', 'body', 'checked', 'retouched', 'required', 'finished', 'painted', 'body', 'taken', 'away', 'automated', 'guided', 'vehicle', 'storage', 'painted', 'body', 'store', 'believe', 'comprehensive', 'painting', 'process', 'gives', 'aston', 'martin', 'cars', 'superior', 'finish', 'compared', 'competitors', 'cars', 'trim', 'shop', 'use', 'high', 'grade', 'natural', 'grain', 'leather', 'minimize', 'flaws', 'improve', 'look', 'feel', 'cars', 'leather', 'used', 'seats', 'interior', 'paneling', 'sewn', 'hand', 'fitted', 'experienced', 'team', 'skilled', 'technicians', 'instrument', 'panels', 'assembled', 'part', 'trim', 'shop', 'carrousel', 'conveyor', 'eight', 'stations', 'assembly', 'instrument', 'panel', 'electrically', 'tested', 'finally', 'transferred', 'main', 'assembly', 'line', 'assembly', 'line', 'gaydon', 'facility', 'two', 'assembly', 'lines', 'divided', 'three', 'sections', 'indexing', 'conveyor', 'divided', 'number', 'stations', 'assembly', 'lines', 'equipped', 'manipulators', 'load', 'engine', 'instrument', 'panel', 'seats', 'doors', 'fuel', 'tank', 'roadster', 'hoods', 'batteries', 'wheels', 'tires', 'employees', 'able', 'work', 'multiple', 'models', 'high', 'level', 'process', 'expertise', 'means', 'work', 'force', 'highly', 'flexible', 'respect', 'requirements', 'various', 'models', 'assembly', 'line', 'sections', 'final', 'checks', 'following', 'assembly', 'cars', 'proceed', 'area', 'equipped', 'laser', 'set', 'car', 'geometry', 'front', 'rear', 'wheels', 'headlights', 'alignment', 'process', 'also', 'carried', 'area', 'following', 'cars', 'proceed', 'mechanical', 'rolling', 'road', 'test', 'checks', 'abs', 'braking', 'system', 'powertrain', 'operation', 'cars', 'fitted', 'undertrays', 'proceed', 'finishing', 'stations', 'panels', 'electrical', 'trim', 'items', 'undergoing', 'paint', 'mark', '104', 'repair', 'process', 'cars', 'undergo', 'dynamic', 'tests', 'site', 'facilities', 'tests', 'include', 'road', 'test', 'test', 'track', 'squeak', 'rattle', 'testing', 'water', 'proof', 'testing', 'lastly', 'cars', 'go', 'final', 'inspection', 'involves', 'inspector', 'making', '175', 'separate', 'checks', 'car', 'ensure', 'quality', 'final', 'product', 'concludes', 'inspector', 'name', 'stamped', 'engine', 'bay', 'mark', 'quality', 'aston', 'martin', 'wings', 'affixed', 'car', 'addition', 'rigorous', 'inspections', 'testing', 'form', 'part', 'manufacturing', 'process', 'also', 'undertake', 'consumer', 'product', 'audits', 'regular', 'basis', 'help', 'maintain', 'high', 'standards', 'focus', 'quality', 'inspection', 'checking', 'testing', 'processes', 'helped', 'drive', 'significant', 'reduction', 'average', 'amount', 'required', 'spend', 'warranty', 'claims', 'last', 'six', 'years', 'well', 'increased', 'customer', 'satisfaction', 'procurement', 'purchasing', 'function', 'strategically', 'controls', 'whole', 'supplier', 'base', 'sourcing', 'raw', 'materials', 'aluminum', 'leather', 'components', 'facilities', 'managing', 'supply', 'base', 'approximately', '270', 'direct', 'suppliers', '1', '050', 'indirect', 'suppliers', 'policy', 'aimed', 'owning', 'special', 'tools', 'fixtures', 'used', 'suppliers', 'manufacture', 'components', '2016', 'largest', 'supplier', 'aston', 'martin', 'engine', 'plant', 'owned', 'operated', 'ford', 'production', 'v12', 'v8', 'engines', 'year', 'ended', 'december', '31', '2016', 'aston', 'martin', 'engine', 'plant', 'represented', 'approximately', '17', 'expenditures', 'raw', 'materials', 'components', 'based', 'invoices', 'posted', 'purchase', 'ledger', 'year', 'detail', 'regarding', 'relationship', 'see', 'manufacturing', 'facilities', 'partnerships', 'starting', '2017', 'expect', 'purchase', 'modified', 'm177', 'engine', 'bespoke', 'v8', 'powertrain', 'daimler', 'ag', 'tier', '1', 'supplier', 'partnerships', 'pirelli', 'bosch', 'bang', 'olufsen', 'multimatic', 'ensure', 'superior', 'quality', 'substitute', 'expensive', 'house', 'development', '2017', 'formerly', 'separate', 'purchasing', 'logistics', 'departments', 'operate', 'one', 'overall', 'function', 'heading', 'supply', 'chain', 'management', 'ensure', 'whole', 'supplier', 'performance', 'taken', 'consideration', 'sourcing', 'suppliers', 'measured', 'based', 'overall', 'performance', 'quality', 'delivery', 'cost', 'optimization', 'sustainability', 'inbound', 'transportation', 'logistics', 'handled', 'third', 'party', 'supplier', 'contracted', 'handle', 'transportation', 'suppliers', 'plants', 'production', 'location', 'suppliers', 'experiencing', 'difficulties', 'quality', 'delivery', 'performance', 'able', 'obtain', 'site', 'support', 'current', 'vehicle', 'engineering', 'supplier', 'development', 'teams', 'new', 'model', 'operations', 'also', 'provides', 'assistance', 'launch', 'new', 'products', 'carries', 'approval', 'activities', 'risk', 'management', 'process', 'place', 'seeks', 'ensure', 'no', 'disruption', 'supply', 'materials', 'components', 'includes', 'initial', 'risk', 'assessment', 'ongoing', 'risk', 'monitoring', 'suppliers', 'mitigation', 'plans', 'judge', 'highest', 'risk', 'suppliers', 'supply', 'area', 'also', 'seek', 'balance', 'sourcing', 'decisions', 'across', 'model', 'range', 'limit', 'risk', 'reliance', 'one', 'supplier', 'customers', 'sales', 'marketing', 'dealer', 'network', 'maintain', 'franchised', 'dealer', 'network', 'primary', 'means', 'sell', 'cars', 'end', 'customers', 'dealer', 'strategy', 'premised', 'belief', 'integrity', 'success', 'brand', 'dependent', 'responsible', 'careful', 'selection', 'dealers', 'sell', 'cars', 'franchise', 'agreements', 'franchisee', 'dealers', 'purchase', 'aston', 'martin', 'cars', 'make', 'certain', 'contractual', 'commitments', 'return', 'permitted', 'sell', 'aston', 'martin', 'cars', 'merchandise', 'policy', 'sell', 'dealers', 'provide', 'store', 'experience', 'promote', 'cars', 'manner', 'consistent', 'aston', 'martin', 'image', 'non', 'authorized', 'dealers', 'not', 'able', 'sell', 'new', 'certified', 'pre', 'owned', 'aston', 'martin', 'cars', 'dealer', 'strategy', 'designed', 'ensure', 'no', 'capital', 'investment', 'us', 'dealer', 'network', 'maintaining', 'level', 'control', '105', 'aim', 'ensure', 'sales', 'service', 'experience', 'dealers', 'fully', 'reflective', 'aston', 'martin', 'brand', 'dealership', 'design', 'consultancy', 'team', 'works', 'directly', 'individual', 'dealers', 'ensure', 'consistency', 'team', 'developed', 'focused', 'aston', 'martin', 'design', 'reflected', 'interior', 'exterior', 'appearance', 'dealership', 'design', 'new', 'dealership', 'must', 'approved', 'senior', 'management', 'early', 'stage', 'financing', 'necessary', 'investment', 'dealership', 'facilities', 'provided', 'dealers', 'specific', 'program', 'set', 'design', 'guidelines', 'also', 'put', 'place', 'development', 'sales', 'areas', 'workshops', 'service', 'areas', 'aims', 'support', 'brand', 'image', 'customer', 'loyalty', 'throughout', 'aston', 'martin', 'ownership', 'experience', 'developing', 'sales', 'outlets', 'way', 'aim', 'transform', 'buying', 'process', 'experience', 'closely', 'resembling', 'purchase', 'luxury', 'goods', 'exclusive', 'boutiques', 'maintain', 'impact', 'dealer', 'network', 'rigorous', 'program', 'place', 'educate', 'develop', 'monitor', 'dealer', 'owners', 'managers', 'new', 'model', 'range', 'brand', 'positioning', 'required', 'service', 'standards', 'also', 'focused', 'training', 'particular', 'repair', 'technicians', 'dealer', 'network', 'guarantee', 'satisfactory', 'aftermarket', 'experience', 'aston', 'martin', 'owners', 'dealers', 'range', 'fully', 'independent', 'brand', 'dedicated', 'outlets', 'sales', 'service', 'shared', 'sites', 'one', 'two', 'complementary', 'brands', 'separate', 'department', 'within', 'larger', 'collection', 'brands', 'dealers', 'provide', 'aftermarket', 'repair', 'services', 'cars', 'within', 'uk', 'two', 'authorized', 'service', 'centers', 'past', 'sixteen', 'years', 'dealer', 'network', 'undergone', 'significant', 'expansion', 'grown', '61', 'dealerships', '19', 'countries', '2000', '165', 'dealerships', '52', 'countries', 'december', '31', '2016', 'new', 'dealers', 'chosen', 'based', 'historical', 'performance', 'financial', 'strength', 'commitment', 'customer', 'service', 'understanding', 'luxury', 'goods', 'marketing', 'brand', 'development', 'incumbent', 'new', 'dealers', 'required', 'demonstrate', 'willingness', 'ability', 'invest', 'show', 'room', 'models', 'well', 'hiring', 'training', 'good', 'employees', 'inspect', 'dealers', 'financial', 'stability', 'brand', 'management', 'selling', 'capability', 'permitted', 'terminate', 'dealer', 'contract', 'criteria', 'not', 'met', 'standards', 'dealers', 'dealer', 'network', 'independent', 'dealers', 'exception', 'milan', 'dealership', 'works', 'acquired', 'us', 'april', '2010', 'following', 'previous', 'owner', 'experiencing', 'financial', 'difficulties', 'not', 'strategic', 'investment', 'worldwide', 'distribution', 'dealerships', 'december', '31', '2016', 'follows', 'number', 'dealerships', 'americas', 'europe', 'uk', 'south', 'africa', 'asia', 'pacific', 'china', 'middle', 'east', 'north', 'africa', '46', '42', '23', '22', '18', '16', 'total', '167', 'december', '31', '2016', 'employed', '40', 'employees', 'engaged', '8', 'contractors', 'locally', 'based', 'teams', 'support', 'dealer', 'networks', 'asia', 'continental', 'europe', 'north', 'america', 'team', 'north', 'america', 'employed', 'wholly', 'owned', 'subsidiary', 'aston', 'martin', 'lagonda', 'north', 'america', 'inc', 'acts', 'independent', 'fully', 'operational', 'trading', 'company', 'team', 'china', 'employed', 'wholly', 'owned', 'subsidiary', 'aston', 'martin', 'lagonda', 'china', 'automobile', 'distribution', 'co', 'ltd', 'also', 'acts', 'independent', 'fully', 'operational', 'trading', 'company', 'proportion', 'revenues', 'represented', 'top', 'five', 'dealer', 'groups', 'stayed', 'relatively', 'constant', 'last', 'five', 'years', 'year', 'ended', 'december', '31', '2016', 'represented', 'approximately', '21', 'total', 'sales', 'volume', 'pendragon', 'group', 'dealers', 'international', 'multi', 'franchise', 'dealer', 'group', 'represented', '8', 'sales', 'volume', 'year', 'ended', 'december', '31', '2016', 'no', 'dealer', 'group', 'dealers', 'represented', '4', 'sales', 'volume', 'year', 'ended', 'december', '31', '2016', '106', 'sales', 'globally', 'diversified', 'following', 'table', 'sets', 'forth', 'geographical', 'distribution', 'total', 'car', 'sales', 'dealers', 'past', 'three', 'years', 'year', 'ended', 'december', '31', '2014', '2015', '2016', 'location', 'americas', 'europe', 'uk', 'south', 'africa', 'asia', 'pacific', 'china', 'middle', 'east', 'north', 'africa', '1', '081', '814', '925', '440', '212', '214', '1', '055', '744', '999', '489', '192', '136', '829', '847', '1', '108', '530', '176', '197', 'total', '3', '686', '3', '615', '3', '687', 'legislative', 'reasons', 'conduct', 'distribution', 'united', 'states', 'wholly', 'owned', 'subsidiary', 'aston', 'martin', 'lagonda', 'north', 'america', 'inc', 'sells', 'cars', 'directly', 'u', 'dealer', 'network', 'contrast', 'uk', 'european', 'dealers', 'north', 'american', 'dealers', 'tend', 'place', 'orders', 'via', 'distributor', 'build', 'stock', 'pool', 'sold', 'customers', 'also', 'wholly', 'owned', 'subsidiary', 'distributor', 'china', 'distribution', 'middle', 'east', 'north', 'africa', 'arranged', 'via', 'aston', 'martin', 'mena', 'limited', 'distribution', 'company', 'affiliated', 'certain', 'shareholders', 'acquired', 'aston', 'martin', 'distribution', 'rights', 'middle', 'east', 'north', 'africa', 'us', '2009', 'see', 'certain', 'relationships', 'related', 'party', 'transactions', 'although', 'provide', 'suggested', 'retail', 'price', 'cars', 'individual', 'dealers', 'permitted', 'negotiate', 'different', 'prices', 'customers', 'provide', 'financing', 'majority', 'customers', 'purchase', 'cars', 'dealers', 'cash', 'although', 'relationships', 'certain', 'banks', 'financial', 'services', 'companies', 'dealers', 'engage', 'provide', 'finance', 'leasing', 'service', 'customers', 'requested', 'not', 'provide', 'financing', 'services', 'relating', 'purchasing', 'cars', 'nor', 'provide', 'financial', 'support', 'financing', 'however', 'wholesale', 'finance', 'facility', 'place', 'standard', 'chartered', 'bank', 'may', 'utilized', 'us', 'connection', 'sales', 'aston', 'martin', 'cars', 'backed', 'credit', 'insurance', 'event', 'dealer', 'default', 'facility', 'used', 'receive', 'purchase', 'price', 'car', 'less', 'discount', 'rate', 'calculated', 'accordance', 'wholesale', 'finance', 'facility', 'agreement', 'upon', 'invoicing', 'dealer', 'subject', 'satisfaction', 'certain', 'requirement', 'can', 'not', 'utilize', 'facility', 'connection', 'sale', 'car', 'dealer', 'dealer', 'required', 'pay', 'car', 'prior', 'delivery', 'north', 'america', 'dealers', 'typically', '10', 'days', 'pay', 'us', 'see', 'management', 'discussion', 'analysis', 'financial', 'condition', 'results', 'operations', 'liquidity', 'capital', 'resources', 'risk', 'factors', 'risks', 'relating', 'business', 'industry', 'business', 'model', 'based', 'availability', 'wholesale', 'finance', 'facility', 'loss', 'ability', 'draw', 'facility', 'credit', 'insurance', 'backing', 'could', 'material', 'adverse', 'effect', 'business', 'production', 'allocation', 'closely', 'monitor', 'production', 'relative', 'demand', 'products', 'primarily', 'involves', 'controlling', 'production', 'volumes', 'also', 'manage', 'allocations', 'specific', 'markets', 'individual', 'dealers', 'production', 'levels', 'initially', 'calculated', 'regional', 'basis', 'among', 'united', 'kingdom', 'south', 'africa', 'europe', 'americas', 'asia', 'pacific', 'middle', 'eastern', 'north', 'african', 'markets', 'calculations', 'take', 'account', 'factors', 'local', 'market', 'size', 'order', 'books', 'historical', 'performance', 'allocation', 'specific', 'region', 'individual', 'dealers', 'given', 'annual', 'maximum', 'allocation', 'designed', 'ensure', 'market', 'demand', 'remains', 'ahead', 'available', 'supply', 'secondary', 'market', 'although', 'not', 'derive', 'revenue', 'sales', 'used', 'cars', 'place', 'high', 'importance', 'secondary', 'market', 'car', 'residual', 'value', 'period', 'ownership', 'key', 'determinant', 'overall', 'cost', 'car', 'ownership', 'end', 'seek', 'manage', 'production', 'volumes', 'maintain', 'new', 'car', 'supply', 'market', 'demand', 'aim', 'providing', 'support', 'secondary', 'market', 'prices', 'ensuring', 'degree', 'scarcity', '107', '2016', 'launched', 'aston', 'martin', 'global', 'certified', 'pre', 'owned', 'sports', 'car', 'program', 'timeless', 'international', 'program', 'offers', 'customers', 'pre', 'owned', 'aston', 'martin', 'sports', 'cars', 'high', 'levels', 'quality', 'assurance', 'confidence', 'program', 'covers', 'aston', 'martin', 'models', 'last', 'decade', 'including', 'special', 'edition', 'models', 'v12', 'zagato', 'one', '77', 'process', 'transitioning', 'timeless', 'aston', 'martin', 'approved', 'used', 'car', 'program', 'currently', 'assures', 'quality', 'used', 'cars', 'sold', 'via', 'approved', 'dealers', 'asia', 'pacific', 'specifically', 'involves', 'provision', 'comprehensive', 'extended', 'warranty', 'mandatory', '140', 'point', 'check', 'cars', 'sold', 'scheme', 'efforts', 'together', 'general', 'desirability', 'cars', 'contributed', 'supporting', 'secondary', 'market', 'prices', 'cars', 'marketing', 'past', 'three', 'years', 'annual', 'marketing', 'spend', '13', '6', 'million', 'year', 'ended', 'december', '31', '2014', '12', '1', 'million', 'year', 'ended', 'december', '31', '2015', '21', '5', 'million', 'year', 'ended', 'december', '31', '2016', 'marketing', 'expenditures', 'mainly', 'attributable', 'frequent', 'new', 'product', 'launches', 'key', 'hnwi', 'motoring', 'events', 'le', 'mans', '24', 'hour', 'race', 'goodwood', 'pebble', 'beach', 'geneva', 'shanghai', 'beijing', 'motor', 'shows', 'also', 'actively', 'use', 'product', 'placements', 'including', 'james', 'bond', 'movies', 'one', 'one', 'regional', 'dealer', 'marketing', 'events', 'factory', 'tours', 'sponsorship', 'arrangements', 'luxury', 'lifestyle', 'sports', 'events', 'since', '2016', 'sponsored', 'red', 'bull', 'racing', 'formula', '1', 'team', 'given', 'aston', 'martin', 'brand', 'international', 'exposure', 'formula', '1', 'supported', 'technical', 'innovation', 'partnership', 'red', 'bull', 'technologies', 'create', 'aston', 'martin', 'valkyrie', 'hyper', 'car', 'also', 'market', 'indirectly', 'aston', 'martin', 'racing', 'program', 'promotes', 'aston', 'martin', 'brand', 'participating', 'endurance', 'gt', 'racing', 'events', 'le', 'mans', 'n', 'rburgring', 'aston', 'martin', 'racing', 'program', 'operated', 'prodrive', 'make', 'small', 'annual', 'payment', 'largely', 'self', 'sufficient', 'relatively', 'low', 'cost', 'form', 'marketing', 'supports', 'innovation', 'learning', 'road', 'cars', 'key', 'marketing', 'message', '2016', 'competitive', 'aston', 'martin', 'racing', 'amr', 'team', 'two', 'world', 'championship', 'titles', 'ahead', 'notable', 'competitor', 'brands', 'part', 'second', 'century', 'plan', 'marketing', 'boosted', 'frequent', 'new', 'product', 'launches', 'attract', 'new', 'customers', 'include', 'several', 'limited', 'edition', 'special', 'projects', 'revealed', 'privately', 'exclusive', 'vip', 'audience', 'ahead', 'public', 'announcement', 'strategy', 'resulted', 'collectible', 'new', 'products', 'pre', 'sold', 'ahead', 'announcement', 'leading', 'highly', 'desirable', 'invitation', 'demand', 'brand', 'away', 'core', 'automotive', 'activities', 'brand', 'also', 'attracted', 'hnwi', 'customers', 'prospects', 'via', 'art', 'living', 'experiential', 'events', 'platform', 'capitalizing', 'trend', 'target', 'market', 'spends', 'significantly', 'experiences', 'driving', 'breaks', 'access', 'exceptional', 'lifestyle', 'experiences', 'may', 'not', 'always', 'involve', 'driving', 'particular', 'experiences', 'effective', 'way', 'attract', 'stronger', 'female', 'following', 'general', 'bring', 'clients', 'closer', 'brand', 'partners', 'addition', 'recent', 'investments', 'digital', 'marketing', 'tools', 'web', 'crm', 'social', 'asset', 'management', 'content', 'configurators', 'led', 'internal', 'efficiencies', 'tripling', 'online', 'leads', '2016', 'along', 'social', 'media', 'audience', 'exceeds', '11', 'million', 'people', 'supports', 'overall', 'brand', 'awareness', 'consideration', 'also', 'helping', 'convert', 'prospects', 'sales', 'world', 'even', 'hnwi', 'customers', 'research', 'online', 'engaging', 'retailers', 'brand', 'ambassadors', 'addition', 'marketing', 'initiatives', 'engage', 'several', 'successful', 'visible', 'sporting', 'professionals', 'world', 'brand', 'ambassadors', 'example', 'tom', 'brady', 'one', 'recognized', 'athletes', 'us', 'serena', 'williams', 'widely', 'regarded', 'one', 'greatest', 'time', 'tennis', 'champions', 'help', 'us', 'promote', 'aston', 'martin', 'brand', 'role', 'brand', 'ambassadors', 'product', 'development', 'product', 'development', 'team', 'comprised', '747', 'designers', 'engineers', 'technicians', 'covering', 'almost', 'aspects', 'new', 'car', 'planning', 'design', 'development', 'modular', 'architecture', 'employs', 'carry', 'carry', 'across', 'principle', 'key', 'systems', 'components', 'backbone', 'current', 'product', 'portfolio', 'planned', 'form', 'basis', 'cycle', 'new', 'model', 'introductions', 'standardized', 'new', 'product', 'introduction', 'process', '108', 'mission', 'system', 'project', 'gateways', 'clear', 'deliverables', 'ensure', 'adherence', 'program', 'targets', 'quality', 'cost', 'delivery', 'result', 'house', 'design', 'technology', 'development', 'capabilities', 'use', 'flexible', 'modular', 'architecture', 'mission', 'ensure', 'rapid', 'time', 'market', 'design', 'conception', 'launch', 'lower', 'cost', 'normally', 'required', 'industry', 'maintaining', 'adherence', 'designers', 'concepts', 'total', 'product', 'development', 'expenditures', 'year', 'ended', 'december', '31', '2016', '192', '8', 'million', 'slightly', 'half', 'related', 'engineering', 'costs', 'slightly', 'less', 'half', 'related', 'capital', 'expenditures', 'directly', 'related', 'cars', 'addition', 'believe', 'following', 'investment', 'aluminum', 'architecture', 'engines', 'shared', 'systems', 'db11', 'new', 'vanquish', 'new', 'vantage', 'require', 'approximately', '51', '87', 'less', 'capital', 'expenditure', 'db11', 'respectively', 'expect', 'hit', 'peak', 'capital', 'expenditures', 'near', 'term', 'generation', 'vehicles', 'aim', 'fund', 'capital', 'expenditure', 'working', 'capital', 'cash', 'flows', 'operations', 'future', 'majority', 'design', 'activities', 'carried', 'design', 'team', 'state', 'art', 'design', 'facility', 'gaydon', 'team', 'consists', 'designers', 'engineers', 'technicians', 'including', 'clay', 'modelers', 'electronic', 'modelers', 'skilled', 'craftsmen', 'processes', 'include', 'sketching', 'physical', 'electronic', 'modeling', 'design', 'team', 'also', 'responsible', 'trim', 'attention', 'detail', 'design', 'become', 'recognized', 'received', 'numerous', 'awards', 'including', 'recently', 'car', 'design', 'year', '2016', 'salone', 'dell', 'auto', 'sports', 'car', 'year', '2016', 'autonis', 't3', 'design', 'year', '2016', 'db11', 'best', 'car', '2016', 'auto', 'motor', 'und', 'sport', 'vanquish', 'best', 'car', '2014', 'auto', 'motor', 'und', 'sport', 'rapide', 'best', 'car', '2013', 'auto', 'illustrierte', 'rapide', 'addition', 'aston', 'martin', 'winner', 'cool', 'brands', 'award', 'uk', 'several', 'times', 'last', 'years', 'continuously', 'elected', 'top', '10', 'since', '2008', 'parts', 'business', 'run', 'parts', 'distribution', 'service', 'facility', 'wolverton', 'milton', 'keynes', 'uk', 'division', 'supplies', 'parts', 'classic', 'current', 'models', 'stocks', 'dating', 'back', '1958', 'annual', 'car', 'sales', 'volumes', 'increased', 'low', 'hundreds', '1980s', '1990s', '3', '687', '2016', '7', '000', '2006', '2007', 'division', 'expected', 'benefit', 'increasing', 'number', 'customer', 'cars', 'currently', 'road', 'requiring', 'regular', 'parts', 'maintenance', 'sell', 'parts', 'authorized', 'dealer', 'network', 'well', 'third', 'party', 'service', 'centers', 'not', 'part', 'authorized', 'dealer', 'network', 'year', 'ended', 'december', '31', '2016', 'revenues', 'parts', 'business', '53', '6', 'million', 'servicing', 'business', 'provide', 'maintenance', 'accident', 'repair', 'service', 'well', 'restoration', 'older', 'aston', 'martin', 'models', 'servicing', 'business', 'works', 'service', 'operation', 'based', 'newport', 'pagnell', 'uk', 'employ', 'highly', 'skilled', 'craftsmen', 'hand', 'manufacture', 'almost', 'car', 'components', 'addition', 'generating', 'revenue', 'activities', 'help', 'protect', 'heritage', 'believe', 'underpins', 'much', 'aston', 'martin', 'brand', 'appeal', 'continued', 'development', 'year', 'ended', 'december', '31', '2016', 'revenues', 'servicing', 'business', '10', '9', 'million', 'servicing', 'repair', 'services', 'also', 'available', 'authorized', 'service', 'centers', 'franchised', 'aston', 'martin', 'dealers', 'although', 'described', 'almost', 'entirely', 'independent', 'businesses', 'therefore', 'not', 'generate', 'revenue', 'us', 'except', 'indirectly', 'parts', 'business', 'aston', 'martin', 'works', 'limited', 'owns', 'servicing', 'business', 'wholly', 'owned', 'subsidiary', 'amws', 'limited', 'whose', 'shares', '50', 'owned', 'aston', 'martin', 'lagonda', 'limited', 'see', 'certain', 'relationships', 'related', 'party', 'transactions', 'intellectual', 'property', 'protection', 'intellectual', 'property', 'ip', 'considerable', 'importance', 'us', 'success', 'depends', 'part', 'freedom', 'manufacture', 'import', 'export', 'advertise', 'sell', 'products', 'services', 'globally', 'daily', 'basis', 'without', 'risk', 'infringing', 'misappropriating', 'ip', 'third', 'party', 'protecting', 'ip', 'freedom', 'use', 'helps', 'protect', 'preserve', 'enhance', 'uniqueness', 'identity', 'aston', 'martin', 'products', 'brands', 'therefore', 'assign', 'high', '109', 'priority', 'protecting', 'ip', 'attempt', 'safeguard', 'important', 'new', 'developments', 'enhancements', 'ip', 'appropriately', 'patents', 'licenses', 'utility', 'design', 'patents', 'number', 'patent', 'applications', 'granted', 'patents', 'significant', 'amount', 'confidential', 'information', 'know', 'relation', 'technologies', 'used', 'products', 'also', 'manufacturing', 'processes', 'used', 'create', 'also', 'benefit', 'licenses', 'third', 'party', 'licensors', 'suppliers', 'use', 'technologies', 'deployed', 'products', 'creating', 'developing', 'part', 'sale', 'company', 'ford', '2007', 'ford', 'granted', 'us', 'non', 'exclusive', 'worldwide', 'fully', 'paid', 'license', 'without', 'right', 'sub', 'license', 'others', 'except', 'course', 'providing', 'services', 'us', 'use', 'sell', 'import', 'products', 'falling', 'certain', 'patent', 'applications', 'granted', 'patents', 'well', 'non', 'patented', 'ip', 'owned', 'ford', 'time', 'sale', 'used', 'planned', 'use', 'business', 'recently', 'pursuant', 'arrangements', 'daimler', 'ag', 'benefit', 'various', 'licenses', 'use', 'certain', 'technology', 'confidential', 'know', 'arising', 'respect', 'agreed', 'applications', 'daimler', 'technologies', 'products', 'similar', 'licenses', 'sought', 'suppliers', 'services', 'components', 'use', 'creation', 'products', 'aston', 'martin', 'business', 'processes', 'contractual', 'security', 'arrangements', 'including', 'premises', 'information', 'technology', 'systems', 'aimed', 'ensuring', 'suitably', 'protects', 'confidential', 'information', 'including', 'respect', 'technologies', 'also', 'product', 'business', 'plans', 'sensitive', 'confidential', 'information', 'designs', 'copyrights', 'aston', 'martin', 'many', 'awards', 'widespread', 'recognition', 'designs', 'design', 'aston', 'martin', 'products', 'often', 'identified', 'important', 'feature', 'underpinning', 'success', 'often', 'buy', 'consumers', 'aston', 'martin', 'invests', 'securing', 'design', 'registration', 'various', 'key', 'global', 'regions', 'markets', 'including', 'entire', 'new', 'products', 'various', 'iconic', 'individual', 'design', 'features', 'products', 'imagery', 'surrounding', 'products', 'also', 'often', 'important', 'sales', 'perspective', 'aston', 'martin', 'invests', 'securing', 'finest', 'digital', 'content', 'including', 'moving', 'still', 'images', 'represent', 'products', 'attendant', 'licenses', 'use', 'assignments', 'rights', 'question', 'trademarks', 'significant', 'portfolio', 'registered', 'unregistered', 'trademark', 'rights', 'around', 'world', 'rights', 'include', 'among', 'others', 'without', 'limitation', 'significant', 'portfolio', 'registered', 'trademark', 'rights', 'respect', 'words', 'aston', 'martin', 'lagonda', 'well', 'famous', 'aston', 'martin', 'lagonda', 'wings', 'logos', 'addition', 'wide', 'range', 'sub', 'brands', 'model', 'names', 'including', 'without', 'limitation', 'db7', 'db8', 'db9', 'db10', 'db11', 'rapide', 'aston', 'martin', 'rapide', 'volante', 'vantage', 'vanquish', 'among', 'others', 'aston', 'martin', 'front', 'grill', 'design', 'configuration', 'side', 'vent', 'cars', 'also', 'registered', 'trademarks', 'certain', 'countries', 'addition', 'registered', 'use', 'automotive', 'sector', 'several', 'key', 'trademarks', 'registered', 'sectors', 'including', 'jewelry', 'sunglasses', 'mobile', 'phones', 'clothing', 'watches', 'boats', 'luxury', 'condominiums', '2009', 'sold', 'exclusive', 'brand', 'extension', 'license', 'produce', 'market', 'sell', 'certain', 'non', 'automotive', 'related', 'aston', 'martin', 'branded', 'products', 'entity', 'outside', 'corporate', 'group', 'whose', 'ultimate', 'ownership', 'affiliated', 'shareholders', 'pursuant', 'arrangements', 'pursuant', 'license', 'not', 'generate', 'direct', 'revenue', 'stream', 'exploitation', 'licensing', 'non', 'automotive', 'trademark', 'rights', 'however', 'see', 'relationship', 'improving', 'value', 'brand', 'significant', 'influence', 'design', 'branding', 'decisions', 'related', 'license', 'see', 'certain', 'relationships', 'related', 'party', 'transactions', 'asmar', 'limited', 'non', 'automotive', 'trademark', 'agreement', 'respect', 'automotive', 'applications', 'trademarks', 'like', 'original', 'equipment', 'manufacturers', 'license', 'brand', 'use', 'connection', 'franchise', 'network', 'dealerships', 'spanning', 'many', 'countries', 'across', 'world', 'addition', 'granted', 'trademark', 'license', 'aston', 'martin', 'works', 'limited', 'use', 'relevant', 'company', 'trademarks', 'respect', 'aspects', 'business', 'heritage', 'aston', 'martin', 'products', 'also', 'entered', 'licensing', 'agreement', '110', 'prodrive', 'limited', 'pursuant', 'prodrive', 'operates', 'aston', 'martin', 'racing', 'program', 'agreement', 'prodrive', 'manages', 'motorsport', 'rallying', 'programs', 'utilizing', 'aston', 'martin', 'name', 'branding', 'litigation', 'time', 'time', 'involved', 'plaintiffs', 'defendants', 'claims', 'litigation', 'relating', 'products', 'commercial', 'matters', 'intellectual', 'property', 'matters', 'including', 'allegations', 'claiming', 'defects', 'design', 'manufacture', 'although', 'ultimate', 'disposition', 'asserted', 'claims', 'proceedings', 'can', 'not', 'predicted', 'certainty', 'belief', 'outcome', 'claims', 'either', 'individually', 'combined', 'basis', 'not', 'material', 'adverse', 'effect', 'consolidated', 'financial', 'position', 'maintain', 'insurance', 'product', 'liability', 'claims', 'various', 'jurisdictions', 'however', 'outcomes', 'may', 'material', 'consolidated', 'statement', 'operations', 'particular', 'period', 'properties', 'gaydon', 'gaydon', 'headquarters', 'manufacturing', 'facility', 'opened', '2003', 'corporate', 'headquarters', 'senior', 'management', 'based', 'primary', 'production', 'facility', 'current', 'models', 'built', 'addition', 'engineering', 'design', 'administrative', 'functions', 'located', 'gaydon', 'facility', 'st', 'athan', '2016', 'announced', 'new', 'manufacturing', 'facility', 'st', 'athan', 'uk', 'construction', 'facility', 'started', 'december', '2016', 'plan', 'enter', '30', 'year', 'lease', 'property', 'commencing', 'december', '2017', 'construction', 'facility', 'complete', 'expect', 'full', 'vehicle', 'production', 'commence', '2019', 'currently', 'plan', 'produce', 'dbx', 'vehicle', 'st', 'athan', 'plant', 'wolverton', 'mill', 'parts', 'storage', 'distribution', 'business', 'operates', 'wolverton', 'mill', 'warehouse', 'facility', 'facility', 'leased', 'july', '2015', 'lease', 'ending', 'december', '2029', 'right', 'break', 'lease', 'notice', 'december', '2024', 'newport', 'pagnell', 'newport', 'pagnell', 'original', 'headquarters', 'early', '1960s', 'moved', 'gaydon', 'factory', 'still', 'remains', 'historic', 'home', 'heritage', 'restoration', 'business', 'wellesbourne', 'currently', 'lease', 'three', 'units', 'm40', 'distribution', 'park', 'wellesbourne', 'wellesbourne', 'unit', '1', 'warehouse', 'distribution', 'facility', 'commenced', 'may', '2015', 'expires', 'december', '20', '2031', 'b', 'lease', 'wellesbourne', 'unit', '2', 'commenced', 'december', '21', '2016', 'expires', 'december', '20', '2031', 'property', 'used', 'prototype', 'build', 'facility', 'c', 'wellesbourne', 'unit', '20', 'used', 'storage', 'lease', 'expires', 'june', '30', '2017', 'milan', 'acquired', 'milan', 'dealership', 'april', '2010', 'following', 'previous', 'owner', 'experiencing', 'financial', 'difficulties', 'result', 'succession', 'related', 'contracts', 'premises', 'milan', 'dealership', 'operates', 'dover', 'street', 'fifteen', 'year', 'term', 'lease', 'began', 'september', '18', '2015', 'brands', 'limited', 'occupies', 'premises', 'rent', 'charged', 'back', '111', 'also', 'regional', 'offices', 'united', 'states', 'frankfurt', 'tokyo', 'shanghai', 'singapore', 'short', 'term', 'leases', 'renewal', 'time', 'time', 'employees', 'december', '31', '2016', '1', '594', 'employees', '727', 'contractors', 'december', '31', '2016', 'approximately', '21', 'employees', 'unionized', 'members', 'unite', 'believe', 'good', 'relationship', 'union', 'employees', 'generally', 'environmental', 'health', 'safety', 'subject', 'number', 'supranational', 'national', 'local', 'environmental', 'laws', 'regulations', 'believe', 'currently', 'compliance', 'material', 'respects', 'environmental', 'health', 'safety', 'laws', 'regulations', 'however', 'environmental', 'health', 'safety', 'laws', 'regulations', 'continually', 'evolving', 'however', 'priorities', 'enforce', 'can', 'not', 'assure', 'environmental', 'health', 'safety', 'conditions', 'relating', 'prior', 'existing', 'future', 'properties', 'not', 'material', 'adverse', 'effect', 'business', 'financial', 'condition', 'results', 'operations', 'insurance', 'maintain', 'insurance', 'cover', 'risks', 'associated', 'ordinary', 'operation', 'business', 'including', 'general', 'liability', 'property', 'coverage', 'product', 'liability', 'although', 'not', 'include', 'claims', 'warranties', 'terrorism', 'workers', 'compensation', 'insurance', 'insure', 'manufacturing', 'facilities', 'stock', 'hazards', 'fire', 'explosion', 'theft', 'flood', 'mischief', 'accidents', 'also', 'taken', 'credit', 'insurance', 'respect', 'dealer', 'default', 'wholesale', 'finance', 'facility', 'details', 'please', 'see', 'description', 'financial', 'arrangements', 'policies', 'underwritten', 'reputable', 'insurance', 'providers', 'conduct', 'periodic', 'reviews', 'insurance', 'coverage', 'terms', 'coverage', 'limits', 'deductibles', 'believe', 'insurance', 'coverage', 'sufficient', 'risks', 'associated', 'operations', 'regulatory', 'operations', 'subject', 'laws', 'governmental', 'regulation', 'concerning', 'among', 'things', 'vehicle', 'emissions', 'environmental', 'damage', 'original', 'spare', 'parts', 'technical', 'safety', 'road', 'safety', 'export', 'import', 'quotas', 'customs', 'regulations', 'consumer', 'data', 'protection', 'advertisement', 'promotion', 'sale', 'merchandise', 'health', 'safety', 'working', 'conditions', 'employees', 'competitive', 'marketplace', 'conduct', 'believe', 'compliance', 'material', 'respects', 'regulations', 'currently', 'qualify', 'small', 'volume', 'manufacturer', 'derogation', 'european', 'union', 'united', 'states', 'vehicle', 'emissions', 'legislation', 'can', 'not', 'assure', 'however', 'future', 'changes', 'requirements', 'mode', 'enforcement', 'laws', 'regulations', 'not', 'material', 'adverse', 'effect', 'business', 'financial', 'condition', 'results', 'operations', 'see', 'risk', 'factors', 'risks', 'related', 'business', 'industry', 'new', 'laws', 'regulations', 'policies', 'governmental', 'organizations', 'regarding', 'increased', 'fuel', 'economy', 'requirements', 'reduced', 'greenhouse', 'gas', 'pollutant', 'emissions', 'vehicle', 'safety', 'environmental', 'health', 'safety', 'laws', 'changes', 'existing', 'laws', 'may', 'significant', 'effect', 'business', 'environmental', 'health', 'safety', 'regulation', 'applicable', 'production', 'facilities', 'automobile', 'company', 'production', 'facilities', 'related', 'operations', 'subject', 'extensive', 'governmental', 'regulations', 'regarding', 'among', 'things', 'air', 'emissions', 'wastewater', 'discharges', 'accidental', 'releases', 'environment', 'human', 'exposure', 'hazardous', 'materials', 'storage', 'treatment', 'transportation', 'disposal', 'hazardous', 'materials', 'wastes', 'manufacture', 'import', 'use', 'chemicals', 'example', 'pursuant', 'regulations', 'known', 'reach', 'europe', 'toxic', 'substances', 'control', 'act', 'united', 'states', 'clean', 'contamination', 'maintenance', 'safe', 'conditions', 'regulations', 'likely', 'become', 'stringent', 'compliance', 'costs', 'may', 'significant', '112', 'greenhouse', 'gas', 'co2', 'fuel', 'economy', 'legislation', 'legislation', 'place', 'limiting', 'manufacturer', 'fleet', 'average', 'greenhouse', 'gas', 'emissions', 'co2', 'europe', 'passenger', 'cars', 'different', 'targets', 'apply', 'manufacturer', 'based', 'respective', 'fleets', 'vehicles', 'average', 'weight', 'received', 'permitted', 'derogation', 'emissions', 'requirement', 'available', 'small', 'volume', 'niche', 'manufacturers', 'sets', 'bespoke', 'target', 'reduction', 'emissions', 'specifically', 'aligned', 'current', 'potential', 'capability', 'furthermore', 'european', 'union', 'proposed', 'medium', 'long', 'term', 'fleet', 'average', 'target', '95', 'grams', 'carbon', 'dioxide', 'per', 'kilometer', 'new', 'passenger', 'cars', 'end', '2020', 'ambitious', 'target', 'even', 'comparison', 'fuel', 'efficiency', 'requirements', 'worldwide', 'new', 'rule', 'contains', 'extension', 'small', 'volume', 'niche', 'manufacturers', 'derogation', 'permits', 'us', 'negotiate', 'alternative', 'emissions', 'reduction', 'target', 'based', 'economic', 'technological', 'potential', 'united', 'states', 'nhtsa', 'epa', 'jointly', 'promulgated', 'national', 'program', 'fuel', 'economy', 'ghg', 'emission', 'reduction', 'regulations', 'national', 'program', 'ghg', 'fuel', 'economy', 'limits', 'set', 'become', 'stringent', 'future', '2012', 'epa', 'nhtsa', 'finalized', 'rules', 'extending', 'national', 'program', '2025', '1', 'nhtsa', 'set', 'cafe', 'standards', 'model', 'years', '2017', '2021', 'issued', 'projected', 'standards', 'reevaluated', 'finalized', 'future', 'rulemaking', 'come', '2018', 'model', 'years', '2022', '2025', '2', 'epa', 'set', 'ghg', 'emission', 'standards', 'model', 'years', '2017', '2025', 'nhtsa', 'projected', 'model', 'year', '2017', '2021', 'cafe', 'standards', 'would', 'require', 'average', 'industry', 'fleet', 'wide', 'basis', 'range', '40', '3', '41', '0', 'mpg', 'model', 'year', '2021', 'nhtsa', 'projects', 'model', 'year', '2022', '2025', 'standards', 'could', 'require', 'average', 'industry', 'fleet', 'wide', 'basis', 'range', '48', '7', '49', '7', 'mpg', 'model', 'year', '2025', 'epa', 'established', 'ghg', 'emission', 'standards', 'projected', 'require', 'average', 'industry', 'fleet', 'wide', 'basis', 'limit', '163', 'grams', 'mile', 'co2', 'emissions', 'model', 'year', '2025', 'epa', 'deferred', 'establishing', 'ghg', 'standards', 'model', 'years', '2012', '2016', 'small', 'volume', 'manufacturer', 'svm', 'sell', 'less', '5', '000', 'cars', 'per', 'model', 'year', 'united', 'states', 'however', 'eligible', 'deferment', 'model', 'year', 'manufacturer', 'must', 'demonstrate', 'good', 'faith', 'effort', 'secure', 'ghg', 'credits', 'extent', 'credits', 'reasonably', 'available', 'manufacturers', 'epa', 'noted', 'ghg', 'credit', 'transactions', 'occurred', 'expects', 'svms', 'may', 'able', 'purchase', 'credits', '2013', '2016', 'model', 'years', 'fleetwide', 'ghg', 'emissions', 'exceeded', 'level', 'allowed', 'epa', 'ghg', 'standard', 'model', 'years', '2012', '2016', 'although', 'epa', 'deemed', 'us', 'conditionally', 'exempt', 'requirement', '2012', 'currently', 'negotiating', 'purchase', 'ghg', 'credits', 'cover', 'exceedances', 'model', 'years', '2013', '2016', 'beginning', '2017', 'model', 'year', 'svms', 'no', 'longer', 'eligible', 'conditional', 'exemptions', 'ghg', 'standard', 'must', 'either', 'comply', 'standard', 'request', 'alternative', 'fleet', 'average', 'ghg', 'standard', 'model', 'year', 'based', 'capability', 'also', 'adhering', 'notional', 'year', 'year', 'improvement', 'petitioned', 'epa', 'alternative', 'ghg', 'standard', 'begin', 'model', 'year', '2017', 'however', 'epa', 'not', 'yet', 'granted', 'request', 'fleet', 'average', 'ghg', 'emissions', '2017', '2018', 'model', 'years', 'exceed', 'ghg', 'standard', 'would', 'apply', 'epa', 'deny', 'request', 'meaning', 'unless', 'petition', 'granted', 'need', 'purchase', 'ghg', 'credits', 'subject', 'penalties', 'nhtsa', 'authority', 'exempt', 'generally', 'applicable', 'cafe', 'standards', 'manufacturers', 'produce', 'fewer', '10', '000', 'passenger', 'cars', 'worldwide', 'model', 'year', 'two', 'years', 'prior', 'year', 'seek', 'exemption', 'petitioned', 'nhtsa', 'alternative', 'cafe', 'standards', 'model', 'year', '2012', '2019', 'nhtsa', 'not', 'acted', 'petitions', 'although', 'nhtsa', 'not', 'taken', 'position', 'failed', 'meet', 'cafe', 'standards', 'applicable', 'past', 'model', 'years', 'manufacturer', 'subject', 'substantial', 'civil', 'penalties', 'fails', 'meet', 'cafe', 'standards', 'penalty', 'formula', 'nhtsa', 'applies', 'calculating', 'civil', 'penalty', 'violation', 'cafe', 'standard', 'multiplies', 'penalty', 'rate', 'times', 'number', 'tenths', 'mileper', 'gallon', 'non', 'compliant', 'fleet', 'falls', 'short', 'applicable', 'cafe', 'standard', 'times', 'number', 'vehicles', 'non', 'compliant', 'fleet', 'penalty', 'rate', 'presently', '5', '50', 'per', 'tenth', 'amile', 'per', 'gallon', '2016', 'nhtsa', 'increased', 'rate', '5', '50', '14', 'beginning', 'model', 'year', '2019', 'vehicles', 'federal', 'clean', 'air', 'act', 'allows', 'california', 'establish', 'vehicle', 'emissions', 'standards', 'pursuant', 'authority', 'california', 'air', 'resources', 'board', 'arb', 'adopted', 'california113', 'specific', 'vehicle', 'emission', 'control', 'standards', 'like', 'federal', 'standards', 'become', 'increasingly', 'stringent', 'time', 'arb', 'promulgated', '2012', 'lev', 'iii', 'standards', 'apply', 'model', 'year', '2015', 'newer', 'vehicles', 'require', 'additional', 'reductions', 'ghg', 'emissions', 'passenger', 'vehicles', 'light', 'duty', 'trucks', '2017', 'subsequent', 'model', 'years', 'new', 'increasingly', 'stringent', 'ghg', 'emissions', 'standards', 'apply', 'lev', 'program', 'also', 'mandates', 'manufacturers', 'produce', 'deliver', 'certain', 'quantity', 'zero', 'emission', 'vehicles', 'zevs', 'california', 'market', 'however', 'small', 'volume', 'manufacturers', 'california', 'motor', 'vehicle', 'sales', '4', '500', 'per', 'year', 'exempt', 'zev', 'requirements', 'currently', 'exempt', 'zev', 'requirements', 'per', 'small', 'volume', 'manufacturer', 'provision', 'california', 'established', 'vehicle', 'emission', 'standards', 'states', 'permitted', 'adopt', 'june', '2009', 'thirteen', 'additional', 'states', 'u', 'district', 'columbia', 'adopted', 'lev', 'iii', 'standards', 'august', '2016', 'nine', 'states', 'california', 'adopted', 'zev', 'requirements', 'lev', 'program', 'addition', 'many', 'markets', 'either', 'shortly', 'define', 'similar', 'ghg', 'emissions', 'standards', 'including', 'canada', 'china', 'japan', 'switzerland', 'australia', 'saudi', 'arabia', 'south', 'africa', 'vehicle', 'tailpipe', 'emissions', 'legislation', 'european', 'union', 'adopted', 'latest', 'series', 'stringent', 'standards', 'emissions', 'tailpipe', 'criteria', 'pollutants', 'passenger', 'vehicles', 'oxides', 'nitrogen', 'carbon', 'monoxide', 'hydrocarbons', 'particulates', 'standards', 'phased', 'september', '2009', 'euro', '5', 'september', '2014', 'euro', '6b', 'september', '2017', 'euro', '6c', 'passenger', 'cars', 'addition', 'september', '2017', 'see', 'real', 'world', 'driving', 'emissions', 'become', 'mandatory', 'along', 'move', 'new', 'worldwide', 'harmonized', 'light', 'duty', 'test', 'procedure', 'wltp', 'coincident', 'commencement', 'euro', '6c', 'europe', 'markets', 'likely', 'follow', 'address', 'globally', 'recognized', 'air', 'quality', 'attainment', 'concerns', 'united', 'states', 'epa', 'responsibility', 'establishing', 'enforcing', 'emission', 'control', 'standards', 'regulating', 'passenger', 'cars', 'light', 'trucks', 'epa', 'adopted', 'increasingly', 'stringent', 'vehicle', 'emission', 'control', 'standards', 'time', 'standards', 'govern', 'vehicle', 'exhaust', 'emissions', 'also', 'referred', 'tailpipe', 'emissions', 'vehicle', 'evaporative', 'emissions', 'onboard', 'diagnostic', 'obd', 'systems', 'monitoring', 'emissions', 'emissions', 'cold', 'temperature', 'operation', 'among', 'matters', 'vehicle', 'emission', 'standards', 'set', 'become', 'stringent', 'future', '2014', 'epa', 'finalized', 'tier', '3', 'standards', 'beginning', 'model', 'year', '2017', 'increasing', 'stringency', '2025', 'reduce', 'allowed', 'levels', 'tailpipe', 'evaporative', 'emissions', 'gasoline', 'sulfur', 'content', 'svm', 'selling', 'less', '5', '000', 'vehicles', 'per', 'year', 'united', 'states', 'eligible', 'certain', 'delayed', 'relaxed', 'requirements', 'existing', 'california', 'lev3', 'regulations', 'described', 'place', 'ever', 'stricter', 'limits', 'emissions', 'particulates', 'oxides', 'nitrogen', 'hydrocarbons', 'formaldehyde', 'nonmethane', 'organic', 'gases', 'addition', 'ghgs', 'passenger', 'cars', 'light', 'duty', 'trucks', 'regulations', 'require', 'everincreasing', 'levels', 'technology', 'engine', 'control', 'systems', 'board', 'diagnostics', 'treatment', 'systems', 'affecting', 'base', 'costs', 'powertrains', 'california', 'lev3', 'criteria', 'pollutant', 'emissions', 'regulations', 'cover', '2015', 'subsequent', 'model', 'years', 'additional', 'stringency', 'evaporative', 'emissions', 'regulations', 'also', 'requires', 'advanced', 'materials', 'joints', 'solutions', 'eliminate', 'fuel', 'evaporative', 'losses', 'much', 'longer', 'warranty', 'periods', '150', '000', 'miles', 'united', 'states', 'europe', 'united', 'states', 'lead', 'implementation', 'emissions', 'programs', 'nations', 'states', 'typically', 'follow', 'adoption', 'similar', 'regulations', 'two', 'four', 'years', 'thereafter', 'example', 'china', 'stage', 'iii', 'fuel', 'consumption', 'regulation', 'targets', 'national', 'average', 'fuel', 'consumption', '6', '9l', '100km', '2015', 'stage', 'iv', 'targets', 'national', 'average', 'fuel', 'consumption', '5', '0l', '100km', '2021', 'response', 'severe', 'air', 'quality', 'issues', 'beijing', 'major', 'chinese', 'cities', 'chinese', 'government', 'also', 'intends', 'adopt', 'stringent', 'emissions', 'standards', 'beginning', '2020', 'beijing', 'potentially', 'earlier', '114', 'comply', 'current', 'future', 'vehicle', 'tailpipe', 'emissions', 'norms', 'may', 'incur', 'substantial', 'capital', 'expenditure', 'r', 'expenditure', 'upgrade', 'products', 'manufacturing', 'facilities', 'would', 'impact', 'cost', 'production', 'results', 'operation', 'car', 'safety', 'regulations', 'affecting', 'passive', 'safety', 'systems', 'systems', 'protect', 'occupant', 'event', 'crash', 'systems', 'protect', 'pedestrian', 'event', 'struck', 'vehicle', 'stabilized', 'become', 'globally', 'established', 'recent', 'times', 'focus', 'regulators', 'shifted', 'active', 'safety', 'crash', 'avoidance', 'measures', 'reduce', 'driver', 'distraction', 'provide', 'autonomous', 'functionality', 'introduction', 'advanced', 'vehicle', 'vehicle', 'vehicle', 'infrastructure', 'communication', 'technologies', 'recent', 'regulatory', 'activity', 'introduced', 'new', 'rules', 'emergency', 'communications', 'systems', 'operate', 'event', 'vehicle', 'crash', 'requirements', 'significant', 'influence', 'vehicle', 'electronic', 'architecture', 'cost', 'complexity', 'designing', 'producing', 'cars', 'associated', 'equipment', 'regulators', 'also', 'enhancing', 'requirements', 'defect', 'management', 'reporting', 'consumer', 'awareness', 'car', 'defects', 'united', 'states', 'national', 'traffic', 'motor', 'vehicle', 'safety', 'act', '1966', 'safety', 'act', 'requires', 'vehicle', 'manufacturers', 'meet', 'certain', 'safety', 'standards', 'vehicles', 'sold', 'united', 'states', 'nhtsa', 'authority', 'investigate', 'complaints', 'vehicle', 'safety', 'issue', 'recalls', 'vehicles', 'not', 'comply', 'applicable', 'standards', 'safety', 'act', 'prohibits', 'sale', 'united', 'states', 'new', 'vehicle', 'equipment', 'not', 'conform', 'applicable', 'vehicle', 'safety', 'standards', 'established', 'nhtsa', 'nhtsa', 'standards', 'updated', 'frequently', 'incorporate', 'new', 'technologies', 'requirements', 'manufacturers', 'required', 'notify', 'owners', 'defects', 'vehicle', 'safety', 'remedy', 'defects', 'vehicle', 'recalls', 'safety', 'act', 'also', 'authorizes', 'nhtsa', 'investigate', 'complaints', 'relating', 'vehicle', 'safety', 'nhtsa', 'manufacturer', 'determines', 'vehicle', 'experiencing', 'safety', 'related', 'defects', 'vehicle', 'manufacturer', 'must', 'recall', 'vehicles', 'not', 'comply', 'applicable', 'safety', 'standard', 'depending', 'upon', 'nature', 'repair', 'number', 'vehicles', 'affected', 'cost', 'recalls', 'could', 'substantial', 'required', 'report', 'regulators', 'certain', 'information', 'relating', 'customer', 'complaints', 'warranty', 'claims', 'field', 'reports', 'notices', 'claims', 'involving', 'property', 'damage', 'injuries', 'fatalities', 'united', 'states', 'claims', 'involving', 'fatalities', 'outside', 'united', 'states', 'also', 'required', 'report', 'certain', 'information', 'concerning', 'safety', 'recalls', 'safety', 'campaigns', 'outside', 'united', 'states', 'meeting', 'exceeding', 'many', 'government', 'mandated', 'safety', 'standards', 'costly', 'technologically', 'challenging', 'particularly', 'standards', 'may', 'tension', 'need', 'reduce', 'vehicle', 'weight', 'order', 'satisfy', 'government', 'mandated', 'emissions', 'fuel', 'economy', 'standards', 'recently', 'significant', 'increase', 'number', 'safety', 'recalls', 'manufacturers', 'united', 'states', 'vehicles', 'involved', 'recalls', 'due', 'part', 'significant', 'public', 'governmental', 'attention', 'recall', 'process', 'nhtsa', 'expanded', 'definition', 'safety', 'defects', 'addition', 'recent', 'increase', 'civil', 'penalties', 'levied', 'use', 'consent', 'orders', 'requiring', 'direct', 'oversight', 'nhtsa', 'certain', 'manufacturers', 'safety', 'processes', 'trend', 'could', 'continue', 'government', 'safety', 'regulators', 'determine', 'safety', 'defect', 'noncompliance', 'exists', 'respect', 'certain', 'vehicles', 'prior', 'start', 'production', 'launch', 'vehicle', 'could', 'delayed', 'defect', 'remedied', 'differing', 'requirements', 'among', 'various', 'countries', 'create', 'complexity', 'increase', 'costs', 'development', 'production', 'common', 'product', 'meets', 'country', 'regulatory', 'requirements', 'countries', 'not', 'possible', 'efforts', 'harmonize', 'regulations', 'continues', 'no', 'significant', 'harmonization', 'expected', 'achieved', 'near', 'mid', 'term', 'united', 'states', 'national', 'traffic', 'motor', 'vehicle', 'safety', 'act', '1966', 'requires', 'vehicle', 'manufacturers', 'meet', 'certain', 'safety', 'standards', 'vehicles', 'sold', 'united', 'states', 'nhtsa', 'authority', 'investigate', 'complaints', 'vehicle', 'safety', 'issue', 'recalls', 'vehicles', 'not', 'comply', 'applicable', 'standards', 'nhtsa', 'standards', 'updated', 'frequently', 'incorporate', 'new', 'technologies', 'requirements', '115', 'differing', 'requirements', 'among', 'various', 'countries', 'create', 'complexity', 'increase', 'costs', 'development', 'production', 'common', 'product', 'meets', 'country', 'regulatory', 'requirements', 'countries', 'not', 'possible', 'efforts', 'harmonize', 'regulations', 'continues', 'no', 'significant', 'harmonization', 'expected', 'achieved', 'near', 'mid', 'term', '116', 'management', 'board', 'directors', 'aston', 'martin', 'lagonda', 'limited', 'aston', 'martin', 'lagonda', 'limited', 'wholly', 'owned', 'subsidiary', 'aston', 'martin', 'investments', 'limited', 'main', 'operating', 'company', 'group', 'set', 'forth', 'name', 'age', 'position', 'member', 'board', 'directors', 'aston', 'martin', 'lagonda', 'limited', 'december', '31', '2016', 'business', 'address', 'directors', 'aston', 'martin', 'lagonda', 'limited', 'banbury', 'road', 'gaydon', 'warwick', 'united', 'kingdom', 'cv35', '0db', 'name', 'amr', 'ali', 'abdallah', 'abouelseoud', 'mahmoud', 'samy', 'mohamed', 'ali', 'el', 'sayed', 'roberto', 'maestroni', 'umberto', 'magnetti', 'andrew', 'charles', 'palmer', 'marek', 'paul', 'reichman', 'mark', 'gerrard', 'wilson', 'age', '49', '45', '41', '41', '53', '50', '43', 'position', 'director', 'director', 'director', 'director', 'president', 'chief', 'executive', 'officer', 'evp', 'chief', 'creative', 'officer', 'evp', 'chief', 'financial', 'officer', 'mr', 'amr', 'ali', 'abdallah', 'abouelseoud', 'mr', 'abouelseoud', 'joined', 'board', '2007', 'playing', 'major', 'role', 'acquisition', 'aml', 'ford', 'motor', 'company', 'also', 'member', 'aston', 'martin', 'lagonda', 'limited', 'remuneration', 'finance', 'audit', 'committees', 'number', 'years', 'experience', 'investment', 'industry', 'mainly', 'middle', 'east', 'mr', 'abouelseoud', 'also', 'currently', 'holds', 'board', 'positions', 'tejara', 'capital', 'limited', 'tejara', 'capital', 'investment', 'bank', 'manazel', 'holding', 'co', 'k', 'c', 'c', 'al', 'dar', 'asset', 'management', 'company', 'credit', 'rating', 'collection', 'company', 'mr', 'abouelseoud', 'also', 'board', 'holdings', 'aston', 'martin', 'lagonda', 'group', 'limited', 'aston', 'martin', 'investment', 'limited', 'mr', 'abouelseoud', 'bachelor', 'commerce', 'accounting', 'cairo', 'university', 'certified', 'public', 'accountant', 'mr', 'mahmoud', 'samy', 'mohamed', 'ali', 'el', 'sayed', 'mr', 'ali', 'el', 'sayed', 'joined', 'board', 'aml', 'may', '2007', 'current', 'chief', 'executive', 'officer', 'vice', 'chairman', 'adeem', 'investment', 'wealth', 'management', 'company', 'prior', 'mr', 'ali', 'el', 'sayed', 'executive', 'vice', 'president', 'investment', 'risk', 'management', 'efad', 'holding', 'k', 'c', 'c', 'also', 'worked', 'assurance', 'services', 'pricewaterhousecoopers', 'kuwait', 'kpmg', 'egypt', 'holds', 'bs', 'commerce', 'accountancy', 'cairo', 'university', 'certified', 'risk', 'analyst', 'certified', 'public', 'accountant', 'mr', 'ali', 'el', 'sayed', 'also', 'board', 'holdings', 'aston', 'martin', 'lagonda', 'group', 'limited', 'aston', 'martin', 'investment', 'limited', 'aston', 'martin', 'lagonda', 'limited', 'lagonda', 'properties', 'limited', 'aston', 'martin', 'lagonda', 'north', 'america', 'inc', 'mr', 'roberto', 'maestroni', 'mr', 'maestroni', 'joined', 'aml', 'board', '2013', 'senior', 'principal', 'bi', 'invest', 'services', 'advisory', 'company', 'investment', 'subsidiaries', 'investindustrial', 'v', 'l', 'p', 'joined', '1999', 'mr', 'maestroni', 'board', 'member', 'number', 'consumer', 'industrial', 'companies', 'including', 'b', 'b', 'italia', 'flos', 'stroili', 'oro', 'ducati', 'perfume', 'holding', 'gardaland', 'mr', 'maestroni', 'holds', 'sc', 'business', 'administration', 'specializing', 'financial', 'institution', 'management', 'bocconi', 'university', 'milan', 'italy', 'mr', 'umberto', 'magnetti', 'mr', 'magnetti', 'non', 'executive', 'director', 'aml', 'since', '2013', 'joined', 'bi', 'invest', 'services', '2011', 'previously', 'spent', 'four', 'years', 'adveq', 'management', 'zurich', 'switzerland', 'responsible', 'primary', 'secondary', 'private', 'equity', 'fund', 'investments', 'prior', 'business', 'consultant', 'boston', 'consulting', 'group', 'zurich', 'milan', 'worked', 'fiat', 'gm', 'powertrain', 'turin', 'italy', 'holds', 'sc', 'aerospace', 'engineering', 'politecnico', 'milan', 'italy', 'mba', 'iese', 'business', 'school', 'barcelona', 'spain', '117', 'dr', 'andrew', 'charles', 'palmer', 'cmg', 'dr', 'palmer', 'joined', 'aml', 'president', 'chief', 'executive', 'officer', 'october', '2014', 'britishborn', 'chartered', 'engineer', 'chartered', 'manager', 'businessman', '37', 'years', 'experience', 'automotive', 'industry', 'starting', 'professional', 'career', 'apprentice', 'automotive', 'products', 'limited', 'uk', 'prior', 'joining', 'aston', 'martin', 'lagonda', 'limited', 'held', 'position', 'chief', 'planning', 'officer', 'nissan', 'motor', 'co', 'member', 'nissan', 'executive', 'committee', 'dr', 'palmer', 'graduated', 'warwick', 'university', 'master', 'degree', 'msc', 'product', 'engineering', '1990', 'acquired', 'doctorate', 'phd', 'engineering', 'management', 'cranfield', 'university', '2004', '2014', 'new', 'year', 'honors', 'list', 'palmer', 'named', 'companion', 'order', 'st', 'michael', 'st', 'george', 'cmg', 'recognition', 'services', 'british', 'automotive', 'industry', 'dr', 'palmer', 'also', 'board', 'holdings', 'aston', 'martin', 'lagonda', 'group', 'limited', 'aston', 'martin', 'investment', 'limited', 'aston', 'martin', 'lagonda', 'limited', 'mr', 'mark', 'gerrard', 'wilson', 'mr', 'wilson', 'joined', 'aml', 'may', '2015', 'executive', 'vice', 'president', 'chief', 'financial', 'officer', 'strong', 'track', 'record', 'senior', 'automotive', 'experience', 'already', 'accrued', 'mclaren', 'automotive', 'lotus', 'car', 'ltd', 'mr', 'wilson', 'joined', 'aston', 'martin', 'renewable', 'energy', 'insurer', 'g', 'cube', 'underwriting', 'held', 'position', 'chief', 'financial', 'operating', 'officer', 'mr', 'wilson', 'reports', 'directly', 'dr', 'andrew', 'charles', 'palmer', 'executive', 'board', 'company', 'global', 'headquarters', 'gaydon', 'warwickshire', 'mr', 'marek', 'paul', 'reichman', 'mr', 'reichman', 'joined', 'aml', '2005', 'executive', 'vice', 'president', 'chief', 'creative', 'officer', 'responsible', 'design', 'developments', 'professional', 'career', 'held', 'design', 'roles', 'ford', 'bmw', 'land', 'rover', 'rover', 'cars', 'nissan', 'prior', 'joining', 'aston', 'martin', 'lagonda', 'limited', 'design', 'director', 'ford', 'north', 'america', 'mr', 'reichman', 'holds', 'b', 'industrial', 'design', 'teesside', 'university', 'mdes', 'vehicle', 'design', 'royal', 'college', 'art', 'london', '2011', 'mr', 'reichman', 'received', 'honorary', 'doctorate', 'teesside', 'university', 'senior', 'management', 'aston', 'martin', 'lagonda', 'limited', 'set', 'forth', 'names', 'ages', 'december', '31', '2016', 'positions', 'senior', 'management', 'name', 'katia', 'bassi', 'richard', 'humbert', 'michael', 'kerr', 'david', 'jeremy', 'king', 'nick', 'lines', 'michael', 'francis', 'marecki', 'christian', 'marti', 'andrew', 'charles', 'palmer', 'marek', 'paul', 'reichman', 'keith', 'victor', 'charles', 'stanton', 'simon', 'david', 'andrew', 'sproule', 'maximilian', 'szwaj', 'mark', 'gerrard', 'wilson', 'age', '49', '53', '62', '52', '45', '56', '50', '53', '50', '56', '48', '52', '43', 'position', 'vp', 'aml', 'managing', 'director', 'brands', 'vp', 'chief', 'quality', 'officer', 'vp', 'chief', 'human', 'resources', 'officer', 'vp', 'chief', 'special', 'operations', 'officer', 'vp', 'chief', 'planning', 'officer', 'vp', 'general', 'counsel', 'vp', 'chief', 'sales', 'officer', 'president', 'chief', 'executive', 'officer', 'evp', 'chief', 'creative', 'officer', 'vp', 'chief', 'manufacturing', 'operations', 'officer', 'vp', 'chief', 'marketing', 'officer', 'vp', 'chief', 'technical', 'officer', 'evp', 'chief', 'financial', 'officer', 'profiles', 'member', 'senior', 'management', 'aston', 'martin', 'lagonda', 'limited', 'set', 'extent', 'not', 'already', 'disclosed', 'management', 'board', 'directors', 'aston', 'martin', 'lagonda', 'limited', 'mrs', 'katia', 'bassi', 'mrs', 'bassi', 'joined', 'brands', 'limited', 'february', '2013', 'currently', 'serves', 'vice', 'president', 'aston', 'martin', 'lagonda', 'limited', 'managing', 'director', 'brands', 'limited', 'prior', 'mrs', 'bassi', 'joined', 'swatch', 'group', '1990', 'marketing', 'manager', 'tissot', 'appointed', '118', 'brand', 'director', 'pierre', 'balmain', '2001', '2007', 'led', 'ferrari', 'licensing', 'department', 'appointment', 'may', '2007', 'commercial', 'director', 'fc', 'internazionale', 'spa', 'december', '2008', 'worked', 'italy', 'country', 'director', 'vice', 'president', 'european', 'business', 'development', 'national', 'basketball', 'association', 'nba', 'mrs', 'bassi', 'holds', 'bachelor', 'political', 'science', 'university', 'milan', 'bachelor', 'law', 'university', 'pavia', 'mba', 'harvard', 'business', 'school', 'mr', 'richard', 'humbert', 'mr', 'humbert', 'joined', 'aml', 'november', '2007', 'holds', 'position', 'vice', 'president', 'chief', 'quality', 'officer', 'joining', 'aston', 'martin', 'lagonda', 'limited', 'mr', 'humbert', 'worked', 'general', 'manager', 'quality', 'assurance', 'toyota', 'motor', 'manufacturing', 'uk', 'mr', 'humbert', 'holds', 'bachelor', 'degree', 'mechanical', 'engineering', 'university', 'surrey', 'mr', 'michael', 'kerr', 'mr', 'kerr', 'joined', 'aml', 'vice', 'president', 'chief', 'human', 'resources', 'officer', 'june', '2014', 'held', 'position', 'west', 'ham', 'united', 'fc', 'since', '2007', 'mr', 'kerr', 'also', 'held', 'many', 'hr', 'positions', 'including', '12', 'years', 'director', 'aviva', 'norwich', 'graduated', 'university', 'hull', 'ba', 'hons', 'special', 'studies', 'mr', 'david', 'jeremy', 'king', 'mr', 'king', 'joined', 'aml', 'may', '1995', 'currently', 'serves', 'vice', 'president', 'chief', 'special', 'operations', 'officer', '1986', '1995', 'worked', 'jaguar', 'cars', 'ltd', 'mr', 'king', 'holds', 'b', 'tech', 'automotive', 'engineering', 'design', 'loughborough', 'university', 'mr', 'nick', 'lines', 'mr', 'lines', 'joined', 'aml', '2001', 'currently', 'works', 'vice', 'president', 'chief', 'planning', 'officer', 'prior', 'working', 'aston', 'martin', 'lagonda', 'limited', 'mr', 'lines', 'worked', 'bmw', 'uk', 'manufacturing', 'limited', 'holds', 'masters', 'engineering', 'university', 'manchester', 'master', 'business', 'administration', 'warwick', 'business', 'school', 'mr', 'lines', 'also', 'chartered', 'mechanical', 'engineer', 'mr', 'michael', 'francis', 'marecki', 'mr', 'marecki', 'joined', 'aml', 'july', '2007', 'vice', 'president', 'general', 'counsel', 'company', 'secretary', 'prior', 'current', 'position', 'mr', 'marecki', 'worked', '1988', 'june', '2007', 'ford', 'motor', 'company', 'latterly', 'assistant', 'general', 'counsel', 'environment', 'safety', 'mr', 'marecki', 'holds', 'juris', 'doctor', 'georgetown', 'university', 'law', 'center', 'bachelor', 'arts', 'fordham', 'university', 'mr', 'christian', 'marti', 'mr', 'marti', 'joined', 'aml', 'june', '2013', 'global', 'sales', 'director', 'serves', 'vice', 'president', 'chief', 'sales', 'officer', 'mr', 'marti', 'previously', 'held', 'position', 'european', 'sales', 'director', 'mclaren', 'automotive', 'well', 'numerous', 'titles', 'bmw', 'group', 'renault', 'deutschland', 'ag', 'jaguar', 'land', 'rover', 'well', 'established', 'within', 'automotive', 'industry', 'accruing', '20', 'years', 'experience', 'mr', 'marti', 'studied', 'technical', 'university', 'berlin', '2', 'years', 'followed', '3', 'years', 'escp', 'europe', 'resulting', 'mba', 'international', 'business', 'management', 'mr', 'keith', 'victor', 'charles', 'stanton', 'mr', 'stanton', 'joined', 'aml', '2006', 'currently', 'works', 'vice', 'president', 'chief', 'manufacturing', 'operations', 'officer', 'mr', 'stanton', '35', 'years', 'experience', 'automotive', 'sector', 'held', 'previous', 'positions', 'global', 'purchasing', 'business', 'improvement', 'director', 'ldv', 'plant', 'operations', 'director', 'ford', 'motor', 'company', 'mr', 'stanton', 'studied', 'london', 'city', 'university', 'business', 'school', 'holds', 'master', 'degree', 'business', 'administration', '119', 'mr', 'simon', 'david', 'andrew', 'sproule', 'mr', 'sproule', 'vice', 'president', 'chief', 'marketing', 'officer', 'since', 'november', '2014', 'responsible', 'global', 'marketing', 'global', 'communications', 'aston', 'martin', 'worldwide', 'prior', 'aml', 'served', 'senior', 'executive', 'positions', 'tesla', 'motors', 'nissan', 'motor', 'company', 'first', 'joined', 'nissan', 'north', 'america', 'operations', 'june', '2003', 'aston', 'martin', 'jaguar', 'land', 'rover', 'north', 'america', 'served', 'chief', 'communications', 'officer', 'north', 'america', '2009', '2011', 'mr', 'sproule', 'served', 'head', 'global', 'communications', 'renaultnissan', 'alliance', 'based', 'paris', '22', 'years', 'auto', 'industry', 'experience', 'first', 'position', 'ford', 'motor', 'company', 'uk', '1998', 'mr', 'sproule', 'moved', 'ford', 'global', 'operations', 'dearborn', 'michigan', 'followed', 'appointment', '2000', 'leading', 'communications', 'north', 'america', 'jaguar', 'first', '2001', 'also', 'aston', 'martin', 'land', 'rover', 'mr', 'sproule', 'holds', 'bsc', 'kings', 'college', 'london', 'university', 'london', 'mr', 'maximilian', 'szwaj', 'mr', 'szwaj', 'vice', 'president', 'chief', 'technical', 'officer', 'joined', 'aston', 'martin', 'lagonda', 'limited', 'december', '2016', 'mr', 'szwaj', 'responsible', 'aston', 'martin', 'global', 'engineering', 'operations', 'reports', 'directly', 'president', 'chief', 'executive', 'officer', 'dr', 'andy', 'palmer', 'mr', 'szwaj', 'joined', 'aml', 'maserati', 'ferrari', 'served', 'head', 'innovation', 'body', 'engineering', 'spent', '25', 'years', 'automotive', 'industry', 'held', 'management', 'positions', 'bmw', 'porsche', 'well', 'recent', 'position', 'maserati', 'ferrari', 'mr', 'szwaj', 'holds', 'bachelor', 'degree', 'mechanical', 'engineering', 'design', 'trinity', 'college', 'dublin', 'compensation', 'aggregate', 'compensation', 'paid', 'us', 'directors', 'key', 'management', 'personnel', 'year', 'ended', 'december', '31', '2016', '8', '2', 'million', '120', 'description', 'issuer', 'issuer', 'public', 'company', 'limited', 'liability', 'incorporated', 'jersey', 'march', '21', '2017', 'company', 'number', '123447', 'companies', 'jersey', 'law', '1991', 'amended', 'also', 'relevant', 'primary', 'legislation', 'issuer', 'operates', 'purposes', 'issuing', 'existing', 'notes', 'issuer', 'no', 'significant', 'assets', 'notes', 'proceeds', 'loan', 'giving', 'effect', 'transactions', 'shares', 'holds', 'capital', 'issuer', 'special', 'purpose', 'vehicle', 'lend', 'proceeds', 'offering', 'notes', 'aml', 'issuer', 'not', 'engaged', 'not', 'engage', 'activity', 'business', 'activities', 'described', 'referred', 'offering', 'memorandum', 'issuer', 'managed', 'controlled', 'directors', 'united', 'kingdom', 'registered', 'office', 'issuer', 'located', 'po', 'box', '218', '43', '45', 'la', 'motte', 'street', 'st', 'helier', 'jersey', 'je4', '8sd', 'telephone', 'number', '44', '0', '1534', '702', '800', 'memorandum', 'articles', 'association', 'issuer', 'may', 'inspected', 'registered', 'address', 'issuer', 'set', 'listing', 'general', 'information', 'directors', 'company', 'secretary', 'corporate', 'services', 'directors', 'issuer', 'respective', 'business', 'addresses', 'principal', 'activities', 'name', 'nationality', 'business', 'address', 'principal', 'activities', 'mark', 'gerrard', 'wilson', 'british', 'director', 'nigel', 'john', 'young', 'british', '43', '45', 'la', 'motte', 'street', 'st', 'helier', 'jersey', 'je4', '8sd', '43', '45', 'la', 'motte', 'street', 'st', 'helier', 'jersey', 'je4', '8sd', 'director', 'nigel', 'john', 'young', 'mr', 'young', 'joined', 'aston', 'martin', 'april', '2006', 'director', 'accounting', 'treasury', 'tax', 'chartered', 'accountant', 'spent', '14', 'years', 'profession', 'including', '8', 'years', 'senior', 'manager', 'kpmg', 'mr', 'young', '27', 'years', 'experience', 'automotive', 'industry', 'spent', '16', 'years', 'variety', 'financial', 'positions', 'rover', 'group', 'joining', 'aston', 'martin', '2006', 'secretary', 'issuer', 'name', 'business', 'address', 'mcs', 'limited', 'office', '2102', '21st', 'floor', 'saba', 'tower', '1', 'jumeirah', 'lake', 'towers', 'po', 'box', '24075', 'dubai', 'united', 'arab', 'emirates', 'minerva', 'trust', 'company', 'limited', 'provides', 'issuer', 'general', 'secretarial', 'registrar', 'company', 'administration', 'services', 'fees', 'payable', 'minerva', 'trust', 'company', 'limited', 'pursuant', 'accordance', 'standard', 'terms', 'business', 'minerva', 'trust', 'company', 'limited', 'principal', 'activities', 'issuer', 'principal', 'activities', 'issue', 'notes', 'utilization', 'proceeds', 'notes', 'lend', 'affiliates', 'issuer', 'execution', 'performance', 'principal', 'documents', 'execution', 'performance', 'documents', 'relating', 'thereto', 'expressed', 'party', 'provision', 'guarantee', 'new', 'revolving', 'credit', 'facility', 'exercise', 'related', 'rights', 'powers', 'activities', 'reasonably', 'incidental', 'thereto', 'directors', 'interests', 'issuer', 'directors', 'also', 'employees', 'directors', 'company', 'subsidiaries', 'directors', 'issuer', 'not', 'remunerated', 'issuer', 'role', 'directors', 'matter', 'jersey', 'law', 'director', 'issuer', 'duty', 'act', 'honestly', 'good', 'faith', 'view', 'act', 'best', 'interests', 'issuer', 'regardless', 'directorship', 'director', 'may', 'hold', 'director', 'responsible', 'advising', 'board', 'directors', 'advance', 'potential', 'conflicts', 'interest', '121', 'share', 'capital', 'issuer', 'incorporated', 'authorized', 'share', 'capital', '10', '000', 'comprising', '10', '000', 'ordinary', 'shares', '1', '00', 'two', 'ordinary', 'shares', 'allotted', 'cash', 'fully', 'paid', 'incorporation', 'date', 'offering', 'memorandum', 'entire', 'issued', 'share', 'capital', 'issuer', 'held', 'company', 'date', 'offering', 'memorandum', 'no', 'loan', 'capital', 'outstanding', 'loan', 'capital', 'created', 'unissued', 'term', 'loan', 'borrowing', 'indebtedness', 'nature', 'borrowing', 'contingent', 'liability', 'guarantee', 'respect', 'issuer', 'financial', 'position', 'issuer', 'issuer', 'not', 'traded', 'since', 'incorporation', 'march', '21', '2017', 'relation', 'issue', 'notes', 'offered', 'hereby', 'provision', 'guarantees', 'new', 'revolving', 'credit', 'facility', 'entered', 'holdings', 'publishes', 'annual', 'consolidated', 'financial', 'information', 'subsidiaries', 'march', '21', '2017', 'includes', 'issuer', 'accordance', 'laws', 'england', 'wales', 'issuer', 'publish', 'financial', 'information', 'extent', 'required', 'jersey', 'law', '122', 'principal', 'shareholders', 'shareholding', 'holdings', 'wholly', 'owns', 'company', 'follows', 'name', 'prestige', 'motor', 'holdings', 'primewagon', 'jersey', 'limited', 'stehwaz', 'automotive', 'jersey', 'limited', 'asmar', 'limited', 'adeem', 'automotive', 'manufacturing', 'company', 'limited', 'tejara', 'capital', 'limited', 'tejara', 'capital', 'investment', 'bank', 'limited', 'ulrich', 'bez', 'daimler', 'ag', 'preferred', 'prestige', 'motor', 'holdings', 'warwick', 'european', 'credit', 'opportunities', 'fund', 'l', 'p', 'warwick', 'european', 'opportunities', 'fund', 'inc', 'york', 'global', 'finance', 'offshore', 'bdh', 'luxembourg', 'r', 'l', 'total', 'ordinary', 'shares', 'total', 'shares', 'total', 'preference', 'shares', 'ordinary', 'shares', 'shares', 'preference', 'shares', 'shareholding', '1', '238', '547', '639', '569', '81', '428', '624', '401', '37', '70', '19', '47', '2', '48', '19', '01', '362', '578', '151', '933', '3', '200', '21', '714', '11', '04', '4', '63', '0', '10', '0', '66', '4', '92', '161', '521', '150', '000', '000', '3', '448', '307', '6', '551', '693', '40', '000', '000', '3', '123', '370', '161', '521', '200', '000', '000', 'ordinary', 'shares', 'date', 'offering', 'memorandum', 'asmar', 'limited', 'owns', '19', '0', 'ordinary', 'shares', 'includes', 'shares', 'holdings', 'shares', 'ioh', 'owns', '24', '2', 'shares', 'including', '100', 'ownership', 'intermediary', 'entities', 'including', 'ownership', 'primewagon', 'jersey', 'limited', 'owns', '19', '5', 'shares', 'ioh', 'also', 'indirectly', 'owns', '29', '51', 'ordinary', 'shares', 'asmar', 'limited', 'addition', 'currently', 'contemplated', 'ioh', 'may', 'reorganize', 'holdings', 'holdings', 'change', 'remains', 'subject', 'certain', 'consents', 'not', 'impact', 'beneficial', 'ownership', 'may', 'impact', 'direct', 'holdings', 'certain', 'affiliates', 'funds', 'investment', 'subsidiaries', 'applicable', 'managed', 'investindustrial', 'advisors', 'limited', 'affiliates', 'beneficially', '37', '7', 'shares', '100', 'indirect', 'ownership', 'prestige', 'motor', 'holdings', 'adeem', 'automotive', 'manufacturing', 'company', 'limited', 'owns', '11', '0', 'shares', 'stehwaz', 'automotive', 'jersey', 'limited', 'owns', '2', '5', 'shares', 'addition', 'daimler', 'ag', 'owns', '4', '9', 'shares', 'however', 'daimler', 'shares', 'non', 'voting', 'ordinary', 'shares', 'former', 'chief', 'executive', 'officer', 'dr', 'ulrich', 'bez', 'beneficially', '0', '7', 'shares', 'option', 'purchase', 'additional', '21', '714', 'ordinary', 'shares', '0', '7', 'shares', 'date', 'offering', 'memorandum', 'shareholders', 'party', 'shareholders', 'agreement', 'see', 'certain', 'relationships', 'related', 'party', 'transactions', 'shareholders', 'agreement', 'issued', 'shares', 'fully', 'paid', 'exception', '21', '714', 'shares', 'beneficially', 'owned', 'dr', 'ulrich', 'bez', 'partly', 'paid', 'preference', 'shares', 'holdings', '200', '000', '000', 'preference', 'shares', 'issue', 'nominal', 'value', '0', '01', 'preference', 'shares', 'preference', 'share', 'paid', '1', '00', 'preference', 'shares', 'allotted', 'issued', 'two', 'tranches', 'first', 'april', '29', '2015', 'subscription', 'amount', '100', 'million', 'second', 'april', '15', '2016', 'subscription', 'amount', '100', 'million', 'date', 'offering', 'memorandum', 'funds', 'investment', 'subsidiaries', 'applicable', 'managed', 'investindustrial', 'advisors', 'limited', 'affiliates', 'beneficially', '75', 'preference', 'shares', '100', 'ownership', 'preferred', 'prestige', 'motor', 'holdings', 'preference', 'shares', 'rank', 'priority', 'holdings', 'classes', 'shares', 'issue', 'preference', 'shares', 'bear', 'right', 'fixed', 'cumulative', 'preferential', 'dividend', 'rate', '15', '123', 'per', 'annum', 'paid', 'amount', 'per', 'share', 'fixed', 'cumulative', 'dividend', 'accrues', 'daily', 'basis', 'including', 'relevant', 'date', 'issue', 'compounding', 'annually', 'april', '29', 'year', 'cumulative', 'dividend', 'paid', 'either', 'applicable', 'date', 'redemption', 'relevant', 'preference', 'share', 'april', '28', '2025', 'preference', 'shares', 'redeemed', 'time', 'holdings', 'however', 'redemption', 'prior', 'october', '29', '2019', 'would', 'require', 'payment', 'make', 'whole', 'premium', 'warrants', 'attached', 'preference', 'shares', 'give', 'holders', 'right', 'subscribe', 'class', 'non', 'voting', 'shares', 'equivalent', 'economic', 'rights', 'holdings', 'ordinary', 'shares', 'p', 'shares', 'currently', 'no', 'p', 'shares', 'issue', 'terms', 'preference', 'shares', 'contain', 'covenants', 'among', 'things', 'limit', 'ability', 'ability', 'restricted', 'subsidiaries', 'incur', 'guarantee', 'additional', 'indebtedness', 'issue', 'certain', 'preferred', 'stock', 'make', 'certain', 'payments', 'investments', 'currently', 'preference', 'shares', 'may', 'restrictive', 'indenture', 'governing', 'notes', 'new', 'revolving', 'credit', 'facility', 'including', 'restriction', 'ability', 'incur', 'debt', 'subject', 'certain', 'exceptions', 'unless', 'holdings', 'consolidated', 'leverage', 'ratio', 'less', '5', '0', '1', '0', 'certain', 'restrictions', 'making', 'investments', 'connection', 'transactions', 'expect', 'issue', 'date', 'amend', 'terms', 'preference', 'shares', 'align', 'relevant', 'provisions', 'notes', '124', 'certain', 'relationships', 'related', 'party', 'transactions', 'shareholders', 'agreement', 'agreement', 'dated', 'october', '18', '2007', 'amended', 'april', '30', '2013', 'september', '19', '2015', 'among', 'primewagon', 'jersey', 'limited', 'adeem', 'automotive', 'manufacturing', 'company', 'limited', 'ulrich', 'bez', 'asmar', 'limited', 'stehwaz', 'automotive', 'jersey', 'limited', 'tejara', 'capital', 'limited', 'aston', 'martin', 'holdings', 'uk', 'limited', 'prestige', 'motor', 'holdings', 'agreement', 'governs', 'relationship', 'shareholders', 'holdings', 'information', 'current', 'shareholders', 'respective', 'interests', 'ordinary', 'shares', 'holdings', 'shares', 'see', 'principal', 'shareholders', 'agreement', 'certain', 'reserved', 'matters', 'require', 'approval', 'majority', 'directors', 'holdings', 'major', 'disposals', 'acquisitions', 'borrowing', 'related', 'party', 'contracts', 'addition', 'shareholder', 'granted', 'certain', 'rights', 'respect', 'appointments', 'removal', 'board', 'differentiated', 'broadly', 'accordance', 'distribution', 'shares', 'agreement', 'includes', 'limitations', 'transfer', 'shares', 'including', 'restriction', 'transfer', 'shares', 'automobile', 'producers', 'agreement', 'includes', 'tag', 'along', 'provisions', 'requiring', 'offer', 'made', 'shares', 'event', 'person', 'corporate', 'shareholders', 'person', 'connected', 'acting', 'concert', 'acquiring', '10', 'shares', 'consideration', 'not', 'less', 'amount', 'per', 'share', 'payable', 'connection', 'transfer', 'giving', 'rise', 'tag', 'along', 'rights', 'agreement', 'also', 'includes', 'drag', 'along', 'rights', 'event', 'person', 'corporate', 'shareholders', 'person', 'connected', 'acting', 'concert', 'acquiring', '75', 'shares', 'shareholders', 'right', 'first', 'offer', 'respect', 'proposed', 'transfer', 'shares', 'held', 'tejara', 'capital', 'limited', 'dr', 'ulrich', 'bez', 'pre', 'emptive', 'rights', 'respect', 'new', 'issuances', 'shares', 'shareholders', 'also', 'right', 'first', 'offer', 'respect', 'proposed', 'transfer', 'shares', 'held', 'shareholder', 'holding', '30', 'shares', 'connection', 'exit', 'certain', 'time', 'periods', 'agreement', 'also', 'requires', 'issue', 'new', 'shares', 'necessary', 'relieve', 'us', 'one', 'affiliates', 'funding', 'obligations', 'material', 'financing', 'document', 'corporate', 'opportunity', 'made', 'available', 'shareholder', 'also', 'relevant', 'business', 'group', 'agreement', 'requires', 'shareholder', 'disclose', 'opportunity', 'board', 'holdings', 'discuss', 'good', 'faith', 'board', 'holdings', 'whether', 'shareholder', 'group', 'pursue', 'agreement', 'not', 'require', 'shareholder', 'offer', 'opportunity', 'group', 'preference', 'shares', 'subscription', 'shareholders', 'agreement', 'dated', 'april', '23', '2015', 'sets', 'terms', 'conditions', 'allotment', 'issue', 'preference', 'shares', 'among', 'securities', 'holdings', 'see', 'principal', 'shareholders', 'preference', 'shares', 'asmar', 'limited', 'aston', 'martin', 'middle', 'east', 'north', 'africa', 'distributorship', 'agreement', 'agreement', 'dated', 'may', '26', '2009', 'amended', 'february', '23', '2012', 'aston', 'martin', 'lagonda', 'limited', 'granted', 'asmar', 'limited', 'exclusive', 'right', 'import', 'distribute', 'service', 'vehicles', 'middle', 'east', 'north', 'africa', 'mena', 'region', 'including', 'right', 'appoint', 'certain', 'retail', 'dealers', 'regions', 'agreement', 'not', 'include', 'low', 'volume', 'special', 'edition', 'vehicles', 'aston', 'martin', 'vulcan', 'example', 'company', 'reserved', 'right', 'directly', 'indirectly', 'sell', 'stable', 'special', 'production', 'cars', 'related', 'parts', 'intended', 'professional', 'racing', 'accordance', 'agreement', 'asmar', 'limited', 'appointed', 'subsidiary', 'aston', 'martin', 'mena', 'limited', 'sub', 'distributor', 'agreement', 'price', 'payable', 'aston', 'martin', 'mena', 'limited', 'cars', 'determined', 'according', 'company', 'price', 'export', 'uk', '125', 'mena', 'region', 'together', 'cost', 'freight', 'insurance', 'forwarding', 'can', 'not', 'materially', 'higher', 'uk', 'factory', 'price', 'applicable', 'regions', 'export', 'year', 'ended', 'december', '31', '2016', 'owed', 'aston', 'martin', 'mena', 'limited', '2', '7', 'million', '1', '7', 'million', 'outstanding', 'december', '31', '2016', 'relating', 'margin', 'associated', 'sale', 'cars', 'agreement', 'duration', 'agreement', '50', 'years', 'negotiated', 'least', '24', 'months', 'prior', 'end', 'term', 'view', 'agreement', 'extension', 'either', 'party', 'may', 'terminate', 'agreement', '80', 'days', 'notice', 'case', 'material', 'breach', 'provided', 'default', 'capable', 'remedy', 'defaulting', 'party', 'failed', 'remedy', 'breach', 'within', '340', 'days', 'receiving', 'notice', 'case', 'consistent', 'non', 'material', 'breach', 'provided', 'formal', 'notice', 'given', 'three', 'occasions', 'within', 'period', '6', 'consecutive', 'months', 'occasion', 'defaulting', 'party', 'failed', 'remedy', 'within', '80', 'days', 'receiving', 'last', 'formal', 'notice', 'either', 'party', 'may', 'also', 'terminate', 'agreement', 'immediately', 'case', 'certain', 'insolvency', 'events', 'additionally', 'may', 'terminate', 'agreement', 'notice', 'case', 'breach', 'material', 'obligation', 'related', 'trade', 'mark', 'agreements', 'see', 'default', 'periods', 'longer', '160', 'days', 'event', 'agreement', 'terminates', 'entitled', 'no', 'obligation', 'buy', 'back', 'vehicles', 'possession', 'aston', 'martin', 'mena', 'limited', 'original', 'invoice', 'price', 'trade', 'mark', 'agreements', 'connection', 'mena', 'distribution', 'arrangements', 'described', 'aston', 'martin', 'lagonda', 'limited', 'aston', 'martin', 'mena', 'limited', 'asmar', 'limited', 'also', 'entered', 'trademark', 'licenses', 'sub', 'licenses', 'permitting', 'aston', 'martin', 'mena', 'limited', 'asmar', 'limited', 'relation', 'use', 'aston', 'martin', 'brands', 'trademarks', 'associated', 'devices', 'designs', 'licenses', 'terminate', 'automatically', 'termination', 'distribution', 'agreements', 'described', 'non', 'automotive', 'trademark', 'agreement', 'agreement', 'dated', 'november', '11', '2009', 'aston', 'martin', 'lagonda', 'limited', 'granted', 'asmar', 'limited', 'worldwide', 'license', 'manufacture', 'distribution', 'sale', 'lease', 'performance', 'promotion', 'marketing', 'aston', 'martin', 'branded', 'non', 'automotive', 'products', 'services', 'sub', 'licensed', 'brands', 'limited', 'affiliate', 'certain', 'shareholders', 'old', 'non', 'automotive', 'brand', 'licenses', 'april', '2013', 'old', 'non', 'automotive', 'brand', 'licenses', 'terminated', 'aml', 'entered', 'new', 'license', 'brands', 'essentially', 'terms', 'new', 'non', 'automotive', 'license', 'retain', 'control', 'branding', 'quality', 'products', 'services', 'brands', 'council', 'composed', 'representatives', 'aml', 'brands', 'process', 'agreeing', 'marketing', 'plans', 'brands', 'activities', 'outside', 'agreed', 'marketing', 'plans', 'asmar', 'limited', 'paid', 'us', 'signing', 'fee', '5', '000', '000', 'pursuant', 'old', 'automotive', 'brand', 'licenses', 'new', 'non', 'automotive', 'brand', 'license', 'expires', 'november', '2034', 'aml', 'wishes', 'terminate', 'agreement', 'prior', 'aml', 'may', 'buy', 'back', 'license', 'fair', 'market', 'value', 'licensed', 'rights', 'year', 'ended', 'december', '31', '2016', 'charged', 'brands', 'limited', '1', '4', 'million', '0', '5', 'million', 'outstanding', 'december', '31', '2016', 'associated', 'costs', 'expenses', 'group', 'benefit', 'brands', 'limited', 'products', 'services', 'aston', 'martin', 'works', 'limited', 'servicing', 'business', 'joint', 'venture', 'april', '2011', 'aston', 'martin', 'lagonda', 'limited', 'aston', 'martin', 'works', 'limited', 'amwl', 'wholly', 'owned', 'subsidiary', 'amws', 'limited', 'amws', 'amws', 'affiliate', 'certain', 'shareholders', 'entered', 'agreement', 'sold', 'servicing', 'business', 'works', 'service', 'operation', 'amwl', 'consideration', 'sale', 'servicing', 'business', 'amwl', 'amwl', 'issued', 'new', 'shares', 'amwl', 'amws', 'amws', 'issued', 'new', 'shares', 'aston', 'martin', 'lagonda', 'limited', 'aston', 'martin', 'lagonda', 'limited', 'currently', 'owns', '50', 'amws', 'issued', 'share', 'capital', 'result', 'amwl', 'remains', 'fully', 'consolidated', 'company', 'within', 'aston', 'martin', 'group', '126', 'prodrive', 'motorsport', 'limited', 'aston', 'martin', 'racing', 'amr', 'program', 'agreement', 'agreement', 'dated', 'june', '1', '2007', 'extended', 'amended', 'december', '15', '2009', 'november', '8', '2012', 'aston', 'martin', 'lagonda', 'limited', 'appointed', 'prodrive', 'motorsport', 'limited', 'affiliate', 'certain', 'shareholders', 'prodrive', 'official', 'exclusive', 'motorsport', 'partner', 'operate', 'manage', 'motorsport', 'activities', 'behalf', 'aston', 'martin', 'lagonda', 'limited', 'agreement', 'renewed', 'november', '2012', 'initial', 'term', 'december', '31', '2017', 'amr', 'operating', 'division', 'prodrive', 'exclusive', 'partner', 'sports', 'car', 'gt', 'racing', 'activities', 'worldwide', 'terms', 'agreement', 'restricted', 'carrying', 'activities', 'period', 'agreement', 'agreed', 'provide', 'amr', 'chassis', 'engines', 'cars', 'cost', 'price', 'subject', 'availability', 'amr', 'use', 'respect', 'motorsport', 'activities', 'trade', 'mark', 'license', 'agreement', 'dated', 'april', '19', '2007', 'aston', 'martin', 'lagonda', 'limited', 'granted', 'non', 'exclusive', 'royalty', 'free', 'license', 'prodrive', 'use', 'trademarks', 'sportshift', 'sport', 'shift', 'underlying', 'goodwill', 'trademarks', 'relation', 'aston', 'martin', 'asm', 'transmission', 'system', 'incorporated', 'v8', 'vantage', 'prodrive', 'written', 'consent', 'variant', 'successor', 'current', 'version', 'v8', 'vantage', 'agreement', 'aston', 'martin', 'lagonda', 'limited', 'agreed', 'sell', 'prodrive', 'one', 'v8', 'vantage', '10', 'discount', 'wholesale', 'price', 'agreed', 'indemnify', 'prodrive', 'loss', 'liability', 'damages', 'costs', 'expenses', 'arising', 'either', 'use', 'trademarks', 'license', 'product', 'liability', 'relating', 'transmissions', 'system', 'within', 'v8', 'vantage', 'license', 'continues', 'long', 'rights', 'prodrive', 'successor', 'title', 'trademarks', 'continue', 'otherwise', 'nine', 'months', 'notice', 'prodrive', 'license', 'not', 'able', 'assigned', 'sub', 'contracted', 'sub', 'licensed', 'daimler', 'agreement', 'addition', 'umbrella', 'agreement', 'dated', 'december', '18', '2013', 'aston', 'martin', 'holdings', 'uk', 'limited', 'daimler', 'ag', 'prestige', 'motor', 'holdings', 'shareholders', 'holdings', 'governs', 'relationship', 'daimler', 'ag', 'shareholders', 'including', 'basis', 'cooperation', 'us', 'daimler', 'ag', 'technical', 'partnership', 'pursuant', 'three', 'separate', 'agreements', 'daimler', 'ag', 'support', 'launch', 'db11', 'new', 'generation', 'models', 'incorporate', 'cutting', 'edge', 'technology', 'including', 'navigation', 'entertainment', 'systems', 'newly', 'developed', 'bespoke', 'v8', 'powertrains', 'heritage', 'collection', 'agreement', 'december', '30', '2016', 'aston', 'martin', 'lagonda', 'limited', 'premier', 'international', 'motors', 'group', 'pimg', 'affiliate', 'one', 'shareholders', 'entered', 'agreement', 'facilitate', 'sale', 'certain', 'special', 'edition', 'models', 'pimg', 'aston', 'martin', 'lagonda', 'limited', 'issued', 'credit', 'note', 'pimg', 'value', 'pimg', 'heritage', 'aston', 'martin', 'collection', 'valued', 'independent', 'third', 'party', 'payment', 'collection', 'pimg', 'aston', 'martin', 'lagonda', 'limited', 'apply', 'credit', 'note', 'payment', 'partial', 'payment', 'certain', 'special', 'edition', 'cars', 'sold', 'aston', 'martin', 'lagonda', 'limited', '2017', '2018', 'restoration', 'works', 'heritage', 'cars', 'included', 'transaction', 'refurbished', 'aston', 'martin', 'works', 'pimg', 'expense', '127', 'description', 'financial', 'arrangements', 'following', 'contains', 'summary', 'material', 'provisions', 'new', 'revolving', 'credit', 'facility', 'intercreditor', 'agreement', 'wholesale', 'finance', 'facility', 'inventory', 'funding', 'facilities', 'not', 'purport', 'complete', 'subject', 'qualified', 'entirety', 'reference', 'underlying', 'documents', 'following', 'summary', 'certain', 'provisions', 'documents', 'listed', 'governing', 'certain', 'indebtedness', 'not', 'purport', 'complete', 'subject', 'qualified', 'entirety', 'reference', 'underlying', 'documents', 'new', 'revolving', 'credit', 'facility', 'agreement', 'overview', 'structure', 'date', 'offering', 'memorandum', 'investments', 'parent', 'aml', 'original', 'borrower', 'j', 'p', 'morgan', 'limited', 'deutsche', 'bank', 'ag', 'london', 'branch', 'goldman', 'sachs', 'bank', 'usa', 'mandated', 'lead', 'arrangers', 'together', 'mandated', 'lead', 'arrangers', 'financial', 'institutions', 'named', 'therein', 'original', 'lenders', 'elavon', 'financial', 'services', 'dac', 'uk', 'branch', 'facility', 'agent', 'u', 'bank', 'trustees', 'limited', 'security', 'agent', 'enter', 'new', 'revolving', 'credit', 'facility', 'agreement', 'new', 'revolving', 'credit', 'facility', 'agreement', 'provides', 'borrowings', 'aggregate', 'principal', 'amount', '80', 'million', 'committed', 'basis', 'new', 'revolving', 'credit', 'facility', 'may', 'utilized', 'current', 'future', 'borrower', 'subject', 'certain', 'exceptions', 'new', 'revolving', 'credit', 'facility', 'agreement', 'sterling', 'certain', 'currencies', 'drawing', 'cash', 'advances', 'subject', 'appointment', 'issuing', 'bank', 'issue', 'letters', 'credit', 'bank', 'guarantees', 'way', 'ancillary', 'facilities', 'capitalized', 'terms', 'used', 'sentence', 'not', 'otherwise', 'defined', 'offering', 'memorandum', 'meaning', 'ascribed', 'new', 'revolving', 'credit', 'facility', 'agreement', 'subject', 'certain', 'exceptions', 'loans', 'may', 'borrowed', 'repaid', 'borrowed', 'time', 'borrowings', 'available', 'used', 'towards', 'financing', 'refinancing', 'general', 'corporate', 'working', 'capital', 'purposes', 'investments', 'restricted', 'subsidiaries', 'additional', 'facilities', 'new', 'revolving', 'credit', 'facility', 'agreement', 'contemplates', 'incurrence', 'additional', 'uncommitted', 'revolving', 'facilities', 'maximum', 'amount', 'not', 'exceed', 'taking', 'account', 'commitments', 'new', 'revolving', 'credit', 'facility', 'amount', 'able', 'incurred', 'paragraph', '1', 'second', 'paragraph', 'covenant', 'described', 'description', 'notes', 'certain', 'covenants', 'limitation', 'indebtedness', 'whether', 'new', 'facility', 'commitment', 'additional', 'tranche', 'existing', 'facility', 'increasing', 'commitments', 'existing', 'facility', 'additional', 'facilities', 'shall', 'secured', 'shall', 'rank', 'pari', 'passu', 'new', 'revolving', 'credit', 'facility', 'lenders', 'additional', 'facilities', 'not', 'already', 'lenders', 'new', 'revolving', 'credit', 'facility', 'agreement', 'shall', 'required', 'accede', 'new', 'revolving', 'credit', 'facility', 'agreement', 'shall', 'benefit', 'guarantees', 'transaction', 'security', 'defined', 'new', 'revolving', 'credit', 'facility', 'agreement', 'availability', 'maturity', 'pricing', 'terms', 'additional', 'facility', 'agreed', 'issuer', 'relevant', 'lenders', 'additional', 'facility', 'provided', 'no', 'additional', 'facility', 'may', 'maturity', 'date', 'earlier', 'maturity', 'date', 'new', 'revolving', 'credit', 'facility', 'unless', 'maturity', 'date', 'new', 'revolving', 'credit', 'facility', 'amended', 'match', 'additional', 'facility', 'availability', 'new', 'revolving', 'credit', 'facility', 'may', 'subject', 'satisfaction', 'customary', 'conditions', 'precedent', 'utilized', 'issue', 'date', 'date', 'falling', 'one', 'month', 'prior', 'maturity', 'date', 'new', 'revolving', 'credit', 'facility', '128', 'maturity', 'repayment', 'requirements', 'new', 'revolving', 'credit', 'facility', 'matures', 'date', 'falling', 'three', 'months', 'prior', 'final', 'maturity', 'date', 'notes', 'advance', 'repaid', 'last', 'day', 'interest', 'period', 'relating', 'thereto', 'subject', 'netting', 'mechanism', 'amounts', 'drawn', 'date', 'outstanding', 'amounts', 'new', 'revolving', 'credit', 'facility', 'must', 'repaid', 'full', 'prior', 'maturity', 'date', 'new', 'revolving', 'credit', 'facility', 'amounts', 'repaid', 'borrowers', 'loans', 'made', 'new', 'revolving', 'credit', 'facility', 'may', 'borrowed', 'availability', 'period', 'facility', 'subject', 'certain', 'conditions', 'interest', 'rate', 'fees', 'interest', 'rate', 'cash', 'advances', 'new', 'revolving', 'credit', 'facility', 'percentage', 'rate', 'per', 'annum', 'equal', 'aggregate', 'applicable', 'margin', 'applicable', 'libor', 'euribor', 'subject', 'zero', 'floor', 'initial', 'margin', 'new', 'revolving', 'credit', 'facility', '3', '25', 'subject', 'margin', 'ratchet', 'pursuant', 'margin', 'loans', 'reduced', 'certain', 'leverage', 'ratio', 'thresholds', 'met', 'commitment', 'fee', 'payable', 'aggregate', 'undrawn', 'uncanceled', 'amount', 'new', 'revolving', 'credit', 'facility', 'including', 'issue', 'date', 'including', 'last', 'day', 'availability', 'period', 'new', 'revolving', 'credit', 'facility', 'rate', '30', 'applicable', 'margin', 'new', 'revolving', 'credit', 'facility', 'commitment', 'fee', 'payable', 'quarterly', 'arrears', 'no', 'commitment', 'fee', 'shall', 'payable', 'unless', 'issue', 'date', 'occurs', 'default', 'interest', 'calculated', 'additional', '1', 'overdue', 'amount', 'investments', 'also', 'required', 'pay', 'arrangement', 'fee', 'customary', 'agency', 'fees', 'facility', 'agent', 'security', 'agent', 'connection', 'new', 'revolving', 'credit', 'facility', 'guarantees', 'investments', 'aml', 'aml', 'group', 'ltd', 'issuer', 'original', 'guarantors', 'new', 'revolving', 'credit', 'facility', 'agreement', 'original', 'guarantors', 'original', 'guarantors', 'subject', 'agreed', 'limitation', 'language', 'provide', 'senior', 'guarantee', 'amounts', 'payable', 'finance', 'parties', 'defined', 'new', 'revolving', 'credit', 'facility', 'agreement', 'investment', 'restricted', 'subsidiaries', 'accedes', 'new', 'revolving', 'credit', 'facility', 'agreement', 'additional', 'borrower', 'additional', 'guarantor', 'new', 'revolving', 'credit', 'facility', 'agreement', 'requires', 'subject', 'agreed', 'security', 'principles', 'date', 'annual', 'financial', 'statements', 'defined', 'new', 'revolving', 'credit', 'facility', 'agreement', 'required', 'delivered', 'aggregate', 'earnings', 'interest', 'tax', 'depreciation', 'amortization', 'guarantors', 'equal', 'least', '80', 'consolidated', 'ebitda', 'defined', 'new', 'revolving', 'credit', 'facility', 'agreement', 'group', 'defined', 'new', 'revolving', 'credit', 'facility', 'agreement', 'guarantor', 'coverage', 'test', 'investments', 'shall', 'ensure', 'guarantor', 'coverage', 'test', 'not', 'satisfied', 'within', '90', 'days', 'relevant', 'test', 'date', 'restricted', 'subsidiaries', 'company', 'subject', 'agreed', 'security', 'principles', 'become', 'guarantors', 'guarantor', 'coverage', 'test', 'satisfied', 'calculated', 'additional', 'guarantors', 'guarantors', 'last', 'day', 'relevant', 'financial', 'year', 'security', 'new', 'revolving', 'credit', 'facility', 'subject', 'agreed', 'security', 'principles', 'set', 'new', 'revolving', 'credit', 'facility', 'agreement', 'secured', 'security', 'certain', 'assets', 'described', 'section', 'entitled', 'description', 'notes', 'security', 'terms', 'intercreditor', 'agreement', 'proceeds', 'enforcement', 'security', 'whether', 'not', 'shared', 'holders', 'notes', 'required', 'applied', 'repay', 'indebtedness', 'outstanding', 'new', 'revolving', 'credit', 'facility', 'priority', 'notes', 'representations', 'warranties', 'new', 'revolving', 'credit', 'facility', 'agreement', 'contains', 'certain', 'customary', 'representations', 'warranties', 'subject', 'certain', 'customary', 'materiality', 'actual', 'knowledge', 'qualifications', '129', 'exceptions', 'baskets', 'certain', 'representations', 'warranties', 'repeated', 'including', 'status', 'ii', 'binding', 'obligations', 'iii', 'non', 'conflict', 'obligations', 'iv', 'power', 'authority', 'v', 'validity', 'admissibility', 'evidence', 'vi', 'governing', 'law', 'enforcement', 'covenants', 'new', 'revolving', 'credit', 'facility', 'agreement', 'contains', 'certain', 'incurrence', 'covenants', 'related', 'definitions', 'certain', 'adjustments', 'apply', 'notes', 'addition', 'new', 'revolving', 'credit', 'facility', 'agreement', 'also', 'contains', 'certain', 'affirmative', 'negative', 'covenants', 'set', 'forth', 'brief', 'description', 'covenants', 'subject', 'customary', 'materiality', 'actual', 'knowledge', 'qualifications', 'exceptions', 'baskets', 'affirmative', 'covenants', 'affirmative', 'covenants', 'include', 'among', 'others', 'authorizations', 'consents', 'ii', 'pari', 'passu', 'covenant', 'iii', 'compliance', 'laws', 'iv', 'maintenance', 'guarantor', 'coverage', 'test', 'v', 'assurance', 'vi', 'preservation', 'assets', 'vii', 'insurance', 'viii', 'maintenance', 'material', 'intellectual', 'property', 'ix', 'funding', 'pension', 'schemes', 'provisions', 'negative', 'covenants', 'negative', 'covenants', 'new', 'revolving', 'credit', 'facility', 'agreement', 'substantially', 'negative', 'covenants', 'senior', 'secured', 'notes', 'indenture', 'mandatory', 'prepayment', 'requirements', 'upon', 'change', 'control', 'investments', 'required', 'notify', 'facility', 'agent', 'new', 'revolving', 'credit', 'facility', 'agreement', 'change', 'control', 'defined', 'new', 'revolving', 'credit', 'facility', 'agreement', 'following', 'lender', 'new', 'revolving', 'credit', 'facility', 'agreement', 'entitled', 'require', 'written', 'notice', 'investments', 'repayment', 'outstanding', 'amounts', 'owed', 'lender', 'cancellation', 'lender', 'commitments', 'notwithstanding', 'foregoing', 'ancillary', 'lender', 'case', 'may', 'issuing', 'bank', 'may', 'relevant', 'member', 'group', 'agree', 'continue', 'provide', 'ancillary', 'facility', 'case', 'may', 'letter', 'credit', 'arrangements', 'continuing', 'bilateral', 'basis', 'not', 'part', 'finance', 'documents', 'transaction', 'security', 'shall', 'not', 'following', 'release', 'security', 'agent', 'secure', 'letter', 'credit', 'ancillary', 'facility', 'respect', 'claims', 'arise', 'cancellation', 'capitalized', 'terms', 'used', 'paragraph', 'not', 'otherwise', 'defined', 'offering', 'memorandum', 'meaning', 'ascribed', 'new', 'revolving', 'credit', 'facility', 'agreement', 'financial', 'covenants', 'no', 'maintenance', 'financial', 'covenants', 'new', 'revolving', 'credit', 'facility', 'agreement', 'events', 'default', 'new', 'revolving', 'credit', 'facility', 'agreement', 'provides', 'events', 'default', 'certain', 'adjustments', 'notes', 'addition', 'new', 'revolving', 'credit', 'facility', 'agreement', 'provides', 'certain', 'customary', 'events', 'default', 'subject', 'customary', 'materiality', 'qualifications', 'exceptions', 'baskets', 'grace', 'periods', 'appropriate', 'including', 'representations', 'warranties', 'found', 'untrue', 'misleading', 'made', 'deemed', 'repeated', 'subject', '45', 'day', 'grace', 'period', 'ii', 'unlawfulness', 'invalidity', 'iii', 'failure', 'comply', 'material', 'respect', 'provisions', 'material', 'obligations', 'intercreditor', 'agreement', 'subject', '30', 'day', 'grace', 'period', 'iv', 'repudiation', 'rescission', 'subject', '30', 'day', 'grace', 'period', 'v', 'cessation', 'business', 'vi', 'expropriation', 'vii', 'cross', 'payment', 'default', 'guarantee', 'fee', 'agreement', 'intercreditor', 'agreement', 'intercreditor', 'agreement', 'establish', 'relative', 'rights', 'senior', 'secured', 'creditors', 'defined', 'future', 'senior', 'subordinated', 'creditors', 'defined', 'company', 'issuer', 'guarantors', '130', 'future', 'guarantors', 'respect', 'senior', 'secured', 'notes', 'obligor', 'respect', 'new', 'revolving', 'credit', 'facility', 'future', 'pari', 'passu', 'debt', 'defined', 'future', 'senior', 'subordinated', 'debt', 'defined', 'collectively', 'debtors', 'intragroup', 'lenders', 'defined', 'shareholder', 'creditors', 'defined', 'enter', 'intercreditor', 'agreement', 'dated', 'issue', 'date', 'accepting', 'note', 'relevant', 'holder', 'thereof', 'shall', 'deemed', 'agreed', 'accepted', 'terms', 'conditions', 'intercreditor', 'agreement', 'shall', 'deemed', 'authorized', 'senior', 'secured', 'notes', 'trustee', 'enter', 'intercreditor', 'agreement', 'behalf', 'following', 'description', 'summary', 'certain', 'provisions', 'among', 'others', 'contained', 'intercreditor', 'agreement', 'relate', 'rights', 'obligations', 'holders', 'notes', 'not', 'restate', 'intercreditor', 'agreement', 'entirety', 'urged', 'read', 'intercreditor', 'agreement', 'not', 'description', 'follows', 'defines', 'certain', 'rights', 'holders', 'notes', 'unless', 'expressly', 'stated', 'otherwise', 'intercreditor', 'agreement', 'event', 'conflict', 'terms', 'new', 'revolving', 'credit', 'facility', 'senior', 'secured', 'notes', 'indenture', 'intercreditor', 'agreement', 'provisions', 'intercreditor', 'agreement', 'prevail', 'capitalised', 'terms', 'used', 'not', 'defined', 'herein', 'shall', 'meaning', 'given', 'intercreditor', 'agreement', 'overview', 'intercreditor', 'agreement', 'sets', 'among', 'things', 'relative', 'ranking', 'certain', 'debt', 'company', 'certain', 'subsidiaries', 'including', 'issuer', 'respect', 'new', 'revolving', 'credit', 'facility', 'liabilities', 'defined', 'senior', 'secured', 'note', 'liabilities', 'defined', 'future', 'pari', 'passu', 'debt', 'defined', 'super', 'senior', 'hedging', 'liabilities', 'defined', 'pari', 'passu', 'hedging', 'liabilities', 'defined', 'future', 'senior', 'subordinated', 'debt', 'defined', 'intra', 'group', 'liabilities', 'defined', 'shareholder', 'debt', 'liabilities', 'defined', 'relative', 'ranking', 'certain', 'security', 'granted', 'certain', 'members', 'group', 'defined', 'payments', 'made', 'respect', 'certain', 'indebtedness', 'group', 'enforcement', 'action', 'including', 'acceleration', 'demand', 'payment', 'certain', 'similar', 'actions', 'enforcement', 'action', 'taken', 'including', 'respect', 'transaction', 'security', 'defined', 'provisions', 'relating', 'making', 'acceleration', 'demand', 'payment', 'respect', 'notes', 'terms', 'pursuant', 'certain', 'indebtedness', 'subordinated', 'upon', 'occurrence', 'certain', 'insolvency', 'events', 'requirement', 'turnover', 'amounts', 'received', 'enforcement', 'transaction', 'security', 'transaction', 'security', 'guarantee', 'issued', 'certain', 'debtors', 'released', 'permit', 'enforcement', 'sale', 'circumstances', 'creditors', 'claims', 'including', 'noteholders', 'claims', 'issuer', 'might', 'required', 'transferred', 'third', 'parties', 'released', 'assist', 'enforcement', 'order', 'applying', 'proceeds', 'enforcement', 'transaction', 'security', 'amounts', 'received', 'security', 'agent', 'parties', 'senior', 'secured', 'creditors', 'together', 'senior', 'secured', 'creditors', 'include', 'among', 'others', 'agent', 'new', 'revolving', 'credit', 'facility', 'senior', 'agent', 'security', '131', 'agent', 'lenders', 'new', 'revolving', 'credit', 'facility', 'rcf', 'lenders', 'issuing', 'banks', 'ancillary', 'lenders', 'new', 'revolving', 'credit', 'facility', 'senior', 'secured', 'notes', 'trustee', 'holders', 'senior', 'secured', 'notes', 'intercreditor', 'agreement', 'also', 'allow', 'accession', 'creditors', 'future', 'loan', 'bond', 'indebtedness', 'incurred', 'among', 'others', 'holdings', 'holdco', 'debtors', 'permitted', 'not', 'restricted', 'terms', 'new', 'revolving', 'credit', 'facility', 'senior', 'secured', 'notes', 'future', 'pari', 'passu', 'debt', 'defined', 'future', 'senior', 'subordinated', 'debt', 'defined', 'including', 'senior', 'secured', 'notes', 'issued', 'issue', 'date', 'pursuant', 'senior', 'secured', 'notes', 'indenture', 'additional', 'senior', 'secured', 'notes', 'indebtedness', 'permitted', 'incurred', 'pari', 'passu', 'basis', 'share', 'relevant', 'security', 'shared', 'senior', 'secured', 'creditors', 'future', 'pari', 'passu', 'debt', 'hedge', 'counterparties', 'party', 'interest', 'rate', 'foreign', 'exchange', 'hedging', 'agreements', 'referred', 'secured', 'super', 'senior', 'basis', 'super', 'senior', 'hedging', 'agreements', 'super', 'senior', 'hedging', 'banks', 'hedge', 'counterparties', 'party', 'interest', 'rate', 'hedging', 'agreements', 'foreign', 'exchange', 'certain', 'hedging', 'agreements', 'permitted', 'secured', 'pari', 'passu', 'basis', 'pari', 'passu', 'hedging', 'agreements', 'pari', 'passu', 'hedging', 'banks', 'together', 'super', 'senior', 'hedging', 'banks', 'hedging', 'banks', 'holders', 'future', 'pari', 'passu', 'debt', 'hedge', 'counterparties', 'also', 'senior', 'secured', 'creditors', 'intercreditor', 'agreement', 'also', 'allow', 'accession', 'creditors', 'future', 'indebtedness', 'holdco', 'debtors', 'permitted', 'not', 'restricted', 'terms', 'finance', 'documents', 'relating', 'debt', 'owing', 'senior', 'secured', 'creditors', 'senior', 'secured', 'creditors', 'senior', 'secured', 'debt', 'future', 'senior', 'subordinated', 'debt', 'defined', 'provided', 'future', 'indebtedness', 'complies', 'agreed', 'parameters', 'relevant', 'class', 'future', 'indebtedness', 'future', 'indebtedness', 'subordinated', 'senior', 'secured', 'debt', 'complies', 'agreed', 'parameters', 'senior', 'subordinated', 'debt', 'shall', 'future', 'senior', 'subordinated', 'debt', 'purposes', 'intercreditor', 'agreement', 'holders', 'future', 'senior', 'subordinated', 'debt', 'future', 'senior', 'subordinated', 'creditors', 'single', 'security', 'agent', 'appointed', 'act', 'times', 'behalf', 'senior', 'secured', 'creditors', 'future', 'senior', 'subordinated', 'creditors', 'neither', 'company', 'nor', 'restricted', 'subsidiaries', 'member', 'group', 'nor', 'shareholder', 'member', 'group', 'not', 'otherwise', 'party', '1', 'document', 'creating', 'security', 'favour', 'senior', 'secured', 'creditors', 'future', 'senior', 'subordinated', 'creditors', '2', 'debt', 'documents', 'thereby', 'secured', 'party', 'intercreditor', 'agreement', 'save', 'person', 'elects', 'become', 'party', 'intercreditor', 'agreement', 'shareholder', 'creditor', 'shareholder', 'subordinated', 'lender', 'together', 'holdco', 'shareholder', 'creditors', 'intercreditor', 'agreement', 'contain', 'subordination', 'provisions', 'restrictions', 'relating', 'receivables', 'owing', 'member', 'group', 'shareholder', 'creditor', 'shareholder', 'debt', 'liabilities', 'ii', 'holdco', 'respect', 'existing', 'future', 'proceeds', 'loan', 'made', 'holdco', 'member', 'group', 'respect', 'proceeds', 'future', 'senior', 'subordinated', 'liabilities', 'holdco', 'capacity', 'principal', 'debtor', 'shareholder', 'proceed', 'loan', 'liability', 'iii', 'subject', 'certain', 'exceptions', 'certain', 'debtors', 'lend', 'debtor', 'another', 'member', 'group', 'intragroup', 'lender', 'accede', 'intercreditor', 'agreement', 'respect', 'loans', 'indebtedness', 'owing', 'debtor', 'member', 'group', 'lending', 'debtor', 'respect', 'intra', 'group', 'loans', 'cash', 'pooling', 'arrangements', 'entered', 'ordinary', 'course', 'business', 'debtor', 'loans', 'less', '25', 'million', 'loans', 'outstanding', 'less', '90', 'days', 'intragroup', 'liabilities', 'intercreditor', 'agreement', 'contain', 'subordination', 'provisions', 'relating', 'intra', 'group', 'liabilities', 'however', 'debtors', 'not', 'prohibited', 'incurring', 'amending', 'making', 'payments', 'respect', 'intra', 'group', 'liabilities', 'acceleration', 'event', 'secured', 'debt', 'document', 'continuing', 'ranking', 'priority', 'priority', 'indebtedness', 'intercreditor', 'agreement', 'provide', 'liabilities', 'case', 'may', 'respect', 'new', 'revolving', 'credit', 'facility', 'new', 'revolving', 'credit', 'facility', 'liabilities', 'senior', 'secured', 'notes', 'senior', 'secured', 'notes', 'liabilities', 'future', 'pari', 'passu', 'debt', 'future', 'pari', 'passu', 'debt', 'liabilities', 'amounts', 'owing', 'super', 'senior', 'hedging', 'banks', 'super', 'senior', '132', 'hedging', 'agreements', 'super', 'senior', 'hedging', 'liabilities', 'amounts', 'owing', 'pari', 'passu', 'hedging', 'banks', 'pari', 'passu', 'hedging', 'agreements', 'pari', 'passu', 'hedging', 'liabilities', 'certain', 'costs', 'expenses', 'senior', 'secured', 'notes', 'trustee', 'senior', 'secured', 'trustee', 'liabilities', 'rank', 'equally', 'without', 'preference', 'among', 'right', 'priority', 'payment', 'priority', 'liabilities', 'debtors', 'case', 'may', 'respect', 'future', 'senior', 'subordinated', 'debt', 'future', 'senior', 'subordinated', 'debt', 'liabilities', 'shareholder', 'proceed', 'loan', 'liabilities', 'intra', 'group', 'liabilities', 'shareholder', 'debt', 'liabilities', 'shareholder', 'proceed', 'loan', 'liabilities', 'future', 'senior', 'subordinated', 'debt', 'liabilities', 'rank', 'priority', 'intra', 'group', 'liabilities', 'shareholder', 'debt', 'liabilities', 'shareholder', 'proceed', 'loan', 'liabilities', 'rank', 'priority', 'intra', 'group', 'liabilities', 'shareholder', 'debt', 'liabilities', 'shareholder', 'proceed', 'loan', 'liabilities', 'intercreditor', 'agreement', 'not', 'rank', 'liabilities', 'obligations', 'debt', 'documents', 'owed', 'holdco', 'creditor', 'priority', 'security', 'intercreditor', 'agreement', 'shall', 'provide', 'transaction', 'security', 'defined', 'shall', 'rank', 'secure', 'following', 'liabilities', 'following', 'order', 'subject', 'proceeds', 'security', 'distributed', 'accordance', 'payments', 'waterfall', 'defined', 'first', 'new', 'revolving', 'credit', 'facility', 'liabilities', 'super', 'senior', 'hedging', 'liabilities', 'senior', 'secured', 'notes', 'liabilities', 'future', 'pari', 'passu', 'debt', 'liabilities', 'certain', 'costs', 'expenses', 'senior', 'secured', 'notes', 'trustee', 'pari', 'passu', 'hedging', 'liabilities', 'second', 'future', 'senior', 'subordinated', 'debt', 'liabilities', 'extent', 'relevant', 'transaction', 'security', 'expressed', 'secure', 'relevant', 'future', 'senior', 'subordinated', 'debt', 'liabilities', 'security', 'granted', 'future', 'pari', 'passu', 'debt', 'extent', 'future', 'pari', 'passu', 'debt', 'can', 'not', 'secured', 'pari', 'passu', 'basis', 'senior', 'secured', 'debt', 'without', 'existing', 'security', 'first', 'released', 'parties', 'agree', 'future', 'pari', 'passu', 'debt', 'extent', 'permitted', 'applicable', 'law', 'secured', 'pursuant', 'execution', 'additional', 'security', 'documents', 'securing', 'assets', 'subject', 'relevant', 'security', 'second', 'lesserranking', 'basis', 'future', 'pari', 'passu', 'debt', 'nonetheless', 'deemed', 'treated', 'purposes', 'intercreditor', 'agreement', 'secured', 'security', 'pari', 'passu', 'senior', 'secured', 'debt', 'would', 'otherwise', 'ranking', 'contemplated', 'amounts', 'applied', 'towards', 'future', 'pari', 'passu', 'debt', 'shall', 'applied', 'accordingly', 'event', 'not', 'possible', 'permit', 'recreation', 'additional', 'security', 'documents', 'referred', 'no', 'amendments', 'release', 'security', 'existing', 'security', 'documents', 'shall', 'permitted', 'unless', 'permitted', 'documents', 'thereby', 'secured', 'including', 'avoidance', 'doubt', 'retaking', 'security', 'required', 'relevant', 'secured', 'document', 'not', 'permitted', 'specific', 'document', 'without', 'consent', 'required', 'creditors', 'document', 'security', 'granted', 'future', 'senior', 'subordinated', 'debt', 'extent', 'future', 'senior', 'subordinated', 'debt', 'can', 'not', 'secured', 'subordinated', 'basis', 'senior', 'secured', 'debt', 'pari', 'passu', 'basis', 'future', 'senior', 'subordinated', 'debt', 'without', 'existing', 'security', 'first', 'released', 'parties', 'agree', 'future', 'senior', 'subordinated', 'debt', 'extent', 'permitted', 'applicable', 'law', 'secured', 'pursuant', 'execution', 'additional', 'security', 'documents', 'securing', 'assets', 'subject', 'relevant', 'security', 'lesser', 'ranking', 'basis', 'future', 'senior', 'subordinated', 'debt', 'nonetheless', 'deemed', 'treated', 'purposes', 'intercreditor', 'agreement', 'secured', 'security', 'contemplated', 'amounts', 'applied', 'towards', 'future', 'senior', 'subordinated', 'debt', 'shall', 'applied', 'accordingly', 'event', 'not', 'possible', 'permit', 'recreation', 'additional', 'security', 'documents', 'referred', 'no', 'amendments', 'release', 'security', 'existing', 'security', 'documents', 'shall', 'permitted', 'unless', 'permitted', 'documents', 'thereby', 'secured', 'including', 'avoidance', 'doubt', 'retaking', 'security', 'required', 'relevant', 'secured', '133', 'document', 'not', 'permitted', 'specific', 'document', 'without', 'consent', 'required', 'creditors', 'document', 'equivalent', 'provisions', 'two', 'paragraphs', 'included', 'intercreditor', 'agreement', 'respect', 'additional', 'credit', 'facilities', 'benefit', 'similar', 'position', 'terms', 'intercreditor', 'agreement', 'new', 'revolving', 'credit', 'facility', 'see', 'section', 'entitled', 'general', 'guarantees', 'security', 'provided', 'shares', 'assets', 'company', 'restricted', 'subsidiary', 'company', 'respect', 'future', 'senior', 'subordinated', 'debt', 'shall', 'given', 'subordinated', 'basis', 'shall', 'not', 'given', 'entity', 'not', 'also', 'given', 'not', 'also', 'give', 'corresponding', 'guarantee', 'security', 'relation', 'senior', 'secured', 'debt', 'payments', 'prepayments', 'subordination', 'future', 'senior', 'subordinated', 'debt', 'debtors', 'may', 'make', 'payments', 'prepayments', 'respect', 'new', 'revolving', 'credit', 'facility', 'super', 'senior', 'hedging', 'liabilities', 'pari', 'passu', 'hedging', 'liabilities', 'senior', 'secured', 'notes', 'liabilities', 'time', 'accordance', 'terms', 'acceleration', 'event', 'occurred', 'following', 'occurrence', 'acceleration', 'event', 'no', 'member', 'group', 'may', 'make', 'payments', 'described', 'except', 'proceeds', 'enforcement', 'security', 'recoveries', 'distributed', 'accordance', 'section', 'application', 'proceeds', 'waterfall', 'otherwise', 'agreed', 'rcf', 'agent', 'creditor', 'representatives', 'credit', 'facility', 'lenders', 'senior', 'secured', 'notes', 'trustee', 'relevant', 'future', 'pari', 'passu', 'debt', 'representatives', 'subject', 'certain', 'provisos', 'payment', 'block', 'time', 'following', 'acceleration', 'event', 'majority', 'super', 'senior', 'creditors', 'constitute', 'instructing', 'group', 'rcf', 'agent', 'may', 'deliver', 'payment', 'block', 'suspension', 'notice', 'security', 'agent', 'suspends', 'payment', 'block', 'one', 'payment', 'block', 'suspension', 'notice', 'may', 'delivered', 'life', 'rcf', 'facility', 'holdco', 'may', 'make', 'payments', 'prepayments', 'respect', 'future', 'senior', 'subordinated', 'creditors', 'respect', 'future', 'senior', 'subordinated', 'holdco', 'liabilities', 'time', 'prior', 'discharge', 'senior', 'secured', 'debt', 'neither', 'issuer', 'nor', 'guarantor', 'may', 'make', 'payments', 'respect', 'future', 'senior', 'subordinated', 'debt', 'liabilities', 'without', 'consent', 'majority', 'super', 'senior', 'secured', 'creditors', 'defined', 'majority', 'senior', 'secured', 'creditors', 'defined', 'except', 'among', 'others', 'following', '1', 'payment', 'principal', 'interest', 'including', 'capitalized', 'interest', 'amount', 'future', 'senior', 'subordinated', 'debt', 'liabilities', 'either', '1', 'not', 'prohibited', 'paid', 'new', 'revolving', 'credit', 'facility', 'finance', 'document', 'senior', 'secured', 'notes', 'indenture', 'future', 'pari', 'passu', 'debt', 'finance', 'document', '2', 'paid', 'final', 'maturity', 'future', 'senior', 'subordinated', 'debt', 'liabilities', 'provided', 'maturity', 'not', 'earlier', 'contained', 'documents', 'evidencing', 'future', 'senior', 'subordinated', 'debt', 'liabilities', 'first', 'date', 'incurrence', 'future', 'senior', 'subordinated', 'debt', 'liabilities', 'ii', 'amount', 'not', 'amount', 'principal', 'capitalized', 'interest', 'default', 'interest', 'future', 'senior', 'subordinated', 'debt', 'liabilities', 'accrued', 'due', 'payable', 'cash', 'accordance', 'terms', 'relevant', 'debt', 'documents', 'future', 'senior', 'subordinated', 'debt', 'additional', 'amounts', 'payable', 'result', 'tax', 'gross', 'provisions', 'relating', 'future', 'senior', 'subordinated', 'debt', 'liabilities', 'amount', 'respect', 'currency', 'indemnities', 'relevant', 'debt', 'documents', 'future', 'senior', 'subordinated', 'debt', '134', 'case', 'corresponding', 'amount', 'shareholder', 'proceed', 'loan', 'liabilities', 'b', 'no', 'notice', 'delivered', 'pursuant', 'terms', 'intercreditor', 'agreement', 'blocking', 'payments', 'respect', 'future', 'senior', 'subordinated', 'debt', 'liabilities', 'payment', 'blockage', 'notice', 'outstanding', 'c', 'no', 'payment', 'default', 'new', 'revolving', 'credit', 'facility', 'no', 'payment', 'default', '100', '000', 'equivalent', 'currencies', 'respect', 'senior', 'secured', 'notes', 'liabilities', 'future', 'pari', 'passu', 'debt', 'liabilities', 'continuing', 'senior', 'payment', 'default', '2', 'properly', 'incurred', 'costs', 'commissions', 'taxes', 'consent', 'fees', 'expenses', 'incurred', 'respect', 'reasonably', 'incidental', 'future', 'senior', 'subordinated', 'debt', 'documents', 'including', 'relation', 'reporting', 'listing', 'requirements', 'future', 'senior', 'subordinated', 'debt', 'documents', '3', 'properly', 'incurred', 'costs', 'commissions', 'taxes', 'premiums', 'expenses', 'incurred', 'respect', 'reasonably', 'incidental', 'refinancing', 'future', 'senior', 'subordinated', 'debt', 'compliance', 'intercreditor', 'agreement', 'new', 'revolving', 'credit', 'facility', 'senior', 'secured', 'notes', 'indenture', 'future', 'pari', 'passu', 'debt', 'document', '4', 'respect', 'future', 'senior', 'subordinated', 'debt', 'issued', 'form', 'notes', 'certain', 'costs', 'expenses', 'payable', 'future', 'senior', 'subordinated', 'debt', 'representative', '5', 'payment', 'funded', 'directly', 'indirectly', 'future', 'senior', 'subordinated', 'debt', '6', 'payment', 'funded', 'directly', 'indirectly', 'amount', 'member', 'group', 'permitted', 'terms', 'credit', 'facility', 'documents', 'senior', 'secured', 'notes', 'indenture', 'future', 'pari', 'passu', 'debt', 'documents', 'pay', 'person', 'holding', 'direct', 'indirect', 'interest', 'company', '7', 'amount', 'not', 'exceeding', '5', '000', '000', 'equivalent', 'financial', 'year', 'company', 'prior', 'discharge', 'senior', 'secured', 'debt', 'senior', 'payment', 'default', 'occurred', 'continuing', 'payments', 'respect', 'future', 'senior', 'subordinated', 'debt', 'liabilities', 'certain', 'exceptions', 'suspended', 'prior', 'discharge', 'senior', 'secured', 'debt', 'event', 'default', 'senior', 'payment', 'default', 'finance', 'documents', 'respect', 'senior', 'secured', 'debt', 'senior', 'default', 'occurred', 'continuing', 'creditor', 'representative', 'future', 'senior', 'subordinated', 'creditors', 'future', 'senior', 'subordinated', 'debt', 'representative', 'received', 'payment', 'blockage', 'notice', 'either', 'senior', 'agent', 'senior', 'secured', 'notes', 'trustee', 'representative', 'future', 'pari', 'passu', 'debt', 'representing', 'future', 'pari', 'passu', 'debt', 'case', 'may', 'relevant', 'representative', 'within', '60', 'days', 'date', 'relevant', 'representative', 'receives', 'notice', 'writing', 'occurrence', 'senior', 'default', 'confirming', 'senior', 'default', 'specifying', 'relevant', 'senior', 'default', 'payments', 'respect', 'future', 'senior', 'subordinated', 'debt', 'liabilities', 'consented', 'majority', 'super', 'senior', 'creditors', 'majority', 'senior', 'secured', 'creditors', 'certain', 'specified', 'exceptions', 'suspended', 'earliest', 'date', 'default', 'future', 'senior', 'subordinated', 'debt', 'occurs', 'failure', 'pay', 'principal', 'original', 'scheduled', 'maturity', 'future', 'senior', 'subordinated', 'debt', 'ii', '179', 'days', 'receipt', 'future', 'senior', 'subordinated', 'debt', 'representative', 'payment', 'blockage', 'notice', 'iii', 'repayment', 'discharge', 'obligations', 'respect', 'senior', 'secured', 'debt', 'iv', 'date', 'relevant', 'representative', 'issued', 'payment', 'blockage', 'notice', 'time', 'event', 'default', 'continuing', 'relation', 'senior', 'secured', 'debt', 'senior', 'secured', 'debt', 'respect', '135', 'notice', 'given', 'relevant', 'representative', 'respect', 'senior', 'secured', 'debt', 'notify', 'ies', 'future', 'senior', 'subordinated', 'debt', 'representative', 'payment', 'blockage', 'notice', 'cancelled', 'v', 'date', 'security', 'agent', 'future', 'senior', 'subordinated', 'debt', 'representative', 'takes', 'enforcement', 'action', 'member', 'group', 'permitted', 'take', 'accordance', 'intercreditor', 'agreement', 'vi', 'date', 'relevant', 'event', 'default', 'no', 'longer', 'continuing', 'senior', 'secured', 'debt', 'accelerated', 'acceleration', 'rescinded', 'acceleration', 'consisted', 'solely', 'declaring', 'relevant', 'debt', 'payable', 'demand', 'rescission', 'effected', 'relevant', 'majority', 'creditors', 'respect', 'relevant', 'debt', 'vii', 'standstill', 'period', 'defined', 'effect', 'time', 'delivery', 'payment', 'blockage', 'notice', 'date', 'standstill', 'period', 'expires', 'no', 'payment', 'blockage', 'notice', 'may', 'served', 'relevant', 'representative', 'unless', '360', 'days', 'elapsed', 'since', 'immediately', 'prior', 'payment', 'blockage', 'notice', 'no', 'payment', 'blockage', 'notice', 'may', 'served', 'respect', 'senior', 'default', '60', 'days', 'date', 'relevant', 'representative', 'received', 'notice', 'senior', 'default', 'payment', 'blockage', 'notice', 'ceases', 'outstanding', 'relevant', 'senior', 'default', 'senior', 'payment', 'default', 'ceased', 'continuing', 'waived', 'relevant', 'creditors', 'creditor', 'representative', 'remedied', 'relevant', 'debtor', 'may', 'make', 'payments', 'would', 'otherwise', 'entitled', 'pay', 'future', 'senior', 'subordinated', 'debt', 'promptly', 'event', 'default', 'future', 'senior', 'subordinated', 'debt', 'caused', 'delayed', 'payment', 'shall', 'waived', 'notice', 'commencing', 'standstill', 'period', 'may', 'issued', 'result', 'non', 'payment', 'shall', 'waived', 'senior', 'payment', 'default', 'remedied', 'payment', 'amounts', 'due', 'restrictions', 'enforcement', 'future', 'senior', 'subordinated', 'debt', 'standstill', 'prior', 'discharge', 'senior', 'secured', 'debt', 'neither', 'future', 'senior', 'subordinated', 'debt', 'representative', 'nor', 'holders', 'future', 'senior', 'subordinated', 'debt', 'may', 'take', 'enforcement', 'action', 'respect', 'future', 'senior', 'subordinated', 'debt', 'including', 'action', 'company', 'guarantors', 'future', 'senior', 'subordinated', 'debt', 'direct', 'security', 'agent', 'enforce', 'otherwise', 'require', 'enforcement', 'relevant', 'transaction', 'security', 'document', 'without', 'prior', 'consent', 'required', 'instructing', 'group', 'defined', 'except', '1', 'event', 'default', 'occurred', 'future', 'senior', 'subordinated', 'debt', 'resulting', 'failure', 'pay', 'principal', 'final', 'maturity', '2', 'event', 'default', 'debt', 'documents', 'future', 'senior', 'subordinated', 'debt', 'continuing', 'b', 'senior', 'agent', 'representatives', 'senior', 'secured', 'debt', 'received', 'notice', 'specified', 'event', 'default', 'future', 'senior', 'subordinated', 'debt', 'representative', 'c', 'standstill', 'period', 'defined', 'expired', 'relevant', 'event', 'default', 'continuing', 'end', 'standstill', 'period', 'provided', 'no', 'action', 'may', 'taken', 'security', 'agent', 'taking', 'enforcement', 'action', 'acting', 'accordance', 'instructions', 'instructing', 'group', 'another', 'party', 'taking', 'action', 'instructions', 'security', 'agent', 'pursuant', 'intercreditor', 'agreement', 'take', 'steps', 'enforcement', 'action', 'might', 'reasonably', 'likely', 'adversely', 'affect', 'enforcement', 'standstill', 'period', 'shall', 'mean', 'period', 'starting', 'date', 'future', 'senior', 'subordinated', 'debt', 'representative', 'serves', 'enforcement', 'notice', 'senior', 'agent', 'future', 'senior', 'subordinated', 'debt', 'representative', 'representative', 'future', 'pari', 'passu', 'debt', 'earliest', '179', 'days', 'date', '136', 'b', 'date', 'senior', 'secured', 'creditors', 'take', 'enforcement', 'action', 'including', 'enforcement', 'transaction', 'security', 'permitted', 'enforced', 'terms', 'intercreditor', 'agreement', 'provided', 'future', 'senior', 'subordinated', 'debt', 'representative', 'holders', 'future', 'senior', 'subordinated', 'debt', 'may', 'take', 'enforcement', 'action', 'entity', 'taken', 'senior', 'secured', 'creditors', 'may', 'not', 'take', 'action', 'member', 'holdco', 'group', 'c', 'date', 'insolvency', 'event', 'occurs', 'respect', 'particular', 'debtor', 'owing', 'future', 'senior', 'subordinated', 'debt', 'enforcement', 'action', 'taken', 'date', 'default', 'future', 'senior', 'subordinated', 'debt', 'occurs', 'failure', 'pay', 'principal', 'original', 'scheduled', 'maturity', 'future', 'senior', 'subordinated', 'debt', 'e', 'expiration', 'standstill', 'period', 'outstanding', 'date', 'current', 'standstill', 'period', 'commenced', 'result', 'cure', 'waiver', 'permitted', 'remedy', 'thereof', 'event', 'default', 'ceases', 'continuing', 'provided', 'relevant', 'parties', 'made', 'aware', 'fact', 'relevant', 'enforcement', 'process', 'including', 'requirement', 'consultation', 'relating', 'enforcement', 'relying', 'solely', 'event', 'default', 'shall', 'cease', 'continue', 'enforcement', 'holders', 'secured', 'debt', 'prior', 'date', 'upon', 'amounts', 'actual', 'contingent', 'owing', 'new', 'revolving', 'credit', 'facility', 'fully', 'discharged', 'paid', 'full', 'commitments', 'thereunder', 'irrevocably', 'cancelled', 'rcf', 'discharge', 'date', 'security', 'agent', 'act', 'instructions', 'rcf', 'lenders', 'super', 'senior', 'hedging', 'banks', 'whose', 'super', 'senior', 'credit', 'participations', 'represent', '50', 'aggregate', 'super', 'senior', 'credit', 'participations', 'rcf', 'lenders', 'super', 'senior', 'hedging', 'banks', 'relevant', 'representatives', 'majority', 'super', 'senior', 'creditors', 'ii', 'holders', 'senior', 'secured', 'notes', 'holders', 'future', 'pari', 'passu', 'debt', 'pari', 'passu', 'hedging', 'banks', 'collectively', 'pari', 'passu', 'creditors', 'whose', 'aggregate', 'senior', 'secured', 'credit', 'participations', 'represent', '50', 'aggregate', 'senior', 'secured', 'credit', 'participations', 'creditors', 'majority', 'senior', 'secured', 'creditors', 'case', 'subject', 'consultation', 'period', 'referred', 'provided', 'instructions', 'consistent', 'security', 'enforcement', 'principles', 'set', 'forth', 'following', 'rcf', 'discharge', 'date', 'security', 'agent', 'act', 'instructions', 'majority', 'senior', 'secured', 'creditors', 'consultation', 'prior', 'giving', 'instructions', 'security', 'agent', 'commence', 'enforcement', 'part', 'transaction', 'security', 'requesting', 'distressed', 'disposal', 'release', 'disposal', 'claims', 'transaction', 'security', 'distressed', 'disposal', 'enforcement', 'relevant', 'representative', 'senior', 'secured', 'debt', 'shall', 'notify', 'senior', 'secured', 'debt', 'representatives', 'applicable', 'transaction', 'security', 'become', 'enforceable', 'soon', 'reasonably', 'practicable', 'receipt', 'notice', 'instructing', 'security', 'agent', 'solicit', 'instructions', 'enforce', 'security', 'given', 'majority', 'super', 'senior', 'creditors', 'majority', 'senior', 'secured', 'creditors', 'security', 'agent', 'shall', 'distribute', 'notice', 'relevant', 'addressees', 'promptly', 'upon', 'receipt', 'following', 'senior', 'agent', 'acting', 'instructions', 'majority', 'super', 'senior', 'creditors', 'senior', 'secured', 'notes', 'trustee', 'representative', 'holders', 'future', 'pari', 'passu', 'debt', 'consult', 'good', 'faith', 'security', 'agent', 'period', '15', 'days', 'date', 'notice', 'received', 'persons', 'shorter', 'period', 'relevant', 'parties', 'may', 'agree', 'view', 'coordinating', 'instructions', 'given', 'instructing', 'group', 'agreeing', 'enforcement', 'strategy', 'consultation', 'period', 'no', 'consultation', 'shall', 'required', 'instructing', 'group', 'shall', 'entitled', 'give', 'instructions', 'security', 'agent', 'enforce', 'transaction', 'security', 'take', 'enforcement', 'action', 'prior', 'end', 'consultation', 'period', 'case', 'provided', '137', 'instructions', 'comply', 'security', 'enforcement', 'principles', 'set', 'forth', 'qualifying', 'instructions', 'transaction', 'security', 'become', 'enforceable', 'result', 'insolvency', 'event', 'affecting', 'debtor', 'holdco', 'b', 'majority', 'super', 'senior', 'creditors', 'majority', 'senior', 'secured', 'creditors', 'instructing', 'group', 'provided', 'respect', 'enforcement', 'instructing', 'group', 'shall', 'consist', 'majority', 'super', 'senior', 'creditors', 'majority', 'senior', 'secured', 'creditors', 'certain', 'circumstances', 'subject', 'certain', 'requirements', 'set', 'intercreditor', 'agreement', 'majority', 'super', 'senior', 'creditors', 'majority', 'senior', 'secured', 'creditors', 'ii', 'credit', 'facility', 'lender', 'discharge', 'date', 'instructing', 'group', 'shall', 'majority', 'senior', 'secured', 'creditors', 'iii', 'senior', 'secured', 'debt', 'discharge', 'date', 'instructing', 'group', 'shall', 'majority', 'future', 'senior', 'subordinated', 'creditors', 'determine', 'good', 'faith', 'notifies', 'representative', 'agent', 'creditors', 'party', 'intercreditor', 'agreement', 'delay', 'caused', 'consultation', 'could', 'reasonably', 'expected', 'reduce', 'amount', 'likely', 'realised', 'level', 'following', 'application', 'thereof', 'accordance', 'payments', 'waterfall', 'described', 'super', 'senior', 'liabilities', 'would', 'not', 'discharged', 'full', 'material', 'adverse', 'effect', 'ability', 'effect', 'enforcement', 'distressed', 'disposal', 'case', 'instructions', 'limited', 'necessary', 'protect', 'preserve', 'interests', 'senior', 'secured', 'creditors', 'behalf', 'relevant', 'instructing', 'group', 'acting', 'security', 'agent', 'shall', 'act', 'accordance', 'instructions', 'first', 'received', 'following', 'consultation', 'period', 'majority', 'super', 'senior', 'creditors', 'majority', 'senior', 'secured', 'creditors', 'agreed', 'enforcement', 'strategy', 'security', 'agent', 'shall', 'instructed', 'implement', 'subject', 'paragraph', 'event', 'conflicting', 'instructions', 'purposes', 'failure', 'give', 'instructions', 'deemed', 'conflicting', 'instruction', 'received', 'either', 'instructing', 'group', 'end', 'consultation', 'period', 'not', 'resolved', 'security', 'agent', 'shall', 'enforce', 'transaction', 'security', 'refrain', 'enforcing', 'transaction', 'security', 'take', 'relevant', 'enforcement', 'action', 'accordance', 'instructions', 'provided', 'majority', 'senior', 'secured', 'creditors', 'case', 'provided', 'instructions', 'qualifying', 'instructions', 'terms', 'instructions', 'received', 'majority', 'super', 'senior', 'creditors', 'consultation', 'period', 'shall', 'deemed', 'revoked', 'prior', 'rcf', 'discharge', 'date', 'super', 'senior', 'liabilities', 'not', 'repaid', 'full', 'cash', 'within', 'six', 'months', 'end', 'consultation', 'period', 'b', 'security', 'agent', 'not', 'commenced', 'enforcement', 'transaction', 'lieu', 'enforcement', 'action', 'within', 'three', 'months', 'end', 'consultation', 'period', 'c', 'insolvency', 'event', 'occurred', 'respect', 'debtor', 'holdco', 'security', 'agent', 'not', 'commenced', 'enforcement', 'transaction', 'lieu', 'enforcement', 'action', 'time', 'respect', 'debtor', 'holdco', 'security', 'agent', 'shall', 'thereafter', 'follow', 'instructions', 'subsequently', 'given', 'majority', 'super', 'senior', 'creditors', 'case', 'provided', 'qualifying', 'instructions', 'exclusion', 'given', 'majority', 'senior', 'secured', 'creditors', 'extent', 'conflicting', 'instructions', 'previously', 'given', 'majority', 'senior', 'secured', 'creditors', 'majority', 'super', 'senior', 'creditors', 'majority', 'senior', 'secured', 'creditors', 'acting', 'reasonably', 'consider', 'security', 'agent', 'enforcing', 'security', 'manner', 'not', 'consistent', 'security', 'enforcement', 'principles', 'creditor', 'representatives', 'relevant', 'super', 'senior', 'creditors', 'senior', 'secured', 'creditors', 'shall', 'give', 'notice', 'creditor', 'representatives', 'super', 'senior', 'creditors', 'senior', 'secured', 'notes', 'creditors', 'future', 'pari', 'passu', 'creditors', 'appropriate', 'creditor', 'representatives', 'super', 'senior', 'creditors', 'senior', 'secured', 'notes', 'creditors', 'future', 'pari', 'passu', '138', 'creditors', 'shall', 'consult', 'security', 'agent', 'period', '10', 'days', 'lesser', 'period', 'relevant', 'creditor', 'representatives', 'may', 'agree', 'view', 'agreeing', 'manner', 'enforcement', 'provided', 'creditor', 'representative', 'shall', 'not', 'obliged', 'consult', 'relation', 'enforcement', 'action', 'benefit', 'section', 'shall', 'senior', 'secured', 'creditors', 'super', 'senior', 'creditors', 'security', 'enforcement', 'principles', 'unless', 'otherwise', 'agreed', 'majority', 'super', 'senior', 'creditors', 'majority', 'senior', 'secured', 'creditors', 'enforcement', 'transaction', 'security', 'must', 'conducted', 'accordance', 'security', 'enforcement', 'principles', 'summarized', 'follows', 'shall', 'aim', 'enforcement', 'transaction', 'security', 'maximize', 'far', 'consistent', 'prompt', 'expeditious', 'realisation', 'value', 'enforcement', 'transaction', 'security', 'manner', 'consistent', 'intercreditor', 'agreement', 'recovery', 'rcf', 'lenders', 'hedging', 'banks', 'holders', 'senior', 'secured', 'notes', 'holders', 'future', 'pari', 'passu', 'debt', 'holders', 'future', 'senior', 'subordinated', 'debt', 'extent', 'transaction', 'security', 'expressed', 'secure', 'debt', 'case', 'without', 'prejudice', 'payments', 'waterfall', 'security', 'enforcement', 'objective', 'subject', 'applicable', 'law', 'b', 'security', 'enforcement', 'principles', 'may', 'amended', 'varied', 'waived', 'prior', 'written', 'consent', 'senior', 'secured', 'notes', 'required', 'holders', 'defined', 'future', 'pari', 'passu', 'debt', 'required', 'holders', 'defined', 'majority', 'super', 'senior', 'creditors', 'c', 'without', 'prejudice', 'security', 'enforcement', 'objective', 'transaction', 'security', 'subject', 'applicable', 'law', 'enforced', 'either', '1', 'proceeds', 'enforcement', 'received', 'security', 'agent', 'cash', 'substantially', 'cash', 'distribution', 'accordance', 'payments', 'waterfall', '2', 'sufficient', 'proceeds', 'enforcement', 'received', 'security', 'agent', 'cash', 'ensure', 'proceeds', 'applied', 'accordance', 'payments', 'waterfall', 'super', 'senior', 'liabilities', 'repaid', 'discharged', 'full', 'unless', 'majority', 'super', 'senior', 'creditors', 'agree', 'otherwise', 'proposed', 'enforcement', 'transaction', 'security', 'assets', 'shares', 'member', 'group', 'aggregate', 'book', 'value', 'assets', 'exceeds', '5', '0', 'million', 'equivalent', 'ii', 'proposed', 'enforcement', 'transaction', 'security', 'shares', 'member', 'group', 'transaction', 'security', 'exists', 'security', 'agent', 'shall', 'unless', 'enforcement', 'sale', 'made', 'pursuant', 'public', 'auction', 'public', 'offering', 'process', 'supervised', 'court', 'law', 'makes', 'determination', 'value', 'obtain', 'opinion', 'reputable', 'internationally', 'recognized', 'investment', 'bank', 'international', 'accounting', 'firm', 'reputable', 'third', 'party', 'professional', 'firm', 'regularly', 'engaged', 'providing', 'valuations', 'businesses', 'assets', 'similar', 'comparable', 'charged', 'transaction', 'security', 'enforced', 'financial', 'advisor', 'opine', 'optimal', 'method', 'enforcing', 'transaction', 'security', 'achieve', 'security', 'enforcement', 'principles', 'maximize', 'recovery', 'b', 'proceeds', 'received', 'enforcement', 'fair', 'financial', 'point', 'view', 'taking', 'account', 'relevant', 'circumstances', 'provided', 'provider', 'opinion', 'may', 'limit', 'liability', 'respect', 'opinion', 'amount', 'fees', 'respect', 'engagement', 'c', 'sale', 'otherwise', 'accordance', 'security', 'enforcement', 'objective', 'e', 'security', 'agent', 'shall', 'no', 'obligation', 'appoint', 'financial', 'advisor', 'seek', 'advice', 'financial', 'advisor', 'unless', 'expressly', 'required', 'intercreditor', 'agreement', 'provision', 'intercreditor', 'agreement', 'f', 'opinion', 'financial', 'advisor', 'equivalent', 'opinion', 'obtained', 'security', 'agent', 'relation', 'enforcement', 'transaction', 'security', 'action', 'fair', 'financial', 'point', 'view', 'taking', 'account', 'relevant', '139', 'circumstances', 'conclusive', 'evidence', 'security', 'enforcement', 'objective', 'met', 'turnover', 'intercreditor', 'agreement', 'also', 'provide', 'primary', 'creditor', 'defined', 'receives', 'recovers', 'proceeds', 'enforcement', 'transaction', 'security', 'addition', 'future', 'senior', 'subordinated', 'debt', 'creditor', 'receives', 'recovers', 'payment', 'distribution', 'not', 'permitted', 'intercreditor', 'agreement', 'applied', 'accordance', 'application', 'proceeds', 'waterfall', 'described', 'shall', 'subject', 'certain', 'prior', 'actual', 'knowledge', 'qualifications', 'case', 'notes', 'trustees', 'relation', 'receipts', 'recoveries', 'not', 'received', 'recovered', 'way', 'set', 'hold', 'amount', 'trust', 'security', 'agent', 'promptly', 'pay', 'amount', 'amount', 'equal', 'amount', 'security', 'agent', 'application', 'accordance', 'terms', 'intercreditor', 'agreement', 'ii', 'promptly', 'pay', 'amount', 'equal', 'amount', 'receipt', 'recovery', 'exceeds', 'relevant', 'liabilities', 'owed', 'creditor', 'security', 'agent', 'application', 'accordance', 'terms', 'intercreditor', 'agreement', 'relation', 'receipts', 'recoveries', 'received', 'recovered', 'way', 'set', 'promptly', 'pay', 'amount', 'equal', 'recovery', 'security', 'agent', 'application', 'accordance', 'terms', 'intercreditor', 'agreement', 'application', 'proceeds', 'waterfall', 'amounts', 'received', 'recovered', 'security', 'agent', 'connection', 'realisation', 'part', 'transaction', 'security', 'enforcement', 'distressed', 'disposal', 'otherwise', 'paid', 'security', 'agent', 'accordance', 'intercreditor', 'agreement', 'application', 'accordance', 'payments', 'waterfall', 'paid', 'security', 'agent', 'application', 'accordance', 'following', 'payments', 'waterfall', 'payments', 'waterfall', 'first', 'payment', 'following', 'amounts', 'following', 'order', 'pari', 'passu', 'pro', 'rata', 'sums', 'owing', 'senior', 'secured', 'notes', 'trustee', 'security', 'agent', 'receiver', 'delegate', 'respect', 'costs', 'expenses', 'ii', 'pari', 'passu', 'pro', 'rata', 'creditor', 'representative', 'extent', 'not', 'included', 'excluding', 'hedge', 'counterparty', 'creditor', 'representative', 'respect', 'costs', 'expenses', 'receiver', 'attorney', 'agent', 'appointed', 'creditor', 'representative', 'transaction', 'security', 'document', 'intercreditor', 'agreement', 'secondly', 'pari', 'passu', 'pro', 'rata', 'towards', 'payment', 'costs', 'expenses', 'incurred', 'holders', 'super', 'senior', 'liabilities', 'connection', 'realisation', 'enforcement', 'transaction', 'security', 'taken', 'accordance', 'terms', 'intercreditor', 'agreement', 'action', 'taken', 'request', 'security', 'agent', 'thirdly', 'pari', 'passu', 'pro', 'rata', 'rcf', 'lenders', 'respect', 'amounts', 'due', 'payable', 'rcf', 'lenders', 'time', 'ii', 'super', 'senior', 'hedging', 'banks', 'respect', 'amounts', 'due', 'payable', 'super', 'senior', 'hedging', 'agreements', 'fourth', 'pari', 'passu', 'pro', 'rata', 'senior', 'secured', 'notes', 'trustee', 'representative', 'future', 'pari', 'passu', 'creditors', 'application', 'towards', 'unpaid', 'costs', 'expenses', 'incurred', 'behalf', 'holders', 'senior', 'secured', 'notes', 'holders', 'future', 'pari', 'passu', 'debt', 'holders', 'pari', 'passu', 'hedging', 'liabilities', 'connection', 'realisation', 'enforcement', 'transaction', 'security', 'taken', 'accordance', 'terms', 'intercreditor', 'agreement', 'action', 'taken', 'request', 'security', 'agent', 'fifth', 'pari', 'passu', 'pro', 'rata', 'senior', 'secured', 'notes', 'trustee', 'behalf', 'holders', 'senior', 'secured', 'notes', 'application', 'towards', 'discharge', 'senior', 'secured', 'notes', 'liabilities', 'representative', 'holders', 'future', 'pari', 'passu', 'debt', 'behalf', 'holders', 'future', 'pari', 'passu', 'debt', 'application', 'towards', 'discharge', 'future', 'pari', 'passu', 'debt', 'liabilities', 'pari', 'passu', 'hedging', 'banks', 'respect', 'amounts', 'due', 'payable', 'pari', 'passu', 'hedging', 'agreements', 'sixth', 'extent', 'security', 'secures', 'liabilities', 'pari', 'passu', 'pro', 'rata', 'towards', 'payment', 'future', 'senior', 'subordinated', 'debt', 'representative', 'costs', '140', 'expenses', 'incurred', 'holders', 'future', 'senior', 'subordinated', 'debt', 'connection', 'realisation', 'enforcement', 'transaction', 'security', 'taken', 'accordance', 'terms', 'intercreditor', 'agreement', 'action', 'taken', 'request', 'security', 'agent', 'seventh', 'extent', 'security', 'secured', 'liabilities', 'pari', 'passu', 'pro', 'rata', 'towards', 'payment', 'future', 'senior', 'subordinated', 'representative', 'behalf', 'holders', 'future', 'senior', 'subordinated', 'debt', 'application', 'towards', 'discharge', 'amounts', 'due', 'payable', 'holders', 'future', 'senior', 'subordinated', 'debt', 'time', 'eighth', 'final', 'discharge', 'date', 'relevant', 'debtor', 'person', 'may', 'entitled', 'thereto', 'acceleration', 'event', 'default', 'occurs', 'new', 'revolving', 'credit', 'facility', 'senior', 'secured', 'notes', 'future', 'pari', 'passu', 'debt', 'decision', 'accelerate', 'new', 'revolving', 'credit', 'facility', 'senior', 'secured', 'notes', 'future', 'pari', 'passu', 'debt', 'subject', 'provided', 'take', 'enforcement', 'action', 'determined', 'accordance', 'provisions', 'new', 'revolving', 'credit', 'facility', 'senior', 'secured', 'notes', 'indenture', 'accordance', 'terms', 'future', 'pari', 'passu', 'debt', 'applicable', 'intercreditor', 'agreement', 'contain', 'provisions', 'requiring', 'representative', 'pari', 'passu', 'creditors', 'senior', 'agent', 'senior', 'secured', 'notes', 'trustee', 'notify', 'representatives', 'senior', 'secured', 'creditors', 'future', 'senior', 'subordinated', 'creditors', 'instructions', 'accelerate', 'new', 'revolving', 'credit', 'facility', 'senior', 'secured', 'notes', 'future', 'pari', 'passu', 'debt', 'applicable', 'non', 'distressed', 'disposal', 'circumstances', 'disposal', 'certain', 'specified', 'transactions', 'not', 'effected', 'pursuant', 'distress', 'event', 'defined', 'disposal', 'effected', 'pursuant', 'distress', 'event', 'distressed', 'disposal', 'otherwise', 'permitted', 'terms', 'senior', 'secured', 'notes', 'indenture', 'debt', 'documents', 'future', 'pari', 'passu', 'debt', 'future', 'senior', 'subordinated', 'debt', 'finance', 'documents', 'new', 'revolving', 'credit', 'facility', 'intercreditor', 'agreement', 'provide', 'security', 'agent', 'authorized', 'release', 'transaction', 'security', 'connection', 'release', 'execute', 'related', 'documents', 'ii', 'respect', 'disposal', 'person', 'persons', 'outside', 'group', 'relevant', 'asset', 'consists', 'shares', 'capital', 'debtor', 'release', 'transaction', 'security', 'claim', 'respect', 'liabilities', 'secured', 'transaction', 'security', 'assets', 'debtor', 'shares', 'assets', 'subsidiaries', 'distressed', 'disposal', 'distressed', 'disposal', 'asset', 'effected', 'intercreditor', 'agreement', 'provide', 'security', 'agent', 'authorized', 'release', 'transaction', 'security', 'claim', 'asset', 'ii', 'asset', 'disposed', 'consists', 'shares', 'capital', 'debtor', 'release', 'debtor', 'subsidiary', 'debtor', 'part', 'liabilities', 'senior', 'secured', 'creditors', 'future', 'senior', 'subordinated', 'creditors', 'others', 'primary', 'liabilities', 'trading', 'liabilities', 'may', 'shareholder', 'creditors', 'intragroup', 'lenders', 'holdco', 'debtors', 'liabilities', 'b', 'transaction', 'security', 'granted', 'debtor', 'subsidiary', 'debtor', 'assets', 'holding', 'company', 'debtor', 'shares', 'loans', 'claims', 'rights', 'debtor', 'c', 'claim', 'shareholder', 'subordinated', 'lender', 'intragroup', 'lender', 'another', 'debtor', 'debtor', 'assets', 'assets', 'subsidiary', 'debtor', 'iii', 'asset', 'disposed', 'consists', 'shares', 'capital', 'holding', 'company', 'debtor', 'release', 'holding', 'company', 'subsidiary', 'holding', 'company', 'part', 'primary', 'liabilities', 'liabilities', 'b', 'transaction', 'security', 'granted', 'subsidiary', 'holding', 'company', 'assets', 'holding', 'company', 'holding', 'company', 'shares', 'loans', 'claims', 'rights', 'claims', 'holding', 'company', 'c', 'claim', 'shareholder', 'subordinated', 'lender', 'intragroup', 'lender', 'another', 'debtor', 'assets', 'subsidiary', 'holding', 'company', 'iv', 'asset', 'disposed', '141', 'consists', 'shares', 'capital', 'debtor', 'holding', 'company', 'debtor', 'provide', '1', 'transfer', 'liabilities', 'another', 'debtor', '2', 'discretion', 'security', 'agent', 'provided', 'acting', 'accordance', 'security', 'enforcement', 'principles', 'disposal', 'third', 'parties', 'creditor', 'claims', 'debtor', 'holding', 'company', 'may', 'include', 'claims', 'issuer', 'instructing', 'group', 'constituted', 'majority', 'senior', 'secured', 'creditors', 'super', 'senior', 'liabilities', 'may', 'not', 'released', 'disposed', 'unless', 'sufficient', 'cash', 'proceeds', 'received', 'relevant', 'distressed', 'disposal', 'applied', 'discharge', 'full', 'super', 'senior', 'liabilities', 'future', 'senior', 'subordinated', 'debt', 'discharge', 'date', 'provided', 'company', 'guarantor', 'future', 'senior', 'subordinated', 'debt', 'outstanding', 'future', 'senior', 'subordinated', 'debt', 'liabilities', 'provided', 'future', 'senior', 'subordinated', 'debt', 'incurred', 'holdco', 'proceeds', 'lent', 'company', 'pursuant', 'shareholder', 'proceed', 'loan', 'distressed', 'disposal', 'effected', 'future', 'senior', 'subordinated', 'liabilities', 'owed', 'company', 'guarantors', 'security', 'granted', 'assets', 'company', 'guarantor', 'released', 'condition', 'release', 'either', 'future', 'senior', 'subordinated', 'debt', 'representative', 'approved', 'release', 'instructions', 'future', 'senior', 'subordinated', 'debt', 'required', 'holders', 'ii', 'following', 'conditions', 'satisfied', 'proceeds', 'sale', 'disposal', 'cash', 'substantially', 'cash', 'b', 'present', 'future', 'obligations', 'owed', 'senior', 'secured', 'creditors', 'senior', 'secured', 'debt', 'documents', 'member', 'group', 'whose', 'shares', 'pledged', 'favor', 'senior', 'secured', 'creditors', 'sold', 'disposed', 'pursuant', 'enforcement', 'action', 'unconditionally', 'released', 'discharged', 'sold', 'disposed', 'transferred', 'concurrently', 'sale', 'disposal', 'obligations', 'not', 'assumed', 'purchaser', 'one', 'affiliates', 'transaction', 'security', 'granted', 'member', 'group', 'respect', 'liability', 'owed', 'senior', 'secured', 'creditors', 'senior', 'secured', 'debt', 'documents', 'respect', 'assets', 'sold', 'disposed', 'simultaneously', 'unconditionally', 'released', 'discharged', 'concurrently', 'sale', 'c', 'sale', 'disposal', 'including', 'sale', 'disposal', 'claim', 'made', 'pursuant', 'public', 'auction', 'public', 'offering', 'ii', 'internationally', 'recognized', 'investment', 'bank', 'internationally', 'recognized', 'firm', 'accountants', 'selected', 'security', 'agent', 'delivered', 'opinion', 'respect', 'sale', 'disposal', 'amount', 'received', 'connection', 'therewith', 'fair', 'financial', 'point', 'view', 'taking', 'account', 'relevant', 'circumstances', 'including', 'method', 'enforcement', 'circumstances', 'giving', 'rise', 'sale', 'provided', 'liability', 'investment', 'bank', 'internationally', 'recognized', 'firm', 'accountants', 'giving', 'opinion', 'may', 'limited', 'amount', 'fees', 'respect', 'engagement', 'application', 'proceeds', 'distressed', 'disposal', 'net', 'proceeds', 'distressed', 'disposal', 'net', 'proceeds', 'disposal', 'liabilities', 'shall', 'paid', 'security', 'agent', 'case', 'may', 'application', 'accordance', 'provisions', 'set', 'forth', 'application', 'proceeds', 'waterfall', 'proceeds', 'proceeds', 'enforcement', 'transaction', 'security', 'extent', 'disposal', 'liabilities', 'occurred', 'disposal', 'liabilities', 'not', 'occurred', 'voting', 'amendments', 'voting', 'respect', 'new', 'revolving', 'credit', 'facility', 'senior', 'secured', 'notes', 'future', 'pari', 'passu', 'debt', 'accordance', 'relevant', 'documents', '142', 'except', 'amendments', 'cure', 'defects', 'omissions', 'resolve', 'ambiguities', 'inconsistencies', 'reflect', 'changes', 'minor', 'technical', 'administrative', 'nature', 'otherwise', 'benefit', 'secured', 'parties', 'may', 'case', 'effected', 'security', 'agent', 'company', 'without', 'consent', 'party', 'subject', 'paragraph', 'amendments', 'waivers', 'consents', 'intercreditor', 'agreement', 'shall', 'require', 'written', 'agreement', 'b', 'relevant', 'amendment', 'waiver', 'proposed', 'amendment', 'prohibited', 'new', 'revolving', 'credit', 'facility', 'agreement', 'senior', 'agent', 'acting', 'instructions', 'requisite', 'rcf', 'lenders', 'proposed', 'amendment', 'prohibited', 'terms', 'senior', 'secured', 'notes', 'indenture', 'senior', 'secured', 'notes', 'trustee', 'c', 'future', 'pari', 'passu', 'debt', 'incurred', 'proposed', 'amendment', 'prohibited', 'terms', 'relevant', 'future', 'pari', 'passu', 'debt', 'documents', 'future', 'pari', 'passu', 'debt', 'representative', 'applicable', 'acting', 'instructions', 'future', 'pari', 'passu', 'debt', 'required', 'holders', 'future', 'senior', 'subordinated', 'debt', 'incurred', 'proposed', 'amendment', 'prohibited', 'terms', 'relevant', 'future', 'senior', 'subordinated', 'debt', 'documents', 'future', 'senior', 'subordinated', 'debt', 'representative', 'applicable', 'acting', 'instructions', 'future', 'senior', 'subordinated', 'debt', 'required', 'holders', 'e', 'hedge', 'counterparty', 'providing', 'hedging', 'debtor', 'hedging', 'agreement', 'hedge', 'counterparty', 'case', 'extent', 'relevant', 'amendment', 'waiver', 'adversely', 'affects', 'continuing', 'rights', 'obligations', 'hedge', 'counterparty', 'amendment', 'waiver', 'expressed', 'require', 'consent', 'hedge', 'counterparty', 'applicable', 'hedging', 'agreement', 'notified', 'company', 'security', 'agent', 'time', 'relevant', 'amendment', 'waiver', 'f', 'shareholder', 'creditors', 'g', 'company', 'provided', 'extent', 'amendment', 'waiver', 'consent', 'affects', 'one', 'class', 'secured', 'party', 'amendment', 'waiver', 'consent', 'could', 'not', 'reasonably', 'expected', 'materially', 'adversely', 'affect', 'interests', 'classes', 'secured', 'party', 'written', 'agreement', 'affected', 'class', 'company', 'shall', 'required', 'definitions', 'intercreditor', 'agreement', 'shall', 'provide', 'future', 'senior', 'subordinated', 'debt', 'required', 'holders', 'means', 'respect', 'direction', 'approval', 'consent', 'waiver', 'holders', 'future', 'senior', 'subordinated', 'debt', 'holding', 'aggregate', 'principal', 'amount', 'future', 'senior', 'subordinated', 'debt', 'not', 'less', 'principal', 'amount', 'future', 'senior', 'subordinated', 'debt', 'required', 'vote', 'favor', 'direction', 'consent', 'waiver', 'terms', 'relevant', 'documents', 'required', 'amount', 'not', 'specified', 'holders', 'holding', 'least', 'majority', 'principal', 'amount', 'outstanding', 'future', 'senior', 'subordinated', 'debt', 'accordance', 'relevant', 'future', 'senior', 'subordinated', 'debt', 'documents', 'b', 'future', 'pari', 'passu', 'debt', 'required', 'holders', 'means', 'respect', 'direction', 'approval', 'consent', 'waiver', 'pari', 'passu', 'creditors', 'holding', 'aggregate', 'principal', 'amount', 'future', 'pari', 'passu', 'debt', 'not', 'less', 'principal', 'amount', 'future', 'pari', 'passu', 'debt', 'required', 'vote', 'favor', 'direction', 'consent', 'waiver', 'terms', 'relevant', 'documents', 'required', 'amount', 'not', 'specified', 'holders', 'holding', 'least', 'majority', 'principal', 'amount', 'outstanding', 'future', 'pari', 'passu', 'debt', 'accordance', 'relevant', 'future', 'pari', 'passu', 'debt', 'documents', 'c', 'primary', 'creditors', 'means', 'super', 'senior', 'creditors', 'senior', 'secured', 'notes', 'creditors', 'future', 'pari', 'passu', 'creditors', 'future', 'senior', 'subordinated', 'creditors', 'non', 'priority', 'hedge', 'counterparties', '143', 'senior', 'secured', 'notes', 'required', 'holders', 'means', 'respect', 'direction', 'approval', 'consent', 'waiver', 'holders', 'senior', 'secured', 'notes', 'holding', 'aggregate', 'principal', 'amount', 'senior', 'secured', 'notes', 'not', 'less', 'principal', 'amount', 'senior', 'secured', 'notes', 'required', 'vote', 'favor', 'direction', 'consent', 'waiver', 'terms', 'senior', 'secured', 'notes', 'indenture', 'required', 'amount', 'not', 'specified', 'holders', 'holding', 'least', 'majority', 'principal', 'amount', 'outstanding', 'senior', 'secured', 'notes', 'applicable', 'accordance', 'senior', 'secured', 'notes', 'indenture', 'e', 'transaction', 'security', 'means', 'security', 'created', 'expressed', 'created', 'pursuant', 'transaction', 'security', 'documents', 'f', 'transaction', 'security', 'documents', 'means', 'defined', 'equivalent', 'term', 'new', 'revolving', 'credit', 'facility', 'credit', 'facility', 'referred', 'document', 'governing', 'future', 'pari', 'passu', 'debt', 'ii', 'document', 'entered', 'time', 'member', 'holdco', 'group', 'substitute', 'entity', 'creating', 'security', 'favour', 'secured', 'parties', 'security', 'secured', 'obligations', 'iii', 'security', 'granted', 'covenant', 'assurance', 'documents', 'set', 'paragraphs', 'ii', 'case', 'extent', 'legally', 'possible', 'subject', 'agreed', 'security', 'principles', 'created', 'favour', 'security', 'agent', 'trustee', 'secured', 'parties', 'respect', 'liabilities', 'option', 'purchase', 'following', 'notice', 'transaction', 'security', 'become', 'enforceable', 'b', 'either', 'acceleration', 'new', 'revolving', 'credit', 'facility', 'senior', 'secured', 'notes', 'future', 'pari', 'passu', 'debt', 'future', 'senior', 'subordinated', 'debt', 'continuing', 'ii', 'enforcement', 'transaction', 'security', 'result', 'acceleration', 'new', 'revolving', 'credit', 'facility', 'senior', 'secured', 'notes', 'future', 'pari', 'passu', 'debt', 'future', 'senior', 'subordinated', 'debt', 'continuing', 'distress', 'event', 'holders', 'senior', 'secured', 'notes', 'future', 'pari', 'passu', 'debt', 'shall', 'option', 'purchase', 'not', 'part', 'rcf', 'lenders', 'affiliates', 'commitments', 'new', 'revolving', 'credit', 'facility', 'exposures', 'respect', 'hedging', 'agreement', 'par', 'plus', 'accrued', 'interest', 'amounts', 'owing', 'new', 'revolving', 'credit', 'facility', 'hedging', 'agreements', 'purchase', 'occur', 'time', 'following', 'distress', 'event', 'holders', 'future', 'senior', 'subordinated', 'debt', 'shall', 'option', 'purchase', 'not', 'part', 'senior', 'secured', 'debt', 'par', 'plus', 'accrued', 'interest', 'amounts', 'owing', 'respect', 'senior', 'secured', 'debt', 'purchase', 'occur', 'time', 'hedging', 'payments', 'permitted', 'hedging', 'agreement', 'close', 'payments', 'payments', 'scheduled', 'payment', 'hedging', 'counterparty', 'due', 'unpaid', 'permitted', 'payments', 'purposes', 'intercreditor', 'agreement', 'intercreditor', 'agreement', 'contain', 'provisions', 'relation', 'circumstances', 'hedging', 'bank', 'may', 'take', 'enforcement', 'action', 'relation', 'hedging', 'general', 'intercreditor', 'agreement', 'contain', 'provisions', 'dealing', 'close', 'rights', 'hedging', 'liabilities', 'b', 'permitted', 'payments', 'including', 'without', 'limitation', 'repayment', 'shareholder', 'debt', 'liabilities', 'payment', 'permitted', 'distributions', 'case', 'extent', 'permitted', 'terms', 'finance', 'documents', 'relating', 'senior', 'secured', 'debt', 'future', 'senior', 'subordinated', 'debt', '144', 'c', 'incurrence', 'future', 'pari', 'passu', 'debt', 'future', 'senior', 'subordinated', 'debt', 'allow', 'certain', 'creditors', 'agents', 'respect', 'future', 'pari', 'passu', 'debt', 'future', 'senior', 'subordinated', 'debt', 'case', 'may', 'accede', 'intercreditor', 'agreement', 'benefit', 'subject', 'provisions', 'intercreditor', 'agreement', 'including', 'without', 'limitation', 'note', 'trustee', 'protections', 'permissions', 'associated', 'payment', 'note', 'trustee', 'amounts', 'long', 'not', 'prohibited', 'new', 'revolving', 'credit', 'facility', 'senior', 'secured', 'notes', 'indenture', 'compliance', 'agreed', 'parameters', 'class', 'debt', 'future', 'senior', 'subordinated', 'debt', 'shall', 'subject', 'relevant', 'subordination', 'provisions', 'intercreditor', 'agreement', 'ability', 'incur', 'additional', 'credit', 'facilities', 'benefiting', 'similar', 'position', 'terms', 'intercreditor', 'agreement', 'new', 'revolving', 'credit', 'facility', 'extent', 'additional', 'credit', 'facilities', 'allowed', 'terms', 'finance', 'documents', 'relating', 'senior', 'secured', 'notes', 'share', 'transaction', 'security', 'rights', 'obligations', 'equivalent', 'new', 'revolving', 'credit', 'facility', 'lenders', 'permitted', 'terms', 'finance', 'documents', 'relating', 'senior', 'secured', 'notes', 'rank', 'senior', 'senior', 'secured', 'notes', 'liabilities', 'respect', 'proceeds', 'enforcement', 'transaction', 'security', 'e', 'payments', 'received', 'creditors', 'not', 'permitted', 'intercreditor', 'agreement', 'shall', 'required', 'held', 'trust', 'security', 'agent', 'provided', 'security', 'agent', 'application', 'accordance', 'payments', 'waterfall', 'governing', 'law', 'intercreditor', 'agreement', 'governed', 'construed', 'accordance', 'english', 'law', 'inventory', 'funding', 'facilities', 'american', 'inventory', 'funding', 'facility', 'march', '28', '2012', 'aml', 'standard', 'chartered', 'bank', 'entered', 'uncommitted', 'inventory', 'funding', 'facility', 'agreement', 'subsequently', 'amended', 'pursuant', 'amendment', 'letters', 'dated', 'april', '19', '2013', 'april', '29', '2014', 'january', '16', '2015', 'april', '1', '2016', 'amended', 'issue', 'date', 'amended', 'american', 'inventory', 'funding', 'facility', 'american', 'inventory', 'funding', 'facility', 'may', 'utilised', 'way', 'cash', 'drawings', 'aml', 'aggregate', 'amount', '15', 'million', 'time', 'outstanding', 'facility', 'structured', 'two', 'tranches', 'one', '15', 'million', 'intended', 'cash', 'drawings', 'period', '45', 'banking', 'days', '10', 'million', 'intended', 'cash', 'drawings', 'period', '90', 'banking', 'days', 'aml', 'may', 'make', 'drawings', 'american', 'inventory', 'funding', 'facility', 'invoices', 'issued', 'aston', 'martin', 'lagonda', 'north', 'america', 'cars', 'sold', 'aml', 'aml', 'required', 'repay', 'outstanding', 'drawings', 'end', 'term', 'pay', 'interest', 'amounts', 'borrowed', 'american', 'inventory', 'funding', 'facility', 'amount', '3', '85', 'per', 'annum', 'cost', 'funds', 'standard', 'chartered', 'bank', 'subject', 'zero', 'floor', 'standard', 'chartered', 'bank', 'obligations', 'secured', 'certain', 'assets', 'aston', 'martin', 'lagonda', 'north', 'america', 'not', 'guarantor', 'notes', 'chinese', 'inventory', 'funding', 'arrangements', 'party', 'four', 'inventory', 'funding', 'arrangements', 'china', 'two', 'ningbo', 'commerce', 'bank', 'one', 'china', 'guangfa', 'bank', 'one', 'union', 'leatop', 'financial', 'leasing', 'ltd', 'arrangements', 'provided', 'relation', 'financings', 'may', 'utilized', 'certain', 'aston', 'martin', 'dealers', 'china', 'also', 'parties', 'financings', 'purchase', 'cars', 'aml', 'relevant', 'vehicles', 'financed', 'three', 'inventory', 'funding', 'arrangements', 'required', 'delivered', 'relevant', 'dealers', 'within', '45', 'days', 'funding', 'relevant', 'vehicles', 'financed', 'remaining', 'one', 'required', 'delivered', 'relevant', 'dealers', 'within', '24', 'hours', 'funding', 'export', 'cleared', 'within', '15', 'days', 'funding', 'export', 'not', 'cleared', 'applicable', 'agreements', 'non', 'recourse', 'aml', '145', 'wholesale', 'finance', 'facility', 'may', '31', '2007', 'aston', 'martin', 'lagonda', 'north', 'america', 'inc', 'amlna', 'aston', 'martin', 'lagonda', 'limited', 'aml', 'standard', 'chartered', 'bank', 'entered', 'wholesale', 'finance', 'facility', 'agreement', 'amended', 'time', 'time', 'wholesale', 'finance', 'facility', 'wholesale', 'finance', 'facility', 'facility', 'pursuant', 'aml', 'amlna', 'offer', 'standard', 'chartered', 'bank', 'certain', 'receivables', 'owing', 'dealers', 'acquired', 'aston', 'martin', 'cars', 'credit', 'terms', 'not', 'exceeding', '270', 'days', 'date', 'dispatch', 'facility', 'used', 'e', 'standard', 'chartered', 'bank', 'purchases', 'receivables', 'offered', 'receive', 'standard', 'chartered', 'bank', 'purchase', 'price', 'car', 'less', 'discount', 'charge', 'calculated', 'accordance', 'wholesale', 'finance', 'facility', 'agreement', 'following', 'issuance', 'invoice', 'dealer', 'subject', 'satisfaction', 'certain', 'requirements', 'dealer', 'instructed', 'make', 'payment', 'amounts', 'due', 'invoice', 'account', 'standard', 'chartered', 'bank', 'amounts', 'paid', 'account', 'recovered', 'retained', 'standard', 'chartered', 'bank', 'required', 'pay', 'standard', 'chartered', 'bank', 'flat', 'fee', 'providing', 'wholesale', 'finance', 'facility', 'quarterly', 'basis', 'duration', 'facility', 'charge', 'discount', 'rates', 'applied', 'standard', 'chartered', 'bank', 'fees', 'associated', 'wholesale', 'finance', 'facility', 'dealers', 'time', 'time', 'wholesale', 'finance', 'facility', 'backed', 'credit', 'insurance', 'contract', 'aml', 'insurer', 'atradius', 'credit', 'insurance', 'nv', 'event', 'dealer', 'fails', 'make', 'payment', 'standard', 'chartered', 'bank', 'receivables', 'purchased', 'scheme', 'liability', 'respect', 'dealer', 'default', 'wholesale', 'finance', 'facility', 'event', 'credit', 'insurance', 'not', 'cover', 'default', 'aml', 'amlna', 'required', 'repurchase', 'relevant', 'receivable', 'limited', 'aggregate', '200', '000', 'two', 'year', 'period', 'ending', 'august', '31', '2018', 'additionally', 'certain', 'circumstances', 'continuing', 'event', 'default', 'receivable', 'no', 'longer', 'enforceable', 'relevant', 'dealer', 'aml', 'amlna', 'may', 'required', 'standard', 'chartered', 'bank', 'repurchase', 'relevant', 'unpaid', 'receivable', 'february', '28', '2017', 'utilization', 'wholesale', 'finance', 'facility', '123', '1', 'million', 'available', '125', 'million', 'currently', 'credit', 'approval', 'standard', 'chartered', 'bank', 'increase', 'facility', '145', 'million', 'wholesale', 'finance', 'facility', 'treated', 'balance', 'sheet', 'arrangement', 'notes', 'proceeds', 'loan', 'notes', 'proceeds', 'loan', 'interest', 'free', 'loan', 'repayable', 'time', 'granted', 'issuer', 'lender', 'aml', 'borrower', 'pursuant', 'intercompany', 'loan', 'agreement', 'dated', 'issue', 'date', 'governed', 'english', 'law', 'proceeds', 'offering', 'used', 'issuer', 'fund', 'notes', 'proceeds', 'loan', '146', 'description', 'notes', 'following', 'description', 'aggregate', 'principal', 'amount', 'senior', 'secured', 'notes', 'due', '2022', 'dollar', 'notes', 'aggregate', 'principal', 'amount', 'senior', 'secured', 'notes', 'due', '2022', 'sterling', 'notes', 'together', 'dollar', 'notes', 'notes', 'notes', 'issued', 'aston', 'martin', 'capital', 'holdings', 'limited', 'issuer', 'indenture', 'indenture', 'among', 'others', 'issuer', 'aston', 'martin', 'investments', 'limited', 'company', 'certain', 'subsidiaries', 'company', 'together', 'company', 'guarantors', 'u', 'bank', 'trustees', 'limited', 'trustee', 'security', 'agent', 'trustee', 'private', 'transaction', 'not', 'subject', 'registration', 'requirements', 'u', 'securities', 'act', '1933', 'amended', 'u', 'securities', 'act', 'see', 'notice', 'investors', 'dollar', 'notes', 'sterling', 'notes', 'separate', 'series', 'notes', 'treated', 'single', 'class', 'securities', 'indenture', 'except', 'otherwise', 'stated', 'herein', 'result', 'among', 'things', 'holders', 'series', 'notes', 'not', 'separate', 'independent', 'rights', 'give', 'written', 'notice', 'default', 'direct', 'trustee', 'exercise', 'remedies', 'event', 'default', 'otherwise', 'terms', 'notes', 'include', 'stated', 'indenture', 'not', 'incorporate', 'provisions', 'reference', 'otherwise', 'subject', 'trust', 'indenture', 'act', 'notes', 'subject', 'terms', 'pursuant', 'provisions', 'indenture', 'holders', 'notes', 'referred', 'indenture', 'statement', 'thereof', 'gross', 'proceeds', 'offering', 'notes', 'sold', 'issue', 'date', 'used', 'issuer', 'fund', 'loan', 'aston', 'martin', 'lagonda', 'limited', 'notes', 'proceeds', 'loan', 'turn', 'use', 'funds', 'received', 'redeem', 'existing', 'notes', 'behalf', 'aston', 'martin', 'capital', 'limited', 'ii', 'redeem', 'existing', 'pik', 'notes', 'behalf', 'aston', 'martin', 'holdings', 'uk', 'limited', 'iii', 'pay', 'commissions', 'fees', 'expenses', 'associated', 'transactions', 'iv', 'general', 'corporate', 'purposes', 'including', 'working', 'capital', 'see', 'use', 'proceeds', 'addition', 'company', 'certain', 'subsidiaries', 'enter', 'new', '80', 'million', 'revolving', 'credit', 'facility', 'agreement', 'inter', 'alios', 'j', 'p', 'morgan', 'limited', 'deutsche', 'bank', 'ag', 'london', 'branch', 'goldman', 'sachs', 'bank', 'usa', 'lead', 'arrangers', 'jpmorgan', 'chase', 'bank', 'n', 'london', 'branch', 'deutsche', 'bank', 'ag', 'london', 'branch', 'goldman', 'sachs', 'bank', 'usa', 'bank', 'america', 'merrill', 'lynch', 'international', 'limited', 'hsbc', 'bank', 'plc', 'morgan', 'stanley', 'senior', 'funding', 'inc', 'standard', 'chartered', 'bank', 'unicredit', 'bank', 'ag', 'london', 'branch', 'original', 'lenders', 'elavon', 'financial', 'services', 'dac', 'uk', 'branch', 'facility', 'agent', 'u', 'bank', 'trustees', 'limited', 'security', 'agent', 'new', 'revolving', 'credit', 'facility', 'agreement', 'description', 'new', 'revolving', 'credit', 'facility', 'agreement', 'see', 'description', 'financial', 'arrangements', 'new', 'revolving', 'credit', 'facility', 'agreement', 'following', 'description', 'summary', 'material', 'provisions', 'indenture', 'notes', 'refers', 'intercreditor', 'agreement', 'summary', 'not', 'restate', 'agreements', 'entirety', 'urge', 'read', 'indenture', 'notes', 'intercreditor', 'agreement', 'not', 'description', 'define', 'rights', 'holders', 'notes', 'copies', 'indenture', 'form', 'note', 'intercreditor', 'agreement', 'available', 'set', 'forth', 'listing', 'general', 'information', 'certain', 'defined', 'terms', 'used', 'description', 'not', 'defined', 'certain', 'definitions', 'meanings', 'assigned', 'indenture', 'find', 'definitions', 'certain', 'terms', 'used', 'description', 'subheading', 'certain', 'definitions', 'description', 'term', 'issuer', 'refers', 'aston', 'martin', 'capital', 'holdings', 'limited', 'successors', 'company', 'refers', 'aston', 'martin', 'investments', 'limited', 'successors', 'not', 'subsidiaries', 'registered', 'holder', 'note', 'treated', 'owner', 'purposes', 'registered', 'holders', 'rights', 'indenture', 'brief', 'description', 'notes', 'guarantees', 'notes', 'notes', 'senior', 'secured', 'obligations', 'issuer', 'secured', 'liens', 'collateral', 'described', 'herein', 'pursuant', 'intercreditor', 'agreement', 'receive', 'proceeds', 'enforcement', 'security', '147', 'collateral', 'certain', 'obligations', 'including', 'lenders', 'new', 'revolving', 'credit', 'facility', 'agreement', 'counterparties', 'certain', 'hedging', 'obligations', 'paid', 'full', 'described', 'security', 'collateral', 'pari', 'passu', 'right', 'payment', 'existing', 'future', 'indebtedness', 'issuer', 'not', 'subordinated', 'right', 'payment', 'notes', 'senior', 'right', 'payment', 'existing', 'future', 'indebtedness', 'issuer', 'subordinated', 'right', 'payment', 'notes', 'effectively', 'subordinated', 'existing', 'future', 'indebtedness', 'issuer', 'secured', 'property', 'assets', 'not', 'secure', 'notes', 'extent', 'value', 'property', 'assets', 'securing', 'indebtedness', 'effectively', 'subordinated', 'existing', 'future', 'indebtedness', 'subsidiaries', 'company', 'not', 'guarantee', 'notes', 'fully', 'unconditionally', 'guaranteed', 'guarantors', 'joint', 'several', 'basis', 'subject', 'guarantee', 'limitations', 'described', 'herein', 'guarantees', 'guarantees', 'senior', 'obligations', 'relevant', 'guarantor', 'secured', 'liens', 'collateral', 'described', 'herein', 'pursuant', 'intercreditor', 'agreement', 'receive', 'proceeds', 'enforcement', 'security', 'collateral', 'certain', 'obligations', 'including', 'lenders', 'new', 'revolving', 'credit', 'facility', 'agreement', 'counterparties', 'certain', 'hedging', 'obligations', 'paid', 'full', 'described', 'security', 'collateral', 'rank', 'pari', 'passu', 'right', 'payment', 'guarantors', 'existing', 'future', 'senior', 'indebtedness', 'including', 'indebtedness', 'new', 'revolving', 'credit', 'facility', 'agreement', 'rank', 'senior', 'right', 'payment', 'existing', 'future', 'subordinated', 'indebtedness', 'guarantors', 'effectively', 'subordinated', 'existing', 'future', 'indebtedness', 'guarantors', 'secured', 'property', 'assets', 'not', 'secure', 'guarantors', 'guarantees', 'notes', 'equal', 'basis', 'extent', 'value', 'property', 'assets', 'securing', 'indebtedness', 'effectively', 'subordinated', 'existing', 'future', 'indebtedness', 'subsidiaries', 'company', 'not', 'guarantee', 'notes', 'subject', 'limitations', 'described', 'herein', 'principal', 'maturity', 'issuer', 'issue', 'million', 'aggregate', 'principal', 'amount', 'dollar', 'notes', 'million', 'aggregate', 'principal', 'amount', 'sterling', 'notes', 'issue', 'date', 'notes', 'mature', '2022', 'dollar', 'notes', 'sterling', 'notes', 'issued', 'denominations', '200', '000', '100', '000', 'respectively', 'integral', 'multiples', '1', '000', '1', '000', 'respectively', 'excess', 'thereof', 'rights', 'holders', 'beneficial', 'interests', 'notes', 'receive', 'payments', 'notes', 'subject', 'applicable', 'procedures', 'dtc', 'case', 'dollar', 'notes', 'euroclear', 'clearstream', 'case', 'sterling', 'notes', 'due', 'date', 'payment', 'respect', 'notes', 'not', 'business', 'day', 'holder', 'thereof', 'not', 'entitled', 'payment', 'amount', 'due', 'next', 'succeeding', 'business', 'day', 'not', 'entitled', 'interest', 'payment', 'result', 'delay', '148', 'interest', 'interest', 'notes', 'interest', 'dollar', 'notes', 'accrue', 'rate', 'per', 'annum', 'interest', 'sterling', 'notes', 'accrue', 'rate', 'per', 'annum', 'case', 'payable', 'cash', 'semi', 'annually', 'arrears', 'year', 'commencing', '2017', 'holders', 'record', 'immediately', 'preceding', 'respectively', 'interest', 'notes', 'accrue', 'recent', 'date', 'interest', 'paid', 'no', 'interest', 'paid', 'date', 'original', 'issuance', 'interest', 'computed', 'basis', '360', 'day', 'year', 'comprised', 'twelve', '30', 'day', 'months', 'interest', 'period', 'shall', 'end', 'not', 'include', 'relevant', 'interest', 'payment', 'date', 'general', 'interest', 'payment', 'date', 'respect', 'notes', 'not', 'business', 'day', 'holder', 'thereof', 'not', 'entitled', 'payment', 'amount', 'due', 'next', 'succeeding', 'business', 'day', 'not', 'entitled', 'interest', 'payment', 'result', 'delay', 'additional', 'notes', 'issuer', 'may', 'issue', 'unlimited', 'principal', 'amount', 'additional', 'notes', 'terms', 'specified', 'time', 'time', 'issuer', 'additional', 'notes', 'long', 'issuance', 'compliance', 'covenants', 'contained', 'indenture', 'including', 'covenant', 'restricting', 'incurrence', 'indebtedness', 'described', 'certain', 'covenants', 'limitation', 'indebtedness', 'notes', 'issued', 'offering', 'issued', 'additional', 'notes', 'treated', 'single', 'class', 'purposes', 'indenture', 'including', 'without', 'limitation', 'respect', 'waivers', 'amendments', 'redemptions', 'offers', 'purchase', 'except', 'otherwise', 'provided', 'indenture', 'additional', 'notes', 'not', 'fungible', 'notes', 'u', 'federal', 'income', 'tax', 'purposes', 'additional', 'notes', 'separate', 'cusip', 'isin', 'common', 'code', 'applicable', 'unless', 'context', 'otherwise', 'requires', 'description', 'notes', 'references', 'notes', 'include', 'notes', 'additional', 'notes', 'actually', 'issued', 'additional', 'notes', 'may', 'also', 'designated', 'additional', 'dollar', 'notes', 'additional', 'sterling', 'notes', 'terms', 'substantially', 'identical', 'material', 'respects', 'initial', 'dollar', 'notes', 'initial', 'sterling', 'notes', 'case', 'may', 'initial', 'dollar', 'notes', 'additional', 'dollar', 'notes', 'shall', 'deemed', 'form', 'one', 'series', 'references', 'dollar', 'notes', 'shall', 'deemed', 'refer', 'dollar', 'notes', 'initially', 'issued', 'issue', 'date', 'well', 'additional', 'dollar', 'notes', 'initial', 'sterling', 'notes', 'additional', 'sterling', 'notes', 'shall', 'deemed', 'form', 'one', 'series', 'references', 'sterling', 'notes', 'shall', 'deemed', 'include', 'sterling', 'notes', 'initially', 'issued', 'issue', 'date', 'well', 'additional', 'sterling', 'notes', 'purposes', 'voting', 'matter', 'requiring', 'determination', 'based', 'percentage', 'principal', 'amount', 'notes', 'outstanding', 'aggregate', 'principal', 'amount', 'outstanding', 'sterling', 'notes', 'notes', 'not', 'denominated', 'u', 'dollars', 'calculated', 'using', 'dollar', 'equivalent', 'aggregate', 'principal', 'amount', 'outstanding', 'relevant', 'pricing', 'date', 'methods', 'receiving', 'payments', 'notes', 'principal', 'premium', 'interest', 'additional', 'amounts', 'defined', 'global', 'notes', 'defined', 'payable', 'specified', 'office', 'agency', 'one', 'paying', 'agents', 'provided', 'payments', 'respect', 'notes', 'represented', 'one', 'global', 'note', 'registered', 'name', 'held', 'nominee', 'dtc', 'euroclear', 'clearstream', 'applicable', 'made', 'wire', 'transfer', 'immediately', 'available', 'funds', 'account', 'specified', 'holder', 'holders', 'thereof', 'principal', 'premium', 'interest', 'additional', 'amounts', 'certificated', 'securities', 'definitive', 'registered', 'notes', 'payable', 'specified', 'office', 'agency', 'one', 'paying', 'agents', 'maintained', 'purposes', 'addition', 'interest', 'definitive', 'registered', 'notes', 'may', 'paid', 'check', 'mailed', 'person', 'entitled', 'thereto', 'shown', 'register', 'definitive', 'registered', 'notes', 'see', 'paying', 'agent', 'registrar', 'notes', '149', 'paying', 'agent', 'registrar', 'notes', 'issuer', 'maintain', 'one', 'paying', 'agents', 'notes', 'paying', 'agent', 'london', 'principal', 'paying', 'agent', 'ii', 'borough', 'manhattan', 'city', 'new', 'york', 'u', 'paying', 'agent', 'initial', 'paying', 'agents', 'notes', 'elavon', 'financial', 'services', 'dac', 'uk', 'branch', 'principal', 'paying', 'agent', 'u', 'bank', 'national', 'association', 'u', 'paying', 'agent', 'issuer', 'also', 'maintain', 'one', 'registrars', 'registrar', 'one', 'transfer', 'agents', 'city', 'london', 'borough', 'manhattan', 'city', 'new', 'york', 'transfer', 'agent', 'initial', 'registrar', 'elavon', 'financial', 'services', 'dac', 'initial', 'transfer', 'agent', 'elavon', 'financial', 'services', 'dac', 'registrar', 'transfer', 'agents', 'applicable', 'maintain', 'register', 'reflecting', 'ownership', 'definitive', 'registered', 'notes', 'outstanding', 'time', 'time', 'make', 'payments', 'facilitate', 'transfers', 'definitive', 'registered', 'notes', 'behalf', 'issuer', 'applicable', 'transfer', 'agent', 'shall', 'perform', 'functions', 'transfer', 'agent', 'issuer', 'may', 'change', 'paying', 'agent', 'registrar', 'transfer', 'agent', 'notes', 'without', 'prior', 'notice', 'holders', 'notes', 'issuer', 'company', 'subsidiaries', 'may', 'act', 'paying', 'agent', 'registrar', 'respect', 'notes', 'long', 'notes', 'listed', 'official', 'list', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'rules', 'channel', 'islands', 'securities', 'exchange', 'require', 'issuer', 'publish', 'notice', 'change', 'paying', 'agent', 'registrar', 'transfer', 'agent', 'accordance', 'requirements', 'rules', 'transfer', 'exchange', 'notes', 'initially', 'issued', 'form', 'registered', 'notes', 'global', 'form', 'without', 'interest', 'coupons', 'follows', 'notes', 'sold', 'within', 'united', 'states', 'qualified', 'institutional', 'buyers', 'pursuant', 'rule', '144a', 'securities', 'act', 'initially', 'represented', 'global', 'notes', 'registered', 'form', 'without', 'interest', 'coupons', 'attached', '144a', 'global', 'notes', '144a', 'global', 'notes', 'representing', 'dollar', 'notes', 'upon', 'issuance', 'deposited', 'custodian', 'dtc', 'registered', 'name', 'cede', 'co', 'nominee', 'dtc', '144a', 'global', 'notes', 'representing', 'sterling', 'notes', 'upon', 'issuance', 'deposited', 'registered', 'name', 'common', 'depositary', 'accounts', 'euroclear', 'clearstream', 'notes', 'sold', 'outside', 'united', 'states', 'pursuant', 'regulation', 'securities', 'act', 'initially', 'represented', 'global', 'notes', 'registered', 'form', 'without', 'interest', 'coupons', 'attached', 'regulation', 'global', 'notes', 'together', '144a', 'global', 'notes', 'global', 'notes', 'regulation', 'global', 'notes', 'representing', 'dollar', 'notes', 'upon', 'issuance', 'deposited', 'custodian', 'dtc', 'registered', 'name', 'cede', 'co', 'nominee', 'dtc', 'regulation', 'global', 'notes', 'representing', 'sterling', 'notes', 'upon', 'issuance', 'deposited', 'registered', 'name', 'common', 'depositary', 'accounts', 'euroclear', 'clearstream', 'ownership', 'interests', 'global', 'notes', 'book', 'entry', 'interests', 'limited', 'persons', 'accounts', 'dtc', 'case', 'dollar', 'notes', 'euroclear', 'clearstream', 'case', 'sterling', 'notes', 'persons', 'may', 'hold', 'interests', 'participants', 'ownership', 'interests', 'book', 'entry', 'interests', 'transfers', 'thereof', 'subject', 'restrictions', 'transfer', 'certification', 'requirements', 'summarized', 'described', 'fully', 'notice', 'investors', 'addition', 'transfers', 'book', 'entry', 'interests', 'participants', 'dtc', 'case', 'dollar', 'notes', 'euroclear', 'participants', 'clearstream', 'case', 'sterling', 'notes', 'effected', 'dtc', 'case', 'dollar', 'notes', 'euroclear', 'clearstream', 'applicable', 'case', 'sterling', 'notes', 'pursuant', 'customary', 'procedures', 'subject', 'applicable', 'rules', 'procedures', 'established', 'dtc', 'euroclear', 'clearstream', 'applicable', 'respective', 'participants', 'book', 'entry', 'interests', '144a', 'global', 'notes', 'may', 'transferred', 'person', 'takes', 'delivery', 'form', 'book', 'entry', 'interests', 'regulation', 'global', 'notes', 'upon', 'delivery', '150', 'transferor', 'written', 'certification', 'form', 'provided', 'indenture', 'effect', 'transfer', 'made', 'accordance', 'regulation', 'securities', 'act', 'prior', '40', 'days', 'date', 'initial', 'issuance', 'notes', 'ownership', 'book', 'entry', 'interests', 'regulation', 'global', 'notes', 'limited', 'persons', 'accounts', 'dtc', 'case', 'dollar', 'notes', 'euroclear', 'clearstream', 'case', 'sterling', 'notes', 'persons', 'hold', 'interests', 'participants', 'sale', 'transfer', 'interest', 'u', 'persons', 'shall', 'not', 'permitted', 'period', 'unless', 'resale', 'transfer', 'made', 'pursuant', 'rule', '144a', 'securities', 'act', 'subject', 'foregoing', 'regulation', 'book', 'entry', 'interests', 'may', 'transferred', 'person', 'takes', 'delivery', 'form', '144a', 'book', 'entry', 'interests', 'upon', 'delivery', 'transferor', 'written', 'certification', 'form', 'provided', 'indenture', 'effect', 'transfer', 'made', 'person', 'transferor', 'reasonably', 'believes', 'qualified', 'institutional', 'buyer', 'within', 'meaning', 'rule', '144a', 'transaction', 'meeting', 'requirements', 'rule', '144a', 'otherwise', 'accordance', 'transfer', 'restrictions', 'described', 'notice', 'investors', 'accordance', 'applicable', 'securities', 'law', 'jurisdiction', 'book', 'entry', 'interest', 'transferred', 'described', 'immediately', 'preceding', 'paragraphs', 'upon', 'transfer', 'cease', 'book', 'entry', 'interest', 'global', 'note', 'transferred', 'become', 'book', 'entry', 'interest', 'global', 'note', 'transferred', 'accordingly', 'transfer', 'become', 'subject', 'transfer', 'restrictions', 'procedures', 'applicable', 'book', 'entry', 'interests', 'global', 'note', 'transferred', 'definitive', 'registered', 'notes', 'issued', 'issued', 'minimum', 'denominations', '200', '000', 'principal', 'amount', 'integral', 'multiples', '1', '000', 'excess', 'thereof', 'case', 'dollar', 'notes', '100', '000', 'principal', 'amount', 'integral', 'multiples', '1', '000', 'excess', 'thereof', 'case', 'sterling', 'notes', 'upon', 'receipt', 'registrar', 'instructions', 'relating', 'thereto', 'certificates', 'opinions', 'documentation', 'required', 'indenture', 'expected', 'instructions', 'based', 'upon', 'directions', 'received', 'dtc', 'euroclear', 'clearstream', 'applicable', 'participant', 'owns', 'relevant', 'book', 'entry', 'interests', 'definitive', 'registered', 'notes', 'issued', 'exchange', 'book', 'entry', 'interest', 'except', 'set', 'forth', 'indenture', 'otherwise', 'determined', 'issuer', 'compliance', 'applicable', 'law', 'subject', 'legend', 'respect', 'restrictions', 'transfer', 'summarized', 'described', 'fully', 'transfer', 'restrictions', 'subject', 'restrictions', 'transfer', 'referred', 'notes', 'issued', 'definitive', 'registered', 'notes', 'may', 'transferred', 'exchanged', 'whole', 'part', 'minimum', 'denominations', '200', '000', 'principal', 'amount', 'integral', 'multiples', '1', '000', 'excess', 'thereof', 'case', 'dollar', 'notes', '100', '000', 'principal', 'amount', 'integral', 'multiples', '1', '000', 'excess', 'thereof', 'case', 'sterling', 'notes', 'connection', 'transfer', 'exchange', 'indenture', 'require', 'transferring', 'exchanging', 'holder', 'among', 'things', 'furnish', 'appropriate', 'endorsements', 'transfer', 'documents', 'furnish', 'information', 'regarding', 'account', 'transferee', 'dtc', 'euroclear', 'clearstream', 'applicable', 'furnish', 'certain', 'certificates', 'opinions', 'pay', 'taxes', 'duties', 'governmental', 'charges', 'connection', 'transfer', 'exchange', 'transfer', 'exchange', 'made', 'without', 'charge', 'holder', 'taxes', 'duties', 'governmental', 'charges', 'payable', 'connection', 'transfer', 'notwithstanding', 'foregoing', 'issuer', 'not', 'required', 'register', 'transfer', 'exchange', 'notes', '1', 'period', '15', 'days', 'prior', 'date', 'fixed', 'redemption', 'notes', '2', 'period', '15', 'days', 'immediately', 'prior', 'date', 'fixed', 'selection', 'notes', 'redeemed', 'part', '3', 'period', '15', 'days', 'prior', 'record', 'date', 'respect', 'interest', 'payment', 'date', 'applicable', 'notes', '4', 'holder', 'tendered', 'not', 'withdrawn', 'repurchase', 'connection', 'change', 'control', 'offer', 'asset', 'disposition', 'offer', 'issuer', 'trustee', 'registrar', 'paying', 'agents', 'entitled', 'treat', 'holder', 'note', 'owner', 'purposes', '151', 'restricted', 'subsidiaries', 'unrestricted', 'subsidiaries', 'immediately', 'issuance', 'notes', 'upon', 'issue', 'date', 'company', 'subsidiaries', 'restricted', 'subsidiaries', 'circumstances', 'described', 'certain', 'definitions', 'unrestricted', 'subsidiary', 'company', 'permitted', 'designate', 'restricted', 'subsidiaries', 'issuer', 'unrestricted', 'subsidiaries', 'unrestricted', 'subsidiaries', 'not', 'subject', 'restrictive', 'covenants', 'indenture', 'guarantees', 'obligations', 'issuer', 'pursuant', 'notes', 'including', 'payment', 'obligation', 'resulting', 'change', 'control', 'subject', 'agreed', 'security', 'principles', 'guaranteed', 'jointly', 'severally', 'senior', 'basis', 'guarantors', 'guarantee', 'guarantee', 'issue', 'date', 'initial', 'guarantors', 'company', 'aston', 'martin', 'lagonda', 'group', 'limited', 'group', 'limited', 'aston', 'martin', 'lagonda', 'limited', 'limited', 'aston', 'martin', 'capital', 'limited', 'capital', 'year', 'ended', 'december', '31', '2016', 'guarantors', 'represented', '96', '65', '92', 'group', 'consolidated', 'ebitda', 'revenue', 'assets', 'respectively', 'december', '31', '2016', 'giving', 'effect', 'transactions', 'consolidated', 'basis', 'subsidiaries', 'not', 'guarantee', 'notes', 'would', '3', '9', 'million', 'outstanding', 'debt', 'addition', 'described', 'certain', 'covenants', 'additional', 'guarantees', 'subject', 'intercreditor', 'agreement', 'agreed', 'security', 'principles', 'restricted', 'subsidiary', 'guarantees', 'new', 'revolving', 'credit', 'facility', 'agreement', 'public', 'debt', 'certain', 'indebtedness', 'shall', 'also', 'enter', 'supplemental', 'indenture', 'guarantor', 'notes', 'accede', 'intercreditor', 'agreement', 'guarantee', 'limited', 'maximum', 'amount', 'would', 'not', 'render', 'guarantor', 'obligations', 'subject', 'avoidance', 'applicable', 'fraudulent', 'conveyance', 'provisions', 'united', 'states', 'bankruptcy', 'code', 'comparable', 'provision', 'foreign', 'state', 'law', 'otherwise', 'required', 'comply', 'corporate', 'benefit', 'financial', 'assistance', 'laws', 'virtue', 'limitation', 'guarantor', 'obligation', 'guarantee', 'could', 'significantly', 'less', 'amounts', 'payable', 'respect', 'notes', 'guarantor', 'may', 'effectively', 'no', 'obligation', 'guarantee', 'see', 'risk', 'factors', 'risks', 'related', 'indebtedness', 'notes', 'jersey', 'english', 'insolvency', 'laws', 'may', 'not', 'favorable', 'united', 'states', 'insolvency', 'laws', 'insolvency', 'laws', 'limitations', 'guarantees', 'security', 'interests', 'notes', 'may', 'adversely', 'affect', 'validity', 'enforceability', 'guarantees', 'security', 'interests', 'limit', 'amount', 'recovered', 'guarantees', 'security', 'interests', 'granted', 'us', 'guarantors', 'guarantee', 'guarantor', 'terminate', 'release', 'upon', 'except', 'guarantee', 'given', 'company', 'sale', 'disposition', 'including', 'way', 'consolidation', 'merger', 'ownership', 'interests', 'guarantor', 'directly', 'parent', 'company', 'guarantor', 'not', 'remain', 'restricted', 'subsidiary', 'sale', 'disposition', 'substantially', 'assets', 'guarantor', 'company', 'restricted', 'subsidiary', 'case', 'otherwise', 'permitted', 'indenture', 'except', 'guarantee', 'given', 'company', 'connection', 'sale', 'disposition', 'capital', 'stock', 'guarantor', 'capital', 'stock', 'parent', 'guarantor', 'company', 'person', 'not', 'either', 'giving', 'effect', 'transaction', 'company', 'restricted', 'subsidiary', 'sale', 'disposition', 'not', 'violate', 'asset', 'sale', 'provisions', 'indenture', 'guarantor', 'ceases', 'restricted', 'subsidiary', 'result', 'sale', 'disposition', 'company', 'designates', 'restricted', 'subsidiary', 'guarantor', 'unrestricted', 'subsidiary', 'accordance', 'applicable', 'provisions', 'indenture', 'accordance', 'provisions', 'intercreditor', 'agreement', 'additional', 'intercreditor', 'agreement', 'upon', 'legal', 'defeasance', 'covenant', 'defeasance', 'satisfaction', 'discharge', 'indenture', 'provided', 'captions', 'defeasance', 'satisfaction', 'discharge', '152', 'upon', 'full', 'final', 'payment', 'notes', 'performance', 'obligations', 'issuer', 'guarantors', 'indenture', 'notes', 'described', 'caption', 'amendment', 'waiver', 'respect', 'subsidiary', 'guarantor', 'not', 'significant', 'subsidiary', 'long', 'no', 'event', 'default', 'occurred', 'continuing', 'extent', 'guarantor', 'unconditionally', 'released', 'discharged', 'liability', 'respect', 'new', 'revolving', 'credit', 'facility', 'agreement', 'ii', 'not', 'guarantee', 'credit', 'facility', 'public', 'debt', 'substantially', 'operations', 'company', 'issuer', 'conducted', 'subsidiaries', 'claims', 'creditors', 'non', 'guarantor', 'subsidiaries', 'including', 'trade', 'creditors', 'secured', 'creditors', 'creditors', 'holding', 'debt', 'guarantees', 'issued', 'subsidiaries', 'claims', 'preferred', 'minority', 'stockholders', 'subsidiaries', 'generally', 'priority', 'respect', 'assets', 'earnings', 'subsidiaries', 'claims', 'creditors', 'issuer', 'guarantors', 'including', 'holders', 'notes', 'notes', 'guarantee', 'therefore', 'structurally', 'subordinated', 'creditors', 'including', 'trade', 'creditors', 'preferred', 'minority', 'stockholders', 'subsidiaries', 'company', 'guarantors', 'although', 'indenture', 'limits', 'incurrence', 'indebtedness', 'disqualified', 'stock', 'preferred', 'stock', 'restricted', 'subsidiaries', 'limitation', 'subject', 'number', 'significant', 'exceptions', 'moreover', 'indenture', 'not', 'impose', 'limitation', 'incurrence', 'restricted', 'subsidiaries', 'liabilities', 'not', 'considered', 'indebtedness', 'disqualified', 'stock', 'preferred', 'stock', 'indenture', 'see', 'certain', 'covenants', 'limitation', 'indebtedness', 'security', 'collateral', 'subject', 'operation', 'agreed', 'security', 'principles', 'certain', 'excluded', 'assets', 'certain', 'perfection', 'requirements', 'permitted', 'collateral', 'liens', 'notes', 'guarantees', 'secured', 'following', 'initial', 'collateral', 'initial', 'collateral', 'limited', 'recourse', 'first', 'priority', 'security', 'interest', 'english', 'law', 'granted', 'aston', 'martin', 'holdings', 'uk', 'limited', 'issued', 'capital', 'stock', 'company', 'first', 'priority', 'security', 'interest', 'jersey', 'law', 'granted', 'company', 'issued', 'capital', 'stock', 'issuer', 'first', 'priority', 'security', 'interest', 'jersey', 'law', 'granted', 'issuer', 'issued', 'capital', 'stock', 'aston', 'martin', 'capital', 'limited', 'first', 'priority', 'security', 'interest', 'english', 'law', 'debenture', 'referred', 'last', 'bullet', 'point', 'paragraph', 'granted', 'company', 'issued', 'capital', 'stock', 'aston', 'martin', 'lagonda', 'group', 'limited', 'first', 'priority', 'security', 'interest', 'english', 'law', 'debenture', 'referred', 'last', 'bullet', 'point', 'paragraph', 'granted', 'aston', 'martin', 'lagonda', 'group', 'limited', 'issued', 'capital', 'stock', 'aston', 'martin', 'lagonda', 'limited', 'first', 'priority', 'security', 'interest', 'new', 'york', 'law', 'granted', 'aston', 'martin', 'lagonda', 'group', 'limited', 'issued', 'capital', 'stock', 'aston', 'martin', 'lagonda', 'north', 'america', 'inc', 'first', 'priority', 'assignment', 'governed', 'english', 'law', 'issuer', 'rights', 'notes', 'proceeds', 'loan', 'extent', 'still', 'outstanding', 'first', 'priority', 'assignment', 'governed', 'english', 'law', 'aston', 'martin', 'capital', 'limited', 'rights', 'existing', 'notes', 'proceeds', 'loan', 'english', 'law', 'debenture', 'creating', 'fixed', 'floating', 'security', 'material', 'operating', 'bank', 'accounts', 'material', 'intercompany', 'receivables', 'material', 'intellectual', 'property', 'shares', 'guarantors', 'certain', 'material', 'companies', 'company', 'aston', 'martin', 'lagonda', 'group', 'limited', 'aston', 'martin', 'lagonda', 'limited', 'agreed', 'security', 'principles', 'apply', 'granting', 'security', 'favor', 'obligations', 'new', 'revolving', 'credit', 'facility', 'agreement', 'notes', 'agreed', 'security', 'principles', 'include', '153', 'restrictions', 'granting', 'security', 'among', 'things', 'grant', 'would', 'restricted', 'corporate', 'benefit', 'financial', 'assistance', 'fraudulent', 'preference', 'thin', 'capitalization', 'laws', 'regulations', 'analogous', 'restrictions', 'action', 'would', 'result', 'significant', 'risk', 'officers', 'relevant', 'grantor', 'security', 'contravention', 'fiduciary', 'duties', 'civil', 'criminal', 'liability', 'result', 'costs', 'disproportionate', 'benefit', 'obtained', 'beneficiaries', 'security', 'see', 'description', 'financial', 'arrangements', 'agreed', 'security', 'principles', 'addition', 'subject', 'intercreditor', 'agreement', 'subject', 'agreed', 'security', 'principles', 'subsidiary', 'company', 'becomes', 'guarantor', 'notes', 'issue', 'date', 'grant', 'security', 'connection', 'therewith', 'together', 'initial', 'collateral', 'collateral', 'collateral', 'shall', 'subject', 'operation', 'agreed', 'security', 'principles', 'permitted', 'collateral', 'liens', 'notwithstanding', 'foregoing', 'certain', 'assets', 'not', 'pledged', 'liens', 'not', 'perfected', 'accordance', 'agreed', 'security', 'principles', 'collateral', 'secure', 'liabilities', 'notes', 'new', 'revolving', 'credit', 'facility', 'agreement', 'certain', 'hedging', 'agreements', 'additional', 'notes', 'pursuant', 'intercreditor', 'agreement', 'liabilities', 'respect', 'obligations', 'new', 'revolving', 'credit', 'facility', 'agreement', 'certain', 'hedging', 'obligations', 'permitted', 'incurred', 'covenant', 'certain', 'covenants', 'limitation', 'indebtedness', 'permitted', 'secured', 'collateral', 'super', 'priority', 'basis', 'receive', 'priority', 'holders', 'respect', 'proceeds', 'received', 'upon', 'enforcement', 'action', 'collateral', 'subject', 'certain', 'conditions', 'including', 'compliance', 'covenant', 'described', 'certain', 'covenants', 'impairment', 'security', 'interest', 'company', 'permitted', 'grant', 'security', 'collateral', 'connection', 'future', 'issuances', 'indebtedness', 'indebtedness', 'restricted', 'subsidiaries', 'including', 'additional', 'notes', 'case', 'permitted', 'indenture', 'intercreditor', 'agreement', 'proceeds', 'received', 'upon', 'enforcement', 'collateral', 'liabilities', 'respect', 'obligations', 'new', 'revolving', 'credit', 'facility', 'agreement', 'certain', 'hedging', 'obligations', 'discharged', 'recoveries', 'applied', 'pro', 'rata', 'payment', 'liabilities', 'respect', 'obligations', 'indenture', 'notes', 'indebtedness', 'company', 'restricted', 'subsidiaries', 'permitted', 'incurred', 'secured', 'collateral', 'pursuant', 'indenture', 'intercreditor', 'agreement', 'administration', 'security', 'enforcement', 'liens', 'security', 'documents', 'collateral', 'administered', 'security', 'agent', 'case', 'pursuant', 'intercreditor', 'agreement', 'benefit', 'holders', 'secured', 'obligations', 'enforcement', 'security', 'documents', 'subject', 'procedures', 'set', 'forth', 'intercreditor', 'agreement', 'description', 'intercreditor', 'agreement', 'see', 'description', 'indebtedness', 'intercreditor', 'agreement', 'ability', 'holders', 'notes', 'realize', 'upon', 'collateral', 'subject', 'various', 'insolvency', 'law', 'limitations', 'event', 'issuer', 'guarantor', 'insolvency', 'see', 'risk', 'factors', 'risks', 'related', 'indebtedness', 'notes', 'jersey', 'english', 'insolvency', 'laws', 'may', 'not', 'favorable', 'united', 'states', 'insolvency', 'laws', 'insolvency', 'laws', 'limitations', 'guarantees', 'security', 'interests', 'notes', 'may', 'adversely', 'affect', 'validity', 'enforceability', 'guarantees', 'security', 'interests', 'limit', 'amount', 'recovered', 'guarantees', 'security', 'interests', 'granted', 'us', 'guarantors', 'addition', 'enforcement', 'collateral', 'limited', 'maximum', 'amount', 'required', 'agreed', 'security', 'principles', 'comply', 'corporate', 'benefit', 'financial', 'assistance', 'laws', 'result', 'limitations', 'enforceable', 'amounts', 'issuer', 'obligation', 'notes', 'guarantor', 'obligation', 'guarantee', 'could', 'significantly', 'less', 'total', 'amounts', 'payable', 'respect', 'notes', 'guarantor', 'may', 'effectively', 'no', 'obligation', 'guarantee', 'subject', 'terms', 'security', 'documents', 'issuer', 'guarantors', 'right', 'remain', 'possession', 'retain', 'exclusive', 'control', 'collateral', 'securing', 'notes', 'set', 'forth', 'security', 'documents', 'freely', 'operate', 'collateral', 'collect', 'invest', 'dispose', 'income', 'therefrom', 'no', 'appraisals', 'collateral', 'prepared', 'behalf', 'issuer', 'connection', 'issuance', 'notes', 'no', 'assurance', 'proceeds', '154', 'sale', 'collateral', 'would', 'sufficient', 'satisfy', 'obligations', 'owed', 'holders', 'notes', 'payment', 'obligations', 'new', 'revolving', 'credit', 'facility', 'agreement', 'hedging', 'obligations', 'secured', 'collateral', 'nature', 'collateral', 'illiquid', 'may', 'no', 'readily', 'ascertainable', 'market', 'value', 'accordingly', 'no', 'assurance', 'collateral', 'sold', 'short', 'period', 'time', 'addition', 'intercreditor', 'agreement', 'places', 'limitations', 'ability', 'security', 'agent', 'cause', 'sale', 'collateral', 'see', 'description', 'indebtedness', 'intercreditor', 'agreement', 'trustee', 'notes', 'accepting', 'note', 'holder', 'deemed', 'irrevocably', 'appointed', 'u', 'bank', 'trustees', 'limited', 'security', 'agent', 'act', 'agent', 'intercreditor', 'agreement', 'relevant', 'documents', 'party', 'including', 'without', 'limitation', 'security', 'documents', 'irrevocably', 'authorized', 'security', 'agent', 'perform', 'duties', 'exercise', 'rights', 'powers', 'discretions', 'specifically', 'given', 'intercreditor', 'agreement', 'documents', 'party', 'including', 'without', 'limitation', 'security', 'documents', 'together', 'incidental', 'rights', 'power', 'discretions', 'ii', 'execute', 'document', 'waiver', 'modification', 'amendment', 'renewal', 'replacement', 'expressed', 'executed', 'security', 'agent', 'behalf', 'accepted', 'terms', 'conditions', 'intercreditor', 'agreement', 'additional', 'intercreditor', 'agreement', 'defined', 'holder', 'also', 'deemed', 'authorized', 'trustee', 'enter', 'additional', 'intercreditor', 'agreement', 'priority', 'relative', 'priority', 'regard', 'collateral', 'lenders', 'new', 'revolving', 'credit', 'facility', 'agreement', 'b', 'counterparties', 'certain', 'hedging', 'agreements', 'c', 'trustee', 'holders', 'indenture', 'established', 'terms', 'intercreditor', 'agreement', 'security', 'documents', 'provide', 'obligations', 'notes', 'receive', 'proceeds', 'enforcement', 'security', 'collateral', 'obligations', 'new', 'revolving', 'credit', 'facility', 'agreement', 'certain', 'hedging', 'obligations', 'satisfied', 'see', 'description', 'indebtedness', 'intercreditor', 'agreement', 'addition', 'pursuant', 'intercreditor', 'agreement', 'additional', 'intercreditor', 'agreements', 'entered', 'issue', 'date', 'collateral', 'may', 'pledged', 'secure', 'indebtedness', 'see', 'security', 'release', 'liens', 'certain', 'covenants', 'impairment', 'security', 'interest', 'certain', 'definitions', 'permitted', 'collateral', 'liens', 'release', 'liens', 'subject', 'terms', 'intercreditor', 'agreement', 'upon', 'receipt', 'officer', 'certificate', 'security', 'agent', 'shall', 'release', 'trustee', 'shall', 'directed', 'direct', 'security', 'agent', 'release', 'without', 'need', 'consent', 'holders', 'liens', 'property', 'assets', 'constituting', 'collateral', 'securing', 'notes', 'guarantees', '1', 'connection', 'disposition', 'collateral', 'directly', 'indirectly', 'person', 'company', 'restricted', 'subsidiaries', 'excluding', 'transaction', 'subject', 'certain', 'covenants', 'merger', 'consolidation', 'company', 'certain', 'covenants', 'merger', 'consolidation', 'issuer', 'permitted', 'indenture', 'respect', 'lien', 'collateral', 'b', 'company', 'restricted', 'subsidiary', 'consistent', 'intercreditor', 'agreement', 'additional', 'intercreditor', 'agreement', 'permitted', 'new', 'revolving', 'credit', 'facility', 'agreement', '2', 'case', 'guarantor', 'released', 'guarantee', 'respect', 'liens', 'securing', 'guarantee', 'granted', 'guarantor', 'accordance', 'indenture', '3', 'company', 'designates', 'restricted', 'subsidiaries', 'issuer', 'unrestricted', 'subsidiary', 'accordance', 'applicable', 'provisions', 'indenture', 'release', 'property', 'assets', 'capital', 'stock', 'restricted', 'subsidiary', '155', '4', 'upon', 'legal', 'defeasance', 'covenant', 'defeasance', 'satisfaction', 'discharge', 'indenture', 'provided', 'captions', 'defeasance', 'satisfaction', 'discharge', '5', 'upon', 'full', 'final', 'payment', 'notes', 'performance', 'obligations', 'issuer', 'guarantors', 'indenture', 'notes', '6', 'described', 'caption', 'amendments', 'waivers', '7', 'described', 'caption', 'certain', 'covenants', 'impairment', 'security', 'interest', '8', 'automatically', 'without', 'action', 'trustee', 'lien', 'granted', 'favor', 'new', 'revolving', 'credit', 'facility', 'agreement', 'public', 'debt', 'indebtedness', 'gave', 'rise', 'obligation', 'grant', 'lien', 'collateral', 'released', 'pursuant', 'repayment', 'discharge', 'thereof', 'provided', 'release', 'would', 'otherwise', 'permitted', 'another', 'clause', '9', 'otherwise', 'provided', 'intercreditor', 'agreement', 'additional', 'intercreditor', 'agreement', '10', 'connection', 'permitted', 'reorganization', 'releases', 'shall', 'effected', 'security', 'agent', 'trustee', 'without', 'consent', 'holders', 'indenture', 'provide', 'release', 'lien', 'collateral', 'shall', 'evidenced', 'delivery', 'issuer', 'trustee', 'officer', 'certificate', 'company', 'issuer', 'restricted', 'subsidiaries', 'may', 'also', 'among', 'things', 'without', 'release', 'consent', 'trustee', 'security', 'agent', 'conduct', 'ordinary', 'course', 'activities', 'respect', 'collateral', 'including', 'without', 'limitation', 'selling', 'otherwise', 'disposing', 'transaction', 'series', 'related', 'transactions', 'property', 'subject', 'lien', 'security', 'documents', 'become', 'worn', 'defective', 'obsolete', 'not', 'used', 'useful', 'business', 'ii', 'selling', 'transferring', 'otherwise', 'disposing', 'current', 'assets', 'ordinary', 'course', 'business', 'iii', 'action', 'permitted', 'security', 'documents', 'intercreditor', 'agreement', 'amendments', 'intercreditor', 'agreement', 'additional', 'intercreditor', 'agreements', 'connection', 'incurrence', 'indebtedness', 'company', 'restricted', 'subsidiaries', 'permitted', 'share', 'collateral', 'trustee', 'security', 'agent', 'shall', 'request', 'company', 'enter', 'company', 'relevant', 'restricted', 'subsidiaries', 'holders', 'indebtedness', 'duly', 'authorized', 'representatives', 'one', 'intercreditor', 'agreements', 'deeds', 'including', 'restatement', 'replacement', 'amendment', 'modification', 'intercreditor', 'agreement', 'additional', 'intercreditor', 'agreement', 'substantially', 'terms', 'intercreditor', 'agreement', 'terms', 'not', 'materially', 'less', 'favorable', 'holders', 'substantially', 'similar', 'applies', 'sharing', 'proceeds', 'security', 'enforcement', 'security', 'priority', 'release', 'security', 'provided', 'additional', 'intercreditor', 'agreement', 'not', 'impose', 'personal', 'obligations', 'trustee', 'security', 'agent', 'adversely', 'affect', 'personal', 'rights', 'duties', 'liabilities', 'indemnification', 'immunities', 'trustee', 'security', 'agent', 'indenture', 'intercreditor', 'agreement', 'connection', 'foregoing', 'company', 'shall', 'furnish', 'trustee', 'documentation', 'relation', 'thereto', 'may', 'reasonably', 'require', 'used', 'herein', 'reference', 'intercreditor', 'agreement', 'also', 'include', 'additional', 'intercreditor', 'agreement', 'relation', 'intercreditor', 'agreement', 'trustee', 'shall', 'consent', 'behalf', 'holders', 'payment', 'repayment', 'purchase', 'repurchase', 'defeasance', 'acquisition', 'retirement', 'redemption', 'obligations', 'subordinated', 'notes', 'thereby', 'provided', 'however', 'transaction', 'would', 'comply', 'covenant', 'described', 'herein', 'certain', 'covenants', 'limitation', 'restricted', 'payments', 'indenture', 'also', 'provide', 'written', 'direction', 'issuer', 'without', 'consent', 'holders', 'trustee', 'security', 'agent', 'shall', 'time', 'time', 'enter', 'one', 'amendments', 'intercreditor', 'agreement', '1', 'cure', 'ambiguity', 'omission', 'defect', 'inconsistency', 'agreement', '2', 'increase', 'amount', 'types', 'indebtedness', 'including', '156', 'subordinated', 'indebtedness', 'covered', 'intercreditor', 'agreement', 'may', 'incurred', 'company', 'restricted', 'subsidiaries', 'subject', 'intercreditor', 'agreement', 'provided', 'indebtedness', 'incurred', 'compliance', 'indenture', '3', 'add', 'guarantors', 'restricted', 'subsidiaries', 'intercreditor', 'agreement', '4', 'secure', 'notes', 'including', 'additional', 'notes', '5', 'make', 'provision', 'equal', 'ratable', 'pledges', 'collateral', 'secure', 'additional', 'notes', 'implement', 'permitted', 'collateral', 'liens', '6', 'make', 'change', 'agreement', 'not', 'adversely', 'affect', 'holders', 'notes', 'material', 'respect', 'issuer', 'shall', 'not', 'otherwise', 'direct', 'trustee', 'security', 'agent', 'enter', 'amendment', 'intercreditor', 'agreement', 'without', 'consent', 'holders', 'majority', 'aggregate', 'principal', 'amount', 'notes', 'outstanding', 'except', 'otherwise', 'permitted', 'amendments', 'waivers', 'permitted', 'terms', 'intercreditor', 'agreement', 'issuer', 'may', 'direct', 'trustee', 'security', 'agent', 'enter', 'amendment', 'extent', 'amendment', 'not', 'impose', 'personal', 'obligations', 'trustee', 'security', 'agent', 'opinion', 'trustee', 'security', 'agent', 'adversely', 'affect', 'respective', 'rights', 'duties', 'liabilities', 'immunities', 'indenture', 'intercreditor', 'agreement', 'indenture', 'also', 'provide', 'holder', 'accepting', 'note', 'shall', 'deemed', 'agreed', 'accepted', 'terms', 'conditions', 'intercreditor', 'agreement', 'whether', 'entered', 'entered', 'future', 'pursuant', 'provisions', 'described', 'herein', 'authorized', 'trustee', 'security', 'agent', 'enter', 'intercreditor', 'agreement', 'additional', 'intercreditor', 'agreement', 'holder', 'behalf', 'copy', 'intercreditor', 'agreement', 'additional', 'intercreditor', 'agreement', 'shall', 'made', 'available', 'holders', 'upon', 'request', 'made', 'available', 'inspection', 'normal', 'business', 'hours', 'business', 'day', 'upon', 'prior', 'written', 'request', 'office', 'issuer', 'long', 'notes', 'listed', 'official', 'list', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'rules', 'channel', 'islands', 'securities', 'exchange', 'require', 'offices', 'registrar', 'dublin', 'ireland', 'notes', 'proceeds', 'loan', 'upon', 'issuance', 'notes', 'issuer', 'lender', 'aston', 'martin', 'lagonda', 'limited', 'borrower', 'enter', 'notes', 'proceeds', 'loan', 'agreement', 'pursuant', 'issuer', 'loan', 'aston', 'martin', 'lagonda', 'limited', 'gross', 'proceeds', 'issuance', 'notes', 'notes', 'proceeds', 'loan', 'agreement', 'provide', 'aston', 'martin', 'lagonda', 'limited', 'pay', 'issuer', 'amount', 'equal', 'interest', 'principal', 'due', 'payable', 'notes', 'additional', 'amounts', 'due', 'thereunder', 'upon', 'redemption', 'portion', 'notes', 'prior', 'maturity', 'date', 'aston', 'martin', 'lagonda', 'limited', 'make', 'payment', 'issuer', 'amount', 'equal', 'aggregate', 'principal', 'amount', 'notes', 'redeemed', 'consisting', 'principal', 'amount', 'notes', 'proceeds', 'loan', 'plus', 'additional', 'interest', 'plus', 'accrued', 'unpaid', 'interest', 'redemption', 'date', 'addition', 'notes', 'proceeds', 'loan', 'provide', 'upon', 'redemption', 'notes', 'prior', 'maturity', 'date', 'results', 'additional', 'payments', 'whatsoever', 'issuer', 'relation', 'notes', 'terms', 'indenture', 'aston', 'martin', 'lagonda', 'limited', 'shall', 'make', 'payment', 'issuer', 'amount', 'equal', 'additional', 'payments', 'amounts', 'payable', 'notes', 'proceeds', 'loan', 'payable', 'account', 'accounts', 'person', 'persons', 'issuer', 'may', 'designate', 'maturity', 'date', 'notes', 'proceeds', 'loan', 'maturity', 'date', 'maturity', 'date', 'notes', 'except', 'otherwise', 'required', 'law', 'payments', 'notes', 'proceeds', 'loan', 'agreement', 'made', 'without', 'deductions', 'withholding', 'account', 'applicable', 'tax', 'event', 'aston', 'martin', 'lagonda', 'limited', 'required', 'make', 'deduction', 'withholding', 'shall', 'gross', 'payment', 'issuer', 'ensure', 'issuer', 'receives', 'retains', 'net', 'payment', 'equal', 'payment', 'would', 'received', 'no', 'deduction', 'withholding', 'made', 'notes', 'proceeds', 'loan', 'provide', 'aston', 'martin', 'lagonda', 'limited', 'make', 'payments', 'pursuant', 'thereto', 'timely', 'basis', 'order', 'ensure', 'issuer', 'satisfy', 'payment', 'obligations', 'notes', 'indenture', 'taking', 'account', 'administrative', 'timing', 'requirements', 'indenture', 'respect', 'amounts', 'payable', 'notes', 'notes', 'proceeds', 'loan', 'comprise', 'part', 'collateral', '157', 'optional', 'redemption', 'optional', 'redemption', 'dollar', 'notes', 'except', 'set', 'forth', 'herein', 'redemption', 'taxation', 'reasons', 'dollar', 'notes', 'not', 'redeemable', 'option', 'issuer', 'time', 'prior', '2019', 'issuer', 'may', 'redeem', 'option', 'dollar', 'notes', 'whole', 'part', 'upon', 'not', 'less', '10', 'nor', '60', 'days', 'prior', 'notice', 'holders', 'dollar', 'notes', 'redemption', 'price', 'equal', '100', 'principal', 'amount', 'dollar', 'notes', 'plus', 'dollar', 'applicable', 'premium', 'accrued', 'unpaid', 'interest', 'additional', 'amounts', 'not', 'including', 'redemption', 'date', 'time', 'time', 'time', '2019', 'issuer', 'may', 'redeem', 'dollar', 'notes', 'whole', 'part', 'redemption', 'price', 'equal', 'percentage', 'principal', 'amount', 'set', 'forth', 'plus', 'accrued', 'unpaid', 'interest', 'additional', 'amounts', 'not', 'including', 'redemption', 'date', 'twelve', 'month', 'period', 'commencing', 'percentage', '2019', '2020', '2021', 'thereafter', '100', '000', 'time', 'time', 'time', 'prior', '2019', 'issuer', 'may', 'option', 'upon', 'notice', 'holders', 'dollar', 'notes', 'described', 'heading', 'selection', 'notice', 'redeem', '40', 'aggregate', 'principal', 'amount', 'dollar', 'notes', 'including', 'additional', 'dollar', 'notes', 'redemption', 'price', 'calculated', 'company', 'equal', 'aggregate', 'principal', 'amount', 'thereof', 'amount', 'equal', 'less', 'net', 'cash', 'proceeds', 'one', 'equity', 'offerings', 'extent', 'net', 'cash', 'proceeds', 'received', 'contributed', 'company', 'plus', 'ii', 'accrued', 'unpaid', 'interest', 'thereon', 'excluding', 'applicable', 'redemption', 'date', 'provided', '1', 'case', 'redemption', 'takes', 'place', 'not', 'later', '180', 'days', 'closing', 'related', 'equity', 'offering', '2', 'not', 'less', '50', 'principal', 'amount', 'dollar', 'notes', 'originally', 'issued', 'issue', 'date', 'excluding', 'principal', 'amount', 'additional', 'dollar', 'notes', 'remain', 'outstanding', 'immediately', 'thereafter', 'time', 'prior', 'upon', 'not', 'less', '10', 'nor', '60', 'days', 'notice', 'holders', 'dollar', 'notes', 'issuer', 'may', 'redeem', 'twelve', 'month', 'period', 'commencing', 'issue', 'date', '10', 'original', 'aggregate', 'principal', 'amount', 'dollar', 'notes', 'calculated', 'giving', 'effect', 'issuance', 'additional', 'notes', 'redemption', 'price', 'equal', '103', '0', 'principal', 'amount', 'redeemed', 'plus', 'accrued', 'unpaid', 'interest', 'additional', 'amounts', 'redemption', 'date', 'notice', 'redemption', 'upon', 'equity', 'offering', 'may', 'given', 'prior', 'completion', 'thereof', 'optional', 'redemption', 'sterling', 'notes', 'except', 'set', 'forth', 'herein', 'redemption', 'taxation', 'reasons', 'sterling', 'notes', 'not', 'redeemable', 'option', 'issuer', 'time', 'prior', '2019', 'issuer', 'may', 'redeem', 'option', 'sterling', 'notes', 'whole', 'part', 'upon', 'not', 'less', '10', 'nor', '60', 'days', 'prior', 'notice', 'holders', 'sterling', 'notes', 'redemption', 'price', 'equal', '100', 'principal', 'amount', 'sterling', 'notes', 'plus', 'sterling', 'applicable', 'premium', 'accrued', 'unpaid', 'interest', 'additional', 'amounts', 'not', 'including', 'redemption', 'date', '158', 'time', 'time', 'time', '2019', 'issuer', 'may', 'redeem', 'sterling', 'notes', 'whole', 'part', 'redemption', 'price', 'equal', 'percentage', 'principal', 'amount', 'set', 'forth', 'plus', 'accrued', 'unpaid', 'interest', 'additional', 'amounts', 'not', 'including', 'redemption', 'date', 'twelve', 'month', 'period', 'commencing', 'percentage', '2019', '2020', '2021', 'thereafter', '100', '000', 'time', 'time', 'time', 'prior', '2019', 'issuer', 'may', 'option', 'upon', 'notice', 'holders', 'sterling', 'notes', 'described', 'heading', 'selection', 'notice', 'redeem', '40', 'aggregate', 'principal', 'amount', 'sterling', 'notes', 'including', 'additional', 'sterling', 'notes', 'redemption', 'price', 'calculated', 'company', 'equal', 'aggregate', 'principal', 'amount', 'thereof', 'amount', 'equal', 'less', 'net', 'cash', 'proceeds', 'one', 'equity', 'offerings', 'extent', 'net', 'cash', 'proceeds', 'received', 'contributed', 'company', 'plus', 'ii', 'accrued', 'unpaid', 'interest', 'thereon', 'excluding', 'applicable', 'redemption', 'date', 'provided', '1', 'case', 'redemption', 'takes', 'place', 'not', 'later', '180', 'days', 'closing', 'related', 'equity', 'offering', '2', 'not', 'less', '50', 'principal', 'amount', 'sterling', 'notes', 'originally', 'issued', 'issue', 'date', 'excluding', 'principal', 'amount', 'additional', 'sterling', 'notes', 'remain', 'outstanding', 'immediately', 'thereafter', 'time', 'prior', 'upon', 'not', 'less', '10', 'nor', '60', 'days', 'notice', 'holders', 'sterling', 'notes', 'issuer', 'may', 'redeem', 'twelve', 'month', 'period', 'commencing', 'issue', 'date', '10', 'original', 'aggregate', 'principal', 'amount', 'sterling', 'notes', 'calculated', 'giving', 'effect', 'issuance', 'additional', 'notes', 'redemption', 'price', 'equal', '103', '0', 'principal', 'amount', 'redeemed', 'plus', 'accrued', 'unpaid', 'interest', 'additional', 'amounts', 'redemption', 'date', 'notice', 'redemption', 'upon', 'equity', 'offering', 'may', 'given', 'prior', 'completion', 'thereof', 'general', 'notwithstanding', 'foregoing', 'connection', 'tender', 'offer', 'notes', 'holders', 'not', 'less', '90', 'aggregate', 'principal', 'amount', 'applicable', 'series', 'outstanding', 'notes', 'validly', 'tender', 'not', 'withdraw', 'notes', 'tender', 'offer', 'issuer', 'third', 'party', 'making', 'tender', 'offer', 'lieu', 'issuer', 'purchases', 'applicable', 'series', 'notes', 'validly', 'tendered', 'not', 'withdrawn', 'holders', 'issuer', 'third', 'party', 'right', 'upon', 'not', 'less', '10', 'nor', '60', 'days', 'prior', 'notice', 'holders', 'notes', 'given', 'not', '30', 'days', 'following', 'purchase', 'date', 'redeem', 'notes', 'applicable', 'series', 'remain', 'outstanding', 'following', 'purchase', 'price', 'equal', 'price', 'paid', 'holder', 'tender', 'offer', 'incentive', 'payment', 'early', 'tenders', 'plus', 'extent', 'not', 'included', 'tender', 'offer', 'payment', 'accrued', 'unpaid', 'interest', 'additional', 'amounts', 'thereon', 'not', 'including', 'redemption', 'date', 'determining', 'whether', 'holders', 'least', '90', 'aggregate', 'principal', 'amount', 'applicable', 'series', 'outstanding', 'notes', 'validly', 'tendered', 'not', 'withdrawn', 'notes', 'tender', 'offer', 'offer', 'purchase', 'notes', 'applicable', 'series', 'applicable', 'notes', 'owned', 'affiliate', 'issuer', 'funds', 'controlled', 'managed', 'affiliate', 'issuer', 'successor', 'thereof', 'shall', 'deemed', 'outstanding', 'purposes', 'tender', 'offer', 'offer', 'applicable', 'redemption', 'notice', 'redemption', 'may', 'issuer', 'discretion', 'subject', 'satisfaction', 'one', 'conditions', 'precedent', 'including', 'case', 'redemption', 'related', 'equity', 'offering', 'consummation', 'equity', 'offering', 'addition', 'redemption', 'notice', 'subject', 'satisfaction', 'one', 'conditions', 'precedent', 'notice', 'may', 'state', 'issuer', 'discretion', 'redemption', 'date', 'may', 'delayed', 'time', 'conditions', 'shall', 'satisfied', 'redemption', 'may', 'not', 'occur', 'notice', 'may', 'rescinded', 'event', 'conditions', 'shall', 'not', 'satisfied', '159', 'redemption', 'date', 'redemption', 'date', 'delayed', 'provided', 'no', 'case', 'shall', 'notice', 'delivered', 'less', '10', 'days', '60', 'days', 'prior', 'date', 'redemption', 'occurs', 'issuer', 'effects', 'optional', 'redemption', 'notes', 'long', 'notes', 'listed', 'official', 'list', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'rules', 'channel', 'islands', 'securities', 'exchange', 'require', 'inform', 'channel', 'islands', 'securities', 'exchange', 'optional', 'redemption', 'confirm', 'aggregate', 'principal', 'amount', 'notes', 'remain', 'outstanding', 'immediately', 'redemption', 'optional', 'redemption', 'date', 'interest', 'record', 'date', 'related', 'interest', 'payment', 'date', 'accrued', 'unpaid', 'interest', 'paid', 'person', 'whose', 'name', 'note', 'registered', 'close', 'business', 'record', 'date', 'no', 'additional', 'interest', 'payable', 'holders', 'whose', 'notes', 'subject', 'redemption', 'issuer', 'redemption', 'date', 'not', 'business', 'day', 'payment', 'may', 'made', 'next', 'succeeding', 'day', 'business', 'day', 'no', 'interest', 'shall', 'accrue', 'amount', 'would', 'otherwise', 'payable', 'redemption', 'date', 'business', 'day', 'intervening', 'period', 'may', 'repurchase', 'notes', 'time', 'time', 'time', 'open', 'market', 'otherwise', 'sinking', 'fund', 'issuer', 'not', 'required', 'make', 'mandatory', 'redemption', 'payments', 'sinking', 'fund', 'payments', 'respect', 'notes', 'selection', 'notice', 'less', 'dollar', 'notes', 'sterling', 'notes', 'redeemed', 'time', 'relevant', 'paying', 'agent', 'registrar', 'applicable', 'select', 'relevant', 'notes', 'redemption', 'compliance', 'requirements', 'principal', 'securities', 'exchange', 'notes', 'listed', 'certified', 'relevant', 'paying', 'agent', 'registrar', 'applicable', 'issuer', 'compliance', 'requirements', 'dtc', 'case', 'dollar', 'notes', 'euroclear', 'clearstream', 'case', 'sterling', 'notes', 'applicable', 'notes', 'not', 'listed', 'exchange', 'prescribes', 'no', 'method', 'selection', 'notes', 'not', 'held', 'dtc', 'case', 'dollar', 'notes', 'euroclear', 'clearstream', 'case', 'sterling', 'notes', 'dtc', 'euroclear', 'clearstream', 'applicable', 'prescribe', 'no', 'method', 'selection', 'pro', 'rata', 'basis', 'use', 'pool', 'factor', 'provided', 'however', 'no', 'dollar', 'note', '200', '000', 'principal', 'amount', 'less', 'shall', 'redeemed', 'part', 'dollar', 'notes', 'integral', 'multiples', '1', '000', 'redeemed', 'ii', 'no', 'sterling', 'note', '100', '000', 'principal', 'amount', 'less', 'shall', 'redeemed', 'part', 'sterling', 'notes', 'integral', 'multiples', '1', '000', 'redeemed', 'neither', 'trustee', 'relevant', 'paying', 'agent', 'nor', 'registrar', 'liable', 'selections', 'made', 'accordance', 'paragraph', 'long', 'notes', 'listed', 'official', 'list', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'rules', 'channel', 'islands', 'securities', 'exchange', 'require', 'notice', 'holders', 'notes', 'shall', 'extent', 'manner', 'permitted', 'rules', 'posted', 'official', 'website', 'channel', 'islands', 'securities', 'exchange', 'www', 'thecise', 'com', 'addition', 'release', 'not', 'less', '10', 'days', 'nor', '60', 'days', 'prior', 'redemption', 'date', 'issuer', 'mail', 'expense', 'issuer', 'cause', 'mailed', 'notice', 'holders', 'first', 'class', 'mail', 'postage', 'prepaid', 'respective', 'addresses', 'appear', 'registration', 'books', 'registrar', 'provided', 'long', 'notes', 'represented', 'global', 'notes', 'notices', 'redemption', 'holders', 'delivered', 'dtc', 'case', 'dollar', 'notes', 'euroclear', 'clearstream', 'case', 'sterling', 'notes', 'delivery', 'deemed', 'satisfy', 'requirements', 'paragraph', 'shall', 'give', 'notices', 'holders', 'book', 'entry', 'interests', 'note', 'redeemed', 'part', 'notice', 'redemption', 'relates', 'note', 'shall', 'state', 'portion', 'principal', 'amount', 'thereof', 'redeemed', 'case', 'portion', 'original', 'note', 'issued', 'name', 'holder', 'thereof', 'upon', 'cancellation', 'original', 'note', 'case', 'global', 'note', 'appropriate', 'notation', 'made', 'note', 'decrease', 'principal', 'amount', 'thereof', 'amount', 'equal', 'unredeemed', 'portion', 'thereof', '160', 'subject', 'terms', 'applicable', 'redemption', 'notice', 'including', 'conditions', 'contained', 'therein', 'notes', 'called', 'redemption', 'become', 'due', 'date', 'fixed', 'redemption', 'redemption', 'date', 'interest', 'ceases', 'accrue', 'notes', 'portions', 'called', 'redemption', 'redemption', 'taxation', 'reasons', 'issuer', 'successor', 'issuer', 'defined', 'may', 'redeem', 'notes', 'whole', 'not', 'part', 'time', 'upon', 'giving', 'not', 'less', '10', 'nor', '60', 'days', 'notice', 'holders', 'notes', 'notice', 'irrevocable', 'redemption', 'price', 'equal', '100', 'outstanding', 'principal', 'amount', 'thereof', 'together', 'accrued', 'unpaid', 'interest', 'excluding', 'date', 'fixed', 'redemption', 'tax', 'redemption', 'date', 'subject', 'right', 'holders', 'record', 'relevant', 'record', 'date', 'receive', 'interest', 'due', 'relevant', 'interest', 'payment', 'date', 'additional', 'amounts', 'see', 'withholding', 'taxes', 'due', 'become', 'due', 'tax', 'redemption', 'date', 'result', 'redemption', 'otherwise', 'issuer', 'successor', 'issuer', 'guarantor', 'determine', 'good', 'faith', 'result', '1', 'change', 'amendment', 'law', 'treaties', 'regulations', 'rulings', 'promulgated', 'thereunder', 'relevant', 'taxing', 'jurisdiction', 'defined', 'affecting', 'taxation', '2', 'change', 'amendment', 'introduction', 'official', 'position', 'regarding', 'application', 'administration', 'interpretation', 'laws', 'treaties', 'regulations', 'rulings', 'including', 'holding', 'judgment', 'order', 'court', 'competent', 'jurisdiction', 'change', 'published', 'practice', 'relevant', 'taxing', 'jurisdiction', 'foregoing', 'clauses', '1', '2', 'change', 'tax', 'law', 'issuer', 'successor', 'issuer', 'guarantor', 'case', 'guarantor', 'payment', 'giving', 'rise', 'agreement', 'can', 'not', 'made', 'issuer', 'another', 'guarantor', 'without', 'obligation', 'pay', 'additional', 'amounts', 'next', 'interest', 'payment', 'date', 'respect', 'notes', 'would', 'required', 'pay', 'additional', 'amounts', 'issuer', 'determines', 'good', 'faith', 'obligation', 'can', 'not', 'avoided', 'taking', 'reasonable', 'measures', 'available', 'issuer', 'successor', 'issuer', 'guarantor', 'including', 'avoidance', 'doubt', 'appointment', 'new', 'paying', 'agent', 'would', 'reasonable', 'not', 'including', 'assignment', 'novation', 'obligation', 'make', 'payment', 'respect', 'notes', 'case', 'redemption', 'result', 'change', 'tax', 'law', 'jurisdiction', 'relevant', 'taxing', 'jurisdiction', 'date', 'offering', 'memorandum', 'change', 'tax', 'law', 'must', 'become', 'effective', 'date', 'offering', 'memorandum', 'case', 'redemption', 'result', 'change', 'tax', 'law', 'jurisdiction', 'becomes', 'relevant', 'taxing', 'jurisdiction', 'date', 'offering', 'memorandum', 'change', 'tax', 'law', 'must', 'become', 'effective', 'date', 'jurisdiction', 'becomes', 'relevant', 'taxing', 'jurisdiction', 'notice', 'redemption', 'taxation', 'reasons', 'published', 'accordance', 'procedures', 'described', 'selection', 'notice', 'notwithstanding', 'foregoing', 'no', 'notice', 'redemption', 'given', 'earlier', '90', 'days', 'prior', 'earliest', 'date', 'payor', 'defined', 'would', 'obliged', 'make', 'payment', 'additional', 'amounts', 'payment', 'respect', 'notes', 'due', 'b', 'unless', 'time', 'notice', 'given', 'obligation', 'pay', 'additional', 'amounts', 'remains', 'effect', 'prior', 'publication', 'mailing', 'notice', 'redemption', 'notes', 'pursuant', 'foregoing', 'issuer', 'successor', 'issuer', 'deliver', 'trustee', 'officer', 'certificate', 'stating', 'entitled', 'effect', 'redemption', 'setting', 'forth', 'statement', 'facts', 'showing', 'conditions', 'precedent', 'right', 'redeem', 'satisfied', 'would', 'not', 'able', 'avoid', 'obligation', 'pay', 'additional', 'amounts', 'taking', 'reasonable', 'measures', 'available', 'b', 'opinion', 'independent', 'tax', 'counsel', 'recognized', 'standing', 'reasonably', 'acceptable', 'trustee', 'effect', 'issuer', 'successor', 'issuer', 'guarantor', 'become', 'obligated', 'pay', 'additional', 'amounts', 'result', 'change', 'tax', 'law', 'trustee', 'accept', 'officer', 'certificate', 'opinion', 'sufficient', 'evidence', 'satisfaction', 'conditions', 'precedent', 'described', 'without', 'inquiry', 'event', 'conclusive', 'binding', 'holders', 'foregoing', 'apply', 'mutatis', 'mutandis', 'jurisdiction', 'successor', 'issuer', 'incorporated', 'resident', 'tax', 'purposes', 'organized', 'permanent', 'establishment', 'political', 'subdivision', 'taxing', 'authority', 'agency', 'thereof', 'therein', '161', 'withholding', 'taxes', 'payments', 'made', 'behalf', 'issuer', 'successor', 'issuer', 'guarantor', 'payor', 'respect', 'notes', 'guarantees', 'defined', 'made', 'free', 'clear', 'without', 'withholding', 'deduction', 'account', 'taxes', 'unless', 'withholding', 'deduction', 'taxes', 'required', 'law', 'deduction', 'withholding', 'account', 'taxes', 'imposed', 'levied', 'behalf', '1', 'england', 'wales', 'political', 'subdivision', 'governmental', 'authority', 'thereof', 'therein', 'power', 'tax', '2', 'jurisdiction', 'payment', 'note', 'guarantee', 'made', 'issuer', 'successor', 'issuer', 'guarantor', 'agents', 'political', 'subdivision', 'governmental', 'authority', 'thereof', 'therein', 'power', 'tax', '3', 'jurisdiction', 'payor', 'incorporated', 'organized', 'resident', 'tax', 'purposes', 'political', 'subdivision', 'governmental', 'authority', 'thereof', 'therein', 'power', 'tax', 'clauses', '1', '2', '3', 'relevant', 'taxing', 'jurisdiction', 'time', 'required', 'payments', 'made', 'behalf', 'payor', 'respect', 'note', 'guarantee', 'including', 'payments', 'principal', 'redemption', 'price', 'premium', 'interest', 'payor', 'pay', 'together', 'payments', 'additional', 'amounts', 'additional', 'amounts', 'may', 'necessary', 'order', 'net', 'amounts', 'received', 'respect', 'payments', 'withholding', 'deduction', 'including', 'deduction', 'withholding', 'additional', 'amounts', 'equal', 'amounts', 'would', 'received', 'respect', 'payments', 'respect', 'note', 'guarantee', 'absence', 'withholding', 'deduction', 'provided', 'however', 'no', 'additional', 'amounts', 'payable', 'account', '1', 'taxes', 'would', 'not', 'imposed', 'existence', 'present', 'former', 'connection', 'relevant', 'holder', 'beneficial', 'owner', 'note', 'fiduciary', 'settlor', 'beneficiary', 'member', 'shareholder', 'possessor', 'power', 'relevant', 'holder', 'beneficial', 'owner', 'relevant', 'holder', 'beneficial', 'owner', 'estate', 'nominee', 'trust', 'partnership', 'limited', 'liability', 'company', 'corporation', 'relevant', 'taxing', 'jurisdiction', 'including', 'not', 'limited', 'citizen', 'resident', 'national', 'domiciliary', 'carrying', 'business', 'maintaining', 'permanent', 'establishment', 'dependent', 'agent', 'physically', 'present', 'place', 'management', 'present', 'deemed', 'present', 'relevant', 'taxing', 'jurisdiction', 'excluding', 'case', 'connection', 'arising', 'solely', 'acquisition', 'ownership', 'holding', 'note', 'receipt', 'payment', 'respect', 'thereof', '2', 'taxes', 'imposed', 'deducted', 'withheld', 'reason', 'failure', 'holder', 'beneficial', 'owner', 'note', 'comply', 'reasonable', 'request', 'payor', 'made', 'writing', 'least', '60', 'days', 'withholding', 'deduction', 'would', 'payable', 'provide', 'certification', 'information', 'documents', 'evidence', 'concerning', 'nationality', 'residence', 'identity', 'connection', 'relevant', 'taxing', 'jurisdiction', 'holder', 'beneficial', 'owner', 'make', 'declaration', 'similar', 'claim', 'satisfy', 'certification', 'information', 'documentation', 'reporting', 'requirement', 'relating', 'matters', 'case', 'required', 'applicable', 'law', 'treaty', 'regulation', 'administrative', 'practice', 'relevant', 'taxing', 'jurisdiction', 'precondition', 'exemption', 'part', 'taxes', 'holder', 'beneficial', 'owner', 'legally', 'entitled', 'provide', '3', 'taxes', 'payable', 'otherwise', 'deduction', 'withholding', 'payment', 'respect', 'notes', 'guarantee', '4', 'estate', 'inheritance', 'gift', 'value', 'use', 'sales', 'excise', 'transfer', 'personal', 'property', 'similar', 'taxes', '5', 'taxes', 'imposed', 'connection', 'note', 'presented', 'payment', 'presentation', 'permitted', 'required', 'payment', 'behalf', 'holder', 'beneficial', 'owner', 'would', 'able', 'avoid', 'tax', 'presenting', 'relevant', 'note', 'otherwise', 'accepting', 'payment', 'another', 'paying', 'agent', '162', '6', 'taxes', 'would', 'not', 'imposed', 'holder', 'presented', 'note', 'payment', 'presentation', 'permitted', 'required', 'payment', 'within', '30', 'days', 'relevant', 'payment', 'first', 'made', 'available', 'payment', 'holder', 'except', 'additional', 'amounts', 'respect', 'taxes', 'would', 'imposed', 'holder', 'presented', 'note', 'payment', 'within', '30', 'day', 'period', '7', 'taxes', 'imposed', 'respect', 'payment', 'holder', 'fiduciary', 'partnership', 'including', 'entity', 'treated', 'partnership', 'applicable', 'tax', 'purposes', 'person', 'sole', 'beneficial', 'owner', 'payment', 'note', 'extent', 'beneficiary', 'settlor', 'respect', 'fiduciary', 'member', 'partnership', 'entity', 'treated', 'partnership', 'applicable', 'tax', 'purposes', 'beneficial', 'owner', 'payment', 'note', 'would', 'not', 'entitled', 'additional', 'amounts', 'beneficiary', 'settlor', 'member', 'beneficial', 'owner', 'actual', 'holder', 'note', '8', 'taxes', 'imposed', 'respect', 'note', 'pursuant', 'sections', '1471', '1474', 'code', 'successor', 'law', 'regulation', 'implementing', 'complying', 'introduced', 'order', 'conform', 'sections', 'substantively', 'comparable', 'not', 'materially', 'onerous', 'comply', 'intergovernmental', 'agreement', 'agreement', 'entered', 'pursuant', 'section', '1471', 'b', '1', 'code', 'law', 'regulation', 'rule', 'official', 'guidance', 'practice', 'implementing', 'intergovernmental', 'agreement', '9', 'combination', 'items', '1', '8', 'payor', 'make', 'required', 'withholding', 'deduction', 'ii', 'remit', 'full', 'amount', 'deducted', 'withheld', 'relevant', 'taxing', 'jurisdiction', 'extent', 'required', 'applicable', 'law', 'payor', 'use', 'reasonable', 'efforts', 'obtain', 'certified', 'copies', 'tax', 'receipts', 'evidencing', 'payment', 'taxes', 'deducted', 'withheld', 'relevant', 'taxing', 'jurisdiction', 'imposing', 'taxes', 'form', 'provided', 'ordinary', 'course', 'relevant', 'taxing', 'jurisdiction', 'reasonably', 'available', 'payor', 'certified', 'copies', 'not', 'available', 'evidence', 'payment', 'reasonably', 'acceptable', 'trustee', 'provide', 'certified', 'copies', 'evidence', 'trustee', 'copies', 'shall', 'made', 'available', 'holders', 'upon', 'request', 'made', 'available', 'offices', 'registrar', 'notes', 'listed', 'official', 'list', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'rules', 'channel', 'islands', 'securities', 'exchange', 'require', 'payor', 'becomes', 'aware', 'obligated', 'pay', 'additional', 'amounts', 'respect', 'payment', 'made', 'respect', 'note', 'guarantee', 'least', '30', 'days', 'prior', 'date', 'payment', 'payor', 'deliver', 'trustee', 'officer', 'certificate', 'stating', 'fact', 'additional', 'amounts', 'payable', 'amount', 'payable', 'information', 'necessary', 'enable', 'relevant', 'paying', 'agent', 'pay', 'additional', 'amounts', 'holders', 'relevant', 'payment', 'date', 'unless', 'obligation', 'pay', 'additional', 'amounts', 'arises', 'less', 'payor', 'becomes', 'aware', 'obligation', '45', 'days', 'prior', 'relevant', 'payment', 'date', 'case', 'payor', 'may', 'deliver', 'officer', 'certificate', 'promptly', 'practicable', 'date', '30', 'days', 'prior', 'payment', 'date', 'trustee', 'entitled', 'rely', 'solely', 'officer', 'certificate', 'conclusive', 'proof', 'payments', 'necessary', 'wherever', 'either', 'indenture', 'guarantees', 'description', 'notes', 'mentioned', 'context', '1', 'payment', 'principal', '2', 'purchase', 'prices', 'connection', 'purchase', 'notes', '3', 'interest', '4', 'amount', 'payable', 'respect', 'notes', 'reference', 'shall', 'deemed', 'include', 'payment', 'additional', 'amounts', 'described', 'heading', 'extent', 'context', 'additional', 'amounts', 'would', 'payable', 'respect', 'thereof', 'payor', 'pay', 'present', 'future', 'stamp', 'registration', 'transfer', 'court', 'documentary', 'taxes', 'excise', 'property', 'similar', 'taxes', 'charges', 'levies', 'including', 'penalties', '163', 'interest', 'additional', 'amounts', 'respect', 'thereto', 'arise', 'jurisdiction', 'execution', 'delivery', 'registration', 'enforcement', 'notes', 'guarantee', 'indenture', 'intercreditor', 'agreement', 'security', 'documents', 'document', 'instrument', 'relation', 'thereto', 'transfer', 'exchange', 'notes', 'excluding', 'case', 'enforcement', 'following', 'event', 'default', 'taxes', 'charges', 'levies', 'imposed', 'jurisdiction', 'not', 'relevant', 'taxing', 'jurisdiction', 'payor', 'agrees', 'indemnify', 'holders', 'taxes', 'paid', 'holders', 'foregoing', 'obligations', 'withholding', 'taxes', 'survive', 'termination', 'defeasance', 'discharge', 'indenture', 'apply', 'mutatis', 'mutandis', 'jurisdiction', 'successor', 'payor', 'incorporated', 'organized', 'resident', 'tax', 'purposes', 'jurisdiction', 'payment', 'respect', 'notes', 'guarantee', 'made', 'behalf', 'payor', 'case', 'political', 'subdivision', 'taxing', 'authority', 'agency', 'thereof', 'therein', 'change', 'control', 'change', 'control', 'occurs', 'subject', 'terms', 'hereof', 'holder', 'right', 'require', 'issuer', 'repurchase', 'part', 'equal', '200', '000', 'principal', 'amount', 'integral', 'multiples', '1', '000', 'excess', 'thereof', 'case', 'dollar', 'notes', '100', '000', 'principal', 'amount', 'integral', 'multiples', '1', '000', 'excess', 'thereof', 'case', 'sterling', 'notes', 'case', 'may', 'holder', 'notes', 'purchase', 'price', 'cash', 'equal', '101', 'principal', 'amount', 'notes', 'plus', 'accrued', 'unpaid', 'interest', 'date', 'purchase', 'subject', 'right', 'holders', 'record', 'relevant', 'record', 'date', 'receive', 'interest', 'due', 'relevant', 'interest', 'payment', 'date', 'provided', 'however', 'issuer', 'shall', 'not', 'obliged', 'repurchase', 'notes', 'described', 'change', 'control', 'section', 'event', 'extent', 'unconditionally', 'exercised', 'right', 'redeem', 'notes', 'described', 'optional', 'redemption', 'conditions', 'redemption', 'satisfied', 'waived', 'unless', 'issuer', 'unconditionally', 'exercised', 'right', 'redeem', 'notes', 'described', 'optional', 'redemption', 'conditions', 'redemption', 'satisfied', 'waived', 'no', 'later', 'date', '60', 'days', 'change', 'control', 'issuer', 'mail', 'notice', 'change', 'control', 'offer', 'holder', 'notes', 'copy', 'trustee', '1', 'stating', 'change', 'control', 'occurred', 'may', 'occur', 'holder', 'right', 'require', 'issuer', 'purchase', 'part', 'equal', '200', '000', 'principal', 'amount', 'integral', 'multiples', '1', '000', 'excess', 'thereof', 'case', 'dollar', 'notes', '100', '000', 'principal', 'amount', 'integral', 'multiples', '1', '000', 'excess', 'thereof', 'case', 'sterling', 'notes', 'case', 'may', 'holder', 'notes', 'purchase', 'price', 'cash', 'equal', '101', 'principal', 'amount', 'notes', 'plus', 'accrued', 'unpaid', 'interest', 'not', 'including', 'date', 'purchase', 'subject', 'right', 'holders', 'record', 'record', 'date', 'receive', 'interest', 'relevant', 'interest', 'payment', 'date', 'change', 'control', 'payment', '2', 'stating', 'repurchase', 'date', 'shall', 'no', 'earlier', '30', 'days', 'nor', 'later', '60', 'days', 'date', 'notice', 'mailed', 'change', 'control', 'payment', 'date', '3', 'describing', 'circumstances', 'relevant', 'facts', 'regarding', 'transaction', 'transactions', 'constitute', 'change', 'control', '4', 'describing', 'procedures', 'determined', 'issuer', 'consistent', 'indenture', 'holder', 'must', 'follow', 'order', 'notes', 'repurchased', '5', 'notice', 'mailed', 'prior', 'occurrence', 'change', 'control', 'stating', 'change', 'control', 'offer', 'conditional', 'occurrence', 'change', 'control', 'change', 'control', 'payment', 'date', 'change', 'control', 'shall', 'occurred', 'issuer', 'extent', 'lawful', '1', 'accept', 'payment', 'notes', 'properly', 'tendered', 'pursuant', 'change', 'control', 'offer', '2', 'deposit', 'relevant', 'paying', 'agent', 'amount', 'equal', 'change', 'control', 'payment', 'respect', 'notes', 'tendered', '164', '3', 'deliver', 'cause', 'delivered', 'trustee', 'officer', 'certificate', 'stating', 'aggregate', 'principal', 'amount', 'notes', 'portions', 'thereof', 'purchased', 'issuer', 'change', 'control', 'offer', '4', 'case', 'global', 'notes', 'deliver', 'cause', 'delivered', 'relevant', 'paying', 'agent', 'global', 'notes', 'order', 'reflect', 'thereon', 'portion', 'notes', 'portions', 'thereof', 'tendered', 'purchased', 'issuer', '5', 'case', 'definitive', 'registered', 'notes', 'deliver', 'cause', 'delivered', 'relevant', 'registrar', 'cancellation', 'definitive', 'registered', 'notes', 'accepted', 'purchase', 'issuer', 'definitive', 'registered', 'notes', 'issued', 'relevant', 'paying', 'agent', 'promptly', 'mail', 'holder', 'definitive', 'registered', 'notes', 'tendered', 'change', 'control', 'payment', 'notes', 'trustee', 'promptly', 'authenticate', 'cause', 'authenticated', 'mail', 'cause', 'transferred', 'book', 'entry', 'holder', 'definitive', 'registered', 'notes', 'new', 'note', 'equal', 'aggregate', 'principal', 'amount', 'unpurchased', 'portion', 'notes', 'surrendered', 'provided', 'new', 'note', 'principal', 'amount', 'least', '200', '000', 'integral', 'multiple', '1', '000', 'excess', 'thereof', 'case', 'dollar', 'notes', '100', '000', 'integral', 'multiples', '1', '000', 'excess', 'thereof', 'case', 'sterling', 'notes', 'long', 'notes', 'listed', 'official', 'list', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'rules', 'channel', 'islands', 'securities', 'exchange', 'require', 'issuer', 'publish', 'notices', 'relating', 'change', 'control', 'offer', 'soon', 'reasonably', 'practicable', 'change', 'control', 'payment', 'date', 'official', 'website', 'channel', 'islands', 'securities', 'exchange', 'www', 'thecise', 'com', 'change', 'control', 'provisions', 'described', 'applicable', 'whether', 'not', 'provisions', 'indenture', 'applicable', 'except', 'described', 'respect', 'change', 'control', 'indenture', 'not', 'contain', 'provisions', 'permit', 'holders', 'require', 'issuer', 'repurchase', 'redeem', 'notes', 'event', 'takeover', 'recapitalization', 'similar', 'transaction', 'existence', 'holder', 'right', 'require', 'issuer', 'repurchase', 'holder', 'notes', 'upon', 'occurrence', 'change', 'control', 'may', 'deter', 'third', 'party', 'seeking', 'acquire', 'company', 'subsidiaries', 'transaction', 'would', 'constitute', 'change', 'control', 'issuer', 'not', 'required', 'make', 'change', 'control', 'offer', 'upon', 'change', 'control', 'third', 'party', 'makes', 'change', 'control', 'offer', 'manner', 'times', 'otherwise', 'compliance', 'requirements', 'set', 'forth', 'indenture', 'applicable', 'change', 'control', 'offer', 'made', 'issuer', 'purchases', 'notes', 'validly', 'tendered', 'not', 'withdrawn', 'change', 'control', 'offer', 'holders', 'not', 'less', '90', 'aggregate', 'principal', 'amount', 'applicable', 'series', 'outstanding', 'notes', 'validly', 'tender', 'not', 'withdraw', 'notes', 'change', 'control', 'offer', 'issuer', 'third', 'party', 'making', 'change', 'control', 'offer', 'lieu', 'issuer', 'described', 'purchases', 'applicable', 'series', 'notes', 'validly', 'tendered', 'not', 'withdrawn', 'holders', 'issuer', 'third', 'party', 'right', 'upon', 'not', 'less', '10', 'nor', '60', 'days', 'prior', 'notice', 'holders', 'notes', 'given', 'not', '30', 'days', 'following', 'purchase', 'pursuant', 'change', 'control', 'offer', 'described', 'redeem', 'notes', 'applicable', 'series', 'remain', 'outstanding', 'following', 'purchase', 'price', 'cash', 'equal', '101', 'aggregate', 'principal', 'amount', 'notes', 'plus', 'accrued', 'unpaid', 'interest', 'notes', 'remain', 'outstanding', 'not', 'including', 'date', 'redemption', 'subject', 'right', 'holders', 'record', 'relevant', 'record', 'date', 'receive', 'interest', 'due', 'interest', 'payment', 'date', 'prior', 'redemption', 'date', 'determining', 'whether', 'holders', 'least', '90', 'aggregate', 'principal', 'amount', 'applicable', 'series', 'outstanding', 'notes', 'validly', 'tendered', 'not', 'withdrawn', 'notes', 'tender', 'offer', 'offer', 'purchase', 'notes', 'applicable', 'series', 'applicable', 'notes', 'owned', 'affiliate', 'issuer', 'funds', 'controlled', 'managed', 'affiliate', 'issuer', 'successor', 'thereof', 'shall', 'deemed', 'outstanding', 'purposes', 'tender', 'offer', 'offer', 'applicable', 'issuer', 'comply', 'extent', 'applicable', 'requirements', 'section', '14', 'e', 'exchange', 'act', 'securities', 'laws', 'regulations', 'rules', 'exchange', 'notes', 'listed', 'connection', 'repurchase', 'notes', 'pursuant', 'covenant', '165', 'extent', 'provisions', 'securities', 'laws', 'regulations', 'exchange', 'rules', 'conflict', 'provisions', 'indenture', 'issuer', 'comply', 'applicable', 'securities', 'laws', 'regulations', 'exchange', 'rules', 'not', 'deemed', 'breached', 'obligations', 'require', 'repurchase', 'notes', 'change', 'control', 'provisions', 'indenture', 'virtue', 'conflict', 'new', 'revolving', 'credit', 'facility', 'agreement', 'occurrence', 'change', 'control', 'would', 'require', 'repayment', 'debt', 'future', 'debt', 'company', 'subsidiaries', 'may', 'prohibit', 'issuer', 'purchasing', 'notes', 'event', 'change', 'control', 'provide', 'change', 'control', 'default', 'requires', 'repurchase', 'upon', 'change', 'control', 'moreover', 'exercise', 'holders', 'right', 'require', 'issuer', 'purchase', 'notes', 'could', 'cause', 'default', 'require', 'repurchase', 'debt', 'even', 'change', 'control', 'not', 'due', 'financial', 'effect', 'purchase', 'issuer', 'finally', 'issuer', 'ability', 'pay', 'cash', 'holders', 'following', 'occurrence', 'change', 'control', 'may', 'limited', 'issuer', 'existing', 'financial', 'resources', 'no', 'assurance', 'sufficient', 'funds', 'available', 'necessary', 'make', 'required', 'purchase', 'notes', 'see', 'risk', 'factors', 'risks', 'related', 'indebtedness', 'notes', 'may', 'not', 'able', 'finance', 'change', 'control', 'offer', 'addition', 'note', 'case', 'law', 'suggests', 'event', 'incumbent', 'directors', 'replaced', 'result', 'contested', 'election', 'company', 'may', 'nevertheless', 'avoid', 'triggering', 'change', 'control', 'clause', 'similar', 'clause', '2', 'definition', 'change', 'control', 'outgoing', 'directors', 'approve', 'new', 'directors', 'purpose', 'change', 'control', 'clause', 'definition', 'change', 'control', 'includes', 'disposition', 'substantially', 'property', 'assets', 'company', 'restricted', 'subsidiaries', 'taken', 'whole', 'specified', 'persons', 'although', 'limited', 'case', 'law', 'interpreting', 'phrase', 'substantially', 'no', 'precise', 'established', 'definition', 'phrase', 'substantially', 'applicable', 'law', 'accordingly', 'certain', 'circumstances', 'may', 'degree', 'uncertainty', 'whether', 'particular', 'transaction', 'would', 'involve', 'disposition', 'substantially', 'property', 'assets', 'person', 'result', 'may', 'unclear', 'whether', 'change', 'control', 'occurred', 'whether', 'holder', 'may', 'require', 'issuer', 'make', 'offer', 'repurchase', 'notes', 'described', 'provisions', 'indenture', 'relating', 'issuer', 'obligation', 'make', 'offer', 'repurchase', 'notes', 'result', 'change', 'control', 'may', 'waived', 'modified', 'written', 'consent', 'holders', 'majority', 'outstanding', 'aggregate', 'principal', 'amount', 'notes', 'indenture', 'certain', 'covenants', 'limitation', 'indebtedness', 'company', 'not', 'not', 'permit', 'restricted', 'subsidiaries', 'incur', 'indebtedness', 'including', 'acquired', 'indebtedness', 'provided', 'however', 'company', 'restricted', 'subsidiaries', 'may', 'incur', 'indebtedness', 'date', 'incurrence', 'giving', 'pro', 'forma', 'effect', 'thereto', 'including', 'pro', 'forma', 'application', 'proceeds', 'thereof', 'fixed', 'charge', 'coverage', 'ratio', 'company', 'restricted', 'subsidiaries', 'recently', 'ended', 'four', 'full', 'fiscal', 'quarters', 'internal', 'financial', 'statements', 'available', 'immediately', 'preceding', 'date', 'additional', 'indebtedness', 'incurred', 'would', 'least', '2', '0', '1', '0', 'first', 'paragraph', 'covenant', 'not', 'prohibit', 'incurrence', 'following', 'indebtedness', '1', 'indebtedness', 'incurred', 'pursuant', 'credit', 'facility', 'refinancing', 'indebtedness', 'respect', 'thereof', 'maximum', 'aggregate', 'principal', 'amount', 'time', 'outstanding', 'not', 'exceed', 'greater', '100', 'million', 'plus', 'case', 'refinancing', 'indebtedness', 'permitted', 'clause', '1', 'portion', 'thereof', 'aggregate', 'amount', 'fees', 'underwriting', 'discounts', 'premiums', 'including', 'tender', 'premiums', 'costs', 'expenses', 'incurred', 'connection', 'refinancing', '166', '2', 'guarantees', 'company', 'restricted', 'subsidiary', 'indebtedness', 'company', 'restricted', 'subsidiary', 'extent', 'guaranteed', 'indebtedness', 'permitted', 'incurred', 'another', 'provision', 'covenant', 'b', '3', 'without', 'limiting', 'covenant', 'described', 'limitation', 'liens', 'indebtedness', 'arising', 'reason', 'lien', 'granted', 'applicable', 'person', 'securing', 'indebtedness', 'company', 'restricted', 'subsidiary', 'long', 'incurrence', 'indebtedness', 'permitted', 'terms', 'indenture', 'indebtedness', 'company', 'owing', 'held', 'restricted', 'subsidiary', 'indebtedness', 'restricted', 'subsidiary', 'owing', 'held', 'company', 'restricted', 'subsidiary', 'provided', 'however', 'issuer', 'guarantor', 'obligor', 'indebtedness', 'payee', 'not', 'issuer', 'guarantor', 'indebtedness', 'must', 'unsecured', 'except', 'respect', 'intercompany', 'current', 'liabilities', 'incurred', 'connection', 'cash', 'management', 'positions', 'company', 'restricted', 'subsidiaries', 'ii', 'extent', 'legally', 'permitted', 'company', 'restricted', 'subsidiaries', 'completed', 'procedures', 'required', 'reasonable', 'judgment', 'directors', 'officers', 'obligee', 'obligor', 'protect', 'persons', 'penalty', 'civil', 'criminal', 'liability', 'connection', 'subordination', 'indebtedness', 'expressly', 'subordinated', 'prior', 'payment', 'full', 'cash', 'obligations', 'due', 'respect', 'notes', 'case', 'issuer', 'guarantee', 'case', 'guarantor', 'case', 'ii', 'extent', 'required', 'intercreditor', 'agreement', 'b', 'subsequent', 'issuance', 'transfer', 'capital', 'stock', 'event', 'results', 'indebtedness', 'beneficially', 'held', 'person', 'company', 'restricted', 'subsidiary', 'ii', 'sale', 'transfer', 'indebtedness', 'person', 'company', 'restricted', 'subsidiary', 'shall', 'deemed', 'case', 'constitute', 'incurrence', 'indebtedness', 'company', 'restricted', 'subsidiary', 'case', 'may', '4', 'indebtedness', 'represented', 'notes', 'notes', 'proceeds', 'loan', 'additional', 'notes', 'additional', 'notes', 'proceeds', 'loan', 'b', 'indebtedness', 'indebtedness', 'described', 'clauses', '1', '3', 'paragraph', 'outstanding', 'issue', 'date', 'c', 'refinancing', 'indebtedness', 'incurred', 'respect', 'indebtedness', 'described', 'clause', '4', 'clause', '5', 'paragraph', 'incurred', 'pursuant', 'first', 'paragraph', 'covenant', 'management', 'advances', '5', 'indebtedness', 'person', 'incurred', 'outstanding', 'date', 'person', 'becomes', 'restricted', 'subsidiary', 'merged', 'consolidated', 'amalgamated', 'otherwise', 'combined', 'including', 'pursuant', 'acquisition', 'assets', 'assumption', 'related', 'liabilities', 'company', 'restricted', 'subsidiary', 'ii', 'incurred', 'provide', 'portion', 'funds', 'utilized', 'consummate', 'transaction', 'series', 'related', 'transactions', 'pursuant', 'person', 'became', 'restricted', 'subsidiary', 'otherwise', 'acquired', 'company', 'restricted', 'subsidiary', 'provided', 'however', 'respect', 'clause', '5', '5', 'ii', 'time', 'acquisition', 'transaction', 'x', 'company', 'would', 'able', 'incur', '1', '00', 'additional', 'indebtedness', 'pursuant', 'first', 'paragraph', 'covenant', 'giving', 'effect', 'incurrence', 'indebtedness', 'pursuant', 'clause', '5', 'fixed', 'charge', 'coverage', 'ratio', 'would', 'not', 'less', 'immediately', 'prior', 'giving', 'effect', 'acquisition', 'transaction', '6', 'indebtedness', 'currency', 'agreements', 'interest', 'rate', 'agreements', 'commodity', 'hedging', 'agreements', 'entered', 'bona', 'fide', 'hedging', 'purposes', 'company', 'restricted', 'subsidiaries', 'not', 'speculative', 'purposes', 'determined', 'good', 'faith', 'board', 'directors', 'senior', 'management', 'company', '7', 'indebtedness', 'represented', 'capitalized', 'lease', 'obligations', 'purchase', 'money', 'obligations', 'case', 'refinancing', 'indebtedness', 'respect', 'thereof', 'aggregate', 'outstanding', 'principal', 'amount', 'taken', 'together', '167', 'principal', 'amount', 'indebtedness', 'incurred', 'pursuant', 'clause', '7', 'outstanding', 'not', 'exceed', 'time', 'outstanding', 'greater', '25', 'million', '15', '5', 'consolidated', 'ebitda', '8', 'indebtedness', 'respect', 'workers', 'compensation', 'claims', 'self', 'insurance', 'obligations', 'performance', 'indemnity', 'surety', 'judgment', 'appeal', 'advance', 'payment', 'customs', 'vat', 'tax', 'guarantees', 'similar', 'bonds', 'instruments', 'obligations', 'completion', 'guarantees', 'warranties', 'provided', 'company', 'restricted', 'subsidiary', 'relating', 'liabilities', 'obligations', 'guarantees', 'incurred', 'ordinary', 'course', 'business', 'b', 'letters', 'credit', 'bankers', 'acceptances', 'guarantees', 'similar', 'instruments', 'obligations', 'issued', 'relating', 'liabilities', 'obligations', 'incurred', 'ordinary', 'course', 'business', 'provided', 'however', 'upon', 'drawing', 'letters', 'credit', 'similar', 'instruments', 'obligations', 'reimbursed', 'within', '30', 'business', 'days', 'following', 'drawing', 'c', 'financing', 'insurance', 'premiums', 'ordinary', 'course', 'business', 'customary', 'cash', 'management', 'cash', 'pooling', 'netting', 'setting', 'arrangements', 'ordinary', 'course', 'business', '9', 'indebtedness', 'arising', 'agreements', 'providing', 'customary', 'guarantees', 'indemnification', 'obligations', 'respect', 'earn', 'outs', 'adjustments', 'purchase', 'price', 'case', 'similar', 'obligations', 'case', 'incurred', 'assumed', 'connection', 'acquisition', 'disposition', 'business', 'assets', 'person', 'capital', 'stock', 'subsidiary', 'guarantees', 'indebtedness', 'incurred', 'person', 'acquiring', 'disposing', 'business', 'assets', 'subsidiary', 'purpose', 'financing', 'acquisition', 'disposition', '10', 'indebtedness', 'arising', 'honoring', 'bank', 'financial', 'institution', 'check', 'draft', 'similar', 'instrument', 'drawn', 'insufficient', 'funds', 'ordinary', 'course', 'business', 'provided', 'however', 'indebtedness', 'extinguished', 'within', '30', 'business', 'days', 'incurrence', 'b', 'customer', 'deposits', 'advance', 'payments', 'received', 'ordinary', 'course', 'business', 'customers', 'goods', 'purchased', 'ordinary', 'course', 'business', 'c', 'indebtedness', 'owed', 'short', 'term', 'basis', 'no', 'longer', '90', 'business', 'days', 'banks', 'financial', 'institutions', 'incurred', 'ordinary', 'course', 'business', 'company', 'restricted', 'subsidiaries', 'banks', 'financial', 'institutions', 'arises', 'connection', 'ordinary', 'banking', 'arrangements', 'manage', 'cash', 'balances', 'company', 'restricted', 'subsidiaries', 'including', 'indebtedness', 'inventory', 'funding', 'facilities', 'indebtedness', 'incurred', 'restricted', 'subsidiary', 'connection', 'bankers', 'acceptances', 'discounted', 'bills', 'exchange', 'discounting', 'factoring', 'receivables', 'credit', 'management', 'bad', 'debt', 'purposes', 'case', 'incurred', 'undertaken', 'ordinary', 'course', 'business', 'arm', 'length', 'commercial', 'terms', 'recourse', 'basis', '11', 'indebtedness', 'aggregate', 'outstanding', 'principal', 'amount', 'taken', 'together', 'refinancing', 'indebtedness', 'respect', 'thereof', 'aggregate', 'principal', 'amount', 'indebtedness', 'incurred', 'pursuant', 'clause', '11', 'outstanding', 'not', 'exceed', 'greater', '40', 'million', '25', '0', 'consolidated', 'ebitda', '12', 'indebtedness', 'aggregate', 'outstanding', 'principal', 'amount', 'taken', 'together', 'refinancing', 'indebtedness', 'respect', 'thereof', 'principal', 'amount', 'indebtedness', 'incurred', 'pursuant', 'clause', '12', 'outstanding', 'not', 'exceed', '100', 'net', 'cash', 'proceeds', 'received', 'company', 'issuance', 'sale', 'restricted', 'subsidiary', 'subordinated', 'shareholder', 'funding', 'capital', 'stock', 'disqualified', 'stock', 'designated', 'preference', 'shares', 'excluded', 'contribution', 'otherwise', 'contributed', 'equity', 'issuance', 'disqualified', 'stock', 'designated', 'preference', 'shares', 'excluded', 'contribution', 'company', 'case', 'subsequent', 'issue', 'date', 'provided', 'however', 'net', 'cash', 'proceeds', 'received', 'contributed', 'shall', 'excluded', 'purposes', 'making', 'restricted', 'payments', '168', 'first', 'paragraph', 'clauses', '1', '6', '10', 'third', 'paragraph', 'covenant', 'described', 'limitation', 'restricted', 'payments', 'extent', 'company', 'restricted', 'subsidiaries', 'incur', 'indebtedness', 'reliance', 'thereon', 'ii', 'net', 'cash', 'proceeds', 'received', 'contributed', 'shall', 'excluded', 'purposes', 'incurring', 'indebtedness', 'pursuant', 'clause', '12', 'extent', 'company', 'restricted', 'subsidiaries', 'makes', 'restricted', 'payment', 'first', 'paragraph', 'clauses', '1', '6', '10', 'third', 'paragraph', 'covenant', 'described', 'limitation', 'restricted', 'payments', 'reliance', 'thereon', '13', 'indebtedness', 'incurred', 'receivables', 'subsidiary', 'qualified', 'receivables', 'financing', '14', 'indebtedness', 'daylight', 'borrowing', 'facilities', 'incurred', 'connection', 'transactions', 'refinancing', 'indebtedness', 'including', 'way', 'set', 'exchange', 'long', 'indebtedness', 'repaid', 'within', 'five', 'business', 'days', 'date', 'indebtedness', 'incurred', '15', 'indebtedness', 'company', 'restricted', 'subsidiary', 'consisting', 'local', 'lines', 'credit', 'working', 'capital', 'local', 'facilities', 'aggregate', 'amount', 'time', 'outstanding', 'not', 'exceeding', 'greater', '15', 'million', '9', '5', 'consolidated', 'ebitda', 'notwithstanding', 'foregoing', 'aggregate', 'principal', 'amount', 'indebtedness', 'incurred', 'restricted', 'subsidiaries', 'not', 'guarantors', 'pursuant', 'first', 'paragraph', 'covenant', 'clauses', '11', '15', 'second', 'paragraph', 'covenant', 'time', 'outstanding', 'shall', 'not', 'exceed', 'greater', '80', 'million', '50', '0', 'consolidated', 'ebitda', 'measured', 'date', 'indebtedness', 'incurred', 'purposes', 'determining', 'compliance', 'outstanding', 'principal', 'amount', 'particular', 'indebtedness', 'incurred', 'pursuant', 'compliance', 'covenant', '1', 'event', 'indebtedness', 'meets', 'criteria', 'one', 'types', 'indebtedness', 'described', 'first', 'second', 'paragraphs', 'covenant', 'company', 'sole', 'discretion', 'classify', 'may', 'time', 'time', 'reclassify', 'item', 'portion', 'item', 'indebtedness', 'required', 'include', 'amount', 'type', 'indebtedness', 'one', 'clauses', 'second', 'paragraph', 'first', 'paragraph', 'covenant', '2', 'indebtedness', 'outstanding', 'issue', 'date', 'new', 'revolving', 'credit', 'facility', 'shall', 'deemed', 'initially', 'incurred', 'clause', '1', 'second', 'paragraph', 'description', 'covenant', 'not', 'first', 'paragraph', 'clause', '4', 'b', 'second', 'paragraph', 'description', 'covenant', 'may', 'not', 'reclassified', 'pursuant', 'clause', '1', 'paragraph', '3', 'guarantees', 'obligations', 'respect', 'letters', 'credit', 'bankers', 'acceptances', 'similar', 'instruments', 'relating', 'liens', 'securing', 'indebtedness', 'otherwise', 'included', 'determination', 'particular', 'amount', 'indebtedness', 'shall', 'not', 'included', '4', 'obligations', 'respect', 'letters', 'credit', 'bankers', 'acceptances', 'similar', 'instruments', 'incurred', 'pursuant', 'credit', 'facility', 'treated', 'incurred', 'pursuant', 'clause', '1', '7', '11', '12', 'second', 'paragraph', 'first', 'paragraph', 'letters', 'credit', 'bankers', 'acceptances', 'similar', 'instruments', 'relate', 'indebtedness', 'indebtedness', 'shall', 'not', 'included', '5', 'principal', 'amount', 'disqualified', 'stock', 'company', 'restricted', 'subsidiary', 'preferred', 'stock', 'restricted', 'subsidiary', 'equal', 'greater', 'maximum', 'mandatory', 'redemption', 'repurchase', 'price', 'not', 'including', 'either', 'case', 'redemption', 'repurchase', 'premium', 'liquidation', 'preference', 'thereof', '6', 'indebtedness', 'permitted', 'covenant', 'need', 'not', 'permitted', 'solely', 'reference', 'one', 'provision', 'permitting', 'indebtedness', 'may', 'permitted', 'part', 'one', 'provision', 'part', 'one', 'provisions', 'covenant', 'permitting', 'indebtedness', '169', '7', 'amount', 'indebtedness', 'issued', 'price', 'less', 'principal', 'amount', 'thereof', 'equal', 'amount', 'liability', 'respect', 'thereof', 'determined', 'basis', 'ifrs', 'accrual', 'interest', 'accrual', 'dividends', 'accretion', 'accreted', 'value', 'accretion', 'amortization', 'original', 'issue', 'discount', 'payment', 'interest', 'form', 'additional', 'indebtedness', 'payment', 'dividends', 'form', 'additional', 'shares', 'preferred', 'stock', 'disqualified', 'stock', 'reclassification', 'commitments', 'obligations', 'not', 'treated', 'indebtedness', 'due', 'change', 'ifrs', 'including', 'change', 'ifrs', 'u', 'gaap', 'not', 'deemed', 'incurrence', 'indebtedness', 'purposes', 'covenant', 'described', 'limitation', 'indebtedness', 'case', 'indebtedness', 'constitutes', 'payment', 'interest', 'form', 'additional', 'indebtedness', 'shall', 'permitted', 'secured', 'lien', 'extent', 'indebtedness', 'payment', 'interest', 'relates', 'amount', 'indebtedness', 'outstanding', 'date', 'shall', 'calculated', 'specified', 'definition', 'indebtedness', 'time', 'unrestricted', 'subsidiary', 'becomes', 'restricted', 'subsidiary', 'indebtedness', 'subsidiary', 'shall', 'deemed', 'incurred', 'restricted', 'subsidiary', 'date', 'purposes', 'determining', 'compliance', 'sterling', 'denominated', 'restriction', 'incurrence', 'indebtedness', 'sterling', 'equivalent', 'aggregate', 'principal', 'amount', 'indebtedness', 'denominated', 'another', 'currency', 'shall', 'calculated', 'based', 'relevant', 'currency', 'exchange', 'rate', 'effect', 'date', 'indebtedness', 'incurred', 'option', 'company', 'first', 'committed', 'provided', 'indebtedness', 'incurred', 'refinance', 'indebtedness', 'denominated', 'currency', 'sterling', 'refinancing', 'would', 'cause', 'applicable', 'sterling', 'denominated', 'restriction', 'exceeded', 'calculated', 'relevant', 'currency', 'exchange', 'rate', 'effect', 'date', 'refinancing', 'sterling', 'denominated', 'restriction', 'shall', 'deemed', 'not', 'exceeded', 'long', 'aggregate', 'principal', 'amount', 'refinancing', 'indebtedness', 'not', 'exceed', 'aggregate', 'principal', 'amount', 'indebtedness', 'refinanced', 'plus', 'amount', 'pay', 'premiums', 'including', 'tender', 'premiums', 'accrued', 'unpaid', 'interest', 'expenses', 'defeasance', 'costs', 'fees', 'connection', 'therewith', 'b', 'sterling', 'equivalent', 'aggregate', 'principal', 'amount', 'indebtedness', 'outstanding', 'issue', 'date', 'shall', 'calculated', 'based', 'relevant', 'currency', 'exchange', 'rate', 'effect', 'issue', 'date', 'c', 'long', 'indebtedness', 'subject', 'currency', 'agreement', 'respect', 'currency', 'indebtedness', 'denominated', 'covering', 'principal', 'interest', 'indebtedness', 'amount', 'indebtedness', 'denominated', 'sterling', 'amount', 'principal', 'payment', 'required', 'made', 'currency', 'agreement', 'otherwise', 'sterling', 'equivalent', 'amount', 'plus', 'sterling', 'equivalent', 'premium', 'time', 'due', 'payable', 'not', 'covered', 'currency', 'agreement', 'notwithstanding', 'provision', 'covenant', 'maximum', 'amount', 'indebtedness', 'company', 'restricted', 'subsidiary', 'may', 'incur', 'pursuant', 'covenant', 'shall', 'not', 'deemed', 'exceeded', 'solely', 'result', 'fluctuations', 'exchange', 'rate', 'currencies', 'principal', 'amount', 'indebtedness', 'incurred', 'refinance', 'indebtedness', 'incurred', 'different', 'currency', 'indebtedness', 'refinanced', 'shall', 'calculated', 'based', 'currency', 'exchange', 'rate', 'applicable', 'currencies', 'refinancing', 'indebtedness', 'denominated', 'effect', 'date', 'refinancing', 'limitation', 'restricted', 'payments', 'company', 'not', 'not', 'permit', 'restricted', 'subsidiaries', 'directly', 'indirectly', '1', 'declare', 'pay', 'dividend', 'make', 'distribution', 'respect', 'company', 'restricted', 'subsidiary', 'capital', 'stock', 'including', 'payment', 'connection', 'merger', 'consolidation', 'involving', 'company', 'restricted', 'subsidiaries', 'except', 'ii', 'dividends', 'distributions', 'payable', 'capital', 'stock', 'company', 'disqualified', 'stock', 'options', 'warrants', 'rights', 'purchase', 'capital', 'stock', 'company', 'subordinated', 'shareholder', 'funding', '170', 'iii', 'dividends', 'distributions', 'payable', 'company', 'restricted', 'subsidiary', 'case', 'restricted', 'subsidiary', 'making', 'dividend', 'distribution', 'holders', 'capital', 'stock', 'company', 'another', 'restricted', 'subsidiary', 'no', 'pro', 'rata', 'basis', 'measured', 'value', '2', 'purchase', 'redeem', 'retire', 'otherwise', 'acquire', 'value', 'capital', 'stock', 'company', 'direct', 'indirect', 'parent', 'company', 'held', 'persons', 'company', 'restricted', 'subsidiary', 'exchange', 'capital', 'stock', 'company', 'disqualified', 'stock', '3', 'make', 'principal', 'payment', 'purchase', 'repurchase', 'redeem', 'defease', 'otherwise', 'acquire', 'retire', 'value', 'prior', 'scheduled', 'maturity', 'scheduled', 'repayment', 'scheduled', 'sinking', 'fund', 'payment', 'subordinated', 'indebtedness', 'payment', 'purchase', 'repurchase', 'redemption', 'defeasance', 'acquisition', 'retirement', 'anticipation', 'satisfying', 'sinking', 'fund', 'obligation', 'principal', 'instalment', 'final', 'maturity', 'case', 'due', 'within', 'one', 'year', 'date', 'purchase', 'repurchase', 'redemption', 'defeasance', 'acquisition', 'retirement', 'b', 'indebtedness', 'incurred', 'pursuant', 'clause', '3', 'second', 'paragraph', 'covenant', 'described', 'limitation', 'indebtedness', '4', 'make', 'payment', 'capitalization', 'interest', 'respect', 'purchase', 'repurchase', 'redeem', 'defease', 'otherwise', 'acquire', 'retire', 'value', 'subordinated', 'shareholder', 'funding', '5', 'make', 'restricted', 'investment', 'person', 'dividend', 'distribution', 'payment', 'purchase', 'redemption', 'repurchase', 'defeasance', 'acquisition', 'retirement', 'restricted', 'investment', 'referred', 'clauses', '1', '5', 'referred', 'herein', 'restricted', 'payment', 'time', 'company', 'restricted', 'subsidiary', 'makes', 'restricted', 'payment', 'default', 'shall', 'occurred', 'continuing', 'would', 'result', 'immediately', 'thereafter', 'therefrom', 'b', 'company', 'not', 'able', 'incur', 'additional', '1', '00', 'indebtedness', 'pursuant', 'first', 'paragraph', 'limitation', 'indebtedness', 'covenant', 'giving', 'effect', 'pro', 'forma', 'basis', 'restricted', 'payment', 'c', 'aggregate', 'amount', 'restricted', 'payment', 'restricted', 'payments', 'made', 'subsequent', 'issue', 'date', 'not', 'returned', 'rescinded', 'including', 'permitted', 'payments', 'permitted', 'clauses', '10', '11', '17', 'second', 'succeeding', 'paragraph', 'excluding', 'restricted', 'payments', 'permitted', 'second', 'succeeding', 'paragraph', 'would', 'exceed', 'sum', 'without', 'duplication', '50', 'consolidated', 'net', 'income', 'period', 'treated', 'one', 'accounting', 'period', 'first', 'day', 'first', 'fiscal', 'quarter', 'commencing', 'issue', 'date', 'end', 'recent', 'fiscal', 'quarter', 'ending', 'prior', 'date', 'restricted', 'payment', 'internal', 'consolidated', 'financial', 'statements', 'company', 'available', 'case', 'consolidated', 'net', 'income', 'deficit', 'minus', '100', 'deficit', 'ii', '100', 'aggregate', 'net', 'cash', 'proceeds', 'fair', 'market', 'value', 'property', 'assets', 'marketable', 'securities', 'received', 'company', 'issue', 'sale', 'capital', 'stock', 'disqualified', 'stock', 'designated', 'preference', 'shares', 'subordinated', 'shareholder', 'funding', 'subsequent', 'issue', 'date', 'otherwise', 'contributed', 'equity', 'issuance', 'disqualified', 'stock', 'designated', 'preference', 'shares', 'company', 'subsequent', 'issue', 'date', 'w', 'capital', 'stock', 'sold', 'subsidiary', 'company', 'x', 'net', 'cash', 'proceeds', 'property', 'assets', 'marketable', 'securities', 'received', 'issuance', 'sale', 'capital', 'stock', 'restricted', 'subsidiary', 'employee', 'stock', 'ownership', 'plan', 'trust', 'established', 'company', 'subsidiary', 'company', 'benefit', 'employees', 'extent', 'funded', 'company', 'restricted', 'subsidiary', 'net', 'cash', 'proceeds', 'property', 'assets', 'marketable', 'securities', 'extent', 'restricted', 'payment', '171', 'made', 'proceeds', 'reliance', 'clause', '6', 'second', 'succeeding', 'paragraph', 'z', 'excluded', 'contributions', 'iii', '100', 'aggregate', 'net', 'cash', 'proceeds', 'fair', 'market', 'value', 'property', 'assets', 'marketable', 'securities', 'received', 'company', 'restricted', 'subsidiary', 'issuance', 'sale', 'x', 'company', 'restricted', 'subsidiary', 'employee', 'stock', 'ownership', 'plan', 'trust', 'established', 'company', 'subsidiary', 'company', 'benefit', 'employees', 'extent', 'funded', 'company', 'restricted', 'subsidiary', 'excluded', 'contributions', 'company', 'restricted', 'subsidiary', 'subsequent', 'issue', 'date', 'indebtedness', 'converted', 'exchanged', 'capital', 'stock', 'company', 'disqualified', 'stock', 'designated', 'preference', 'shares', 'subordinated', 'shareholder', 'funding', 'plus', 'amount', 'cash', 'fair', 'market', 'value', 'property', 'assets', 'marketable', 'securities', 'received', 'company', 'restricted', 'subsidiary', 'upon', 'conversion', 'exchange', 'iv', 'case', 'redesignation', 'unrestricted', 'subsidiary', 'restricted', 'subsidiary', 'merger', 'amalgamation', 'consolidation', 'unrestricted', 'subsidiary', 'company', 'restricted', 'subsidiary', 'transfer', 'substantially', 'assets', 'unrestricted', 'subsidiary', 'company', 'restricted', 'subsidiary', 'issue', 'date', 'fair', 'market', 'value', 'unrestricted', 'subsidiary', 'property', 'assets', 'transferred', 'time', 'redesignation', 'unrestricted', 'subsidiary', 'restricted', 'subsidiary', 'time', 'merger', 'amalgamation', 'consolidation', 'transfer', 'assets', 'provided', 'however', 'no', 'amount', 'included', 'consolidated', 'net', 'income', 'purposes', 'preceding', 'clause', 'extent', 'company', 'option', 'included', 'clause', 'iv', 'v', 'amount', 'cash', 'fair', 'market', 'value', 'property', 'assets', 'marketable', 'securities', 'received', 'company', 'restricted', 'subsidiaries', 'connection', 'repurchases', 'redemptions', 'acquisitions', 'retirements', 'restricted', 'investment', 'proceeds', 'realized', 'upon', 'sale', 'disposition', 'person', 'company', 'restricted', 'subsidiary', 'restricted', 'investment', 'repayments', 'loans', 'advances', 'transfers', 'assets', 'including', 'way', 'dividend', 'distribution', 'interest', 'payments', 'returns', 'capital', 'company', 'restricted', 'subsidiary', 'b', 'sale', 'disposition', 'company', 'restricted', 'subsidiary', 'employee', 'stock', 'ownership', 'plan', 'trust', 'established', 'company', 'subsidiary', 'company', 'benefit', 'employees', 'extent', 'funded', 'company', 'restricted', 'subsidiary', 'capital', 'stock', 'unrestricted', 'subsidiary', 'c', 'dividend', 'distribution', 'made', 'unrestricted', 'subsidiary', 'affiliate', 'company', 'restricted', 'subsidiary', 'provided', 'however', 'no', 'amount', 'included', 'consolidated', 'net', 'income', 'purposes', 'preceding', 'clause', 'extent', 'company', 'option', 'included', 'clause', 'v', 'foregoing', 'provisions', 'not', 'prohibit', 'following', 'collectively', 'permitted', 'payments', '1', 'purchase', 'repurchase', 'redemption', 'defeasance', 'acquisition', 'retirement', 'capital', 'stock', 'disqualified', 'stock', 'designated', 'preference', 'shares', 'subordinated', 'shareholder', 'funding', 'subordinated', 'indebtedness', 'made', 'exchange', 'including', 'exchange', 'pursuant', 'exercise', 'conversion', 'right', 'privilege', 'connection', 'cash', 'paid', 'lieu', 'issuance', 'fractional', 'shares', 'proceeds', 'substantially', 'concurrent', 'sale', 'capital', 'stock', 'company', 'disqualified', 'stock', 'designated', 'preference', 'shares', 'subordinated', 'shareholder', '172', 'funding', 'substantially', 'concurrent', 'contribution', 'equity', 'issuance', 'disqualified', 'stock', 'designated', 'preference', 'shares', 'excluded', 'contribution', 'company', 'provided', 'however', 'extent', 'applied', 'net', 'cash', 'proceeds', 'fair', 'market', 'value', 'property', 'assets', 'marketable', 'securities', 'sale', 'capital', 'stock', 'subordinated', 'shareholder', 'funding', 'contribution', 'excluded', 'clause', 'c', 'ii', 'preceding', 'paragraph', '2', 'purchase', 'repurchase', 'redemption', 'defeasance', 'acquisition', 'retirement', 'subordinated', 'indebtedness', 'made', 'exchange', 'proceeds', 'substantially', 'concurrent', 'sale', 'refinancing', 'indebtedness', 'permitted', 'incurred', 'pursuant', 'covenant', 'described', 'limitation', 'indebtedness', '3', 'purchase', 'repurchase', 'redemption', 'defeasance', 'acquisition', 'retirement', 'preferred', 'stock', 'company', 'restricted', 'subsidiary', 'made', 'exchange', 'proceeds', 'substantially', 'concurrent', 'sale', 'preferred', 'stock', 'company', 'restricted', 'subsidiary', 'case', 'may', 'case', 'permitted', 'incurred', 'pursuant', 'covenant', 'described', 'limitation', 'indebtedness', 'case', 'constitutes', 'refinancing', 'indebtedness', '4', 'purchase', 'repurchase', 'redemption', 'defeasance', 'acquisition', 'retirement', 'subordinated', 'indebtedness', 'net', 'available', 'cash', 'extent', 'permitted', 'limitation', 'sales', 'assets', 'subsidiary', 'stock', 'company', 'shall', 'first', 'complied', 'covenant', 'described', 'limitation', 'sales', 'assets', 'subsidiary', 'stock', 'purchased', 'notes', 'tendered', 'pursuant', 'offer', 'repurchase', 'notes', 'required', 'thereby', 'prior', 'purchasing', 'repurchasing', 'redeeming', 'defeasing', 'otherwise', 'acquiring', 'retiring', 'subordinated', 'indebtedness', 'ii', 'purchase', 'price', 'not', 'greater', '100', 'principal', 'amount', 'subordinated', 'indebtedness', 'plus', 'accrued', 'unpaid', 'interest', 'b', 'extent', 'required', 'agreement', 'governing', 'subordinated', 'indebtedness', 'following', 'occurrence', 'change', 'control', 'similar', 'event', 'described', 'therein', 'change', 'control', 'company', 'shall', 'first', 'complied', 'covenant', 'described', 'change', 'control', 'purchased', 'notes', 'validly', 'tendered', 'pursuant', 'offer', 'repurchase', 'notes', 'required', 'thereby', 'prior', 'purchasing', 'repurchasing', 'redeeming', 'defeasing', 'otherwise', 'acquiring', 'retiring', 'subordinated', 'indebtedness', 'ii', 'purchase', 'price', 'not', 'greater', '101', 'principal', 'amount', 'subordinated', 'indebtedness', 'plus', 'accrued', 'unpaid', 'interest', 'c', 'consisting', 'acquired', 'indebtedness', 'indebtedness', 'incurred', 'provide', 'portion', 'funds', 'utilized', 'consummate', 'transaction', 'series', 'related', 'transactions', 'pursuant', 'person', 'became', 'restricted', 'subsidiary', 'otherwise', 'acquired', 'company', 'restricted', 'subsidiary', 'b', 'otherwise', 'connection', 'contemplation', 'acquisition', 'ii', 'purchase', 'price', 'not', 'greater', '100', 'principal', 'amount', 'subordinated', 'indebtedness', 'plus', 'accrued', 'unpaid', 'interest', 'premium', 'required', 'terms', 'acquired', 'indebtedness', '5', 'dividends', 'paid', 'within', '60', 'days', 'date', 'declaration', 'date', 'declaration', 'dividend', 'would', 'complied', 'covenant', '6', 'purchase', 'repurchase', 'redemption', 'defeasance', 'acquisition', 'cancellation', 'retirement', 'value', 'capital', 'stock', 'company', 'parent', 'including', 'options', 'warrants', 'rights', 'respect', 'thereof', 'loans', 'advances', 'dividends', 'distributions', 'company', 'parent', 'permit', 'parent', 'purchase', 'repurchase', 'redeem', 'defease', 'otherwise', 'acquire', 'cancel', 'retire', 'value', 'capital', 'stock', 'parent', 'including', 'options', 'warrants', 'rights', 'respect', 'thereof', 'payments', 'purchase', 'repurchase', 'redeem', 'defease', 'otherwise', 'acquire', 'cancel', 'retire', 'value', 'capital', 'stock', 'company', 'parent', 'including', 'options', 'warrants', 'rights', 'respect', 'thereof', 'case', 'management', '173', 'investors', 'provided', 'payments', 'loans', 'advances', 'dividends', 'distributions', 'not', 'exceed', 'amount', 'net', 'repayments', 'loans', 'advances', 'equal', '1', '2', '5', 'million', 'plus', '2', '1', '0', 'million', 'multiplied', 'number', 'calendar', 'years', 'commenced', 'since', 'issue', 'date', 'plus', '3', 'net', 'cash', 'proceeds', 'received', 'company', 'restricted', 'subsidiaries', 'since', 'issue', 'date', 'including', 'receipt', 'proceeds', 'issuance', 'sale', 'capital', 'stock', 'subordinated', 'shareholder', 'funding', 'parent', 'contribution', 'equity', 'case', 'clause', '6', 'issuance', 'disqualified', 'stock', 'designated', 'preference', 'shares', 'company', 'issuance', 'sale', 'management', 'investors', 'capital', 'stock', 'including', 'options', 'warrants', 'rights', 'respect', 'thereof', 'extent', 'net', 'cash', 'proceeds', 'not', 'otherwise', 'designated', 'excluded', 'contributions', 'not', 'included', 'calculation', 'clause', 'c', 'ii', 'first', 'paragraph', 'describing', 'covenant', '7', 'declaration', 'payment', 'dividends', 'holders', 'class', 'series', 'disqualified', 'stock', 'preferred', 'stock', 'restricted', 'subsidiary', 'incurred', 'accordance', 'terms', 'covenant', 'described', 'limitation', 'indebtedness', '8', 'purchases', 'repurchases', 'redemptions', 'defeasances', 'acquisitions', 'retirements', 'capital', 'stock', 'deemed', 'occur', 'upon', 'exercise', 'stock', 'options', 'warrants', 'rights', 'respect', 'thereof', 'capital', 'stock', 'represents', 'portion', 'exercise', 'price', 'thereof', '9', 'dividends', 'loans', 'advances', 'distributions', 'parent', 'payments', 'company', 'restricted', 'subsidiary', 'amounts', 'equal', 'without', 'duplication', 'amounts', 'required', 'parent', 'pay', 'parent', 'expenses', 'related', 'taxes', 'b', 'amounts', 'constituting', 'used', 'purposes', 'making', 'payments', 'connection', 'transactions', 'fees', 'expenses', 'disclosed', 'offering', 'memorandum', 'ii', 'extent', 'specified', 'clauses', '2', '3', '5', '7', '11', '12', 'second', 'paragraph', 'limitation', 'affiliate', 'transactions', '10', 'long', 'no', 'default', 'event', 'default', 'occurred', 'continuing', 'would', 'result', 'declaration', 'payment', 'company', 'loans', 'advances', 'dividends', 'distributions', 'parent', 'pay', 'dividends', 'common', 'stock', 'common', 'equity', 'interests', 'company', 'parent', 'following', 'public', 'offering', 'common', 'stock', 'common', 'equity', 'interests', 'amount', 'not', 'exceed', 'fiscal', 'year', 'greater', '6', 'net', 'cash', 'proceeds', 'received', 'company', 'public', 'offering', 'contributed', 'equity', 'issuance', 'disqualified', 'stock', 'designated', 'preference', 'shares', 'excluded', 'contribution', 'company', 'loaned', 'subordinated', 'shareholder', 'funding', 'company', 'b', 'following', 'initial', 'public', 'offering', 'amount', 'equal', 'greater', '7', 'market', 'capitalization', 'ii', '7', 'ipo', 'market', 'capitalization', 'provided', 'giving', 'pro', 'forma', 'effect', 'loans', 'advances', 'dividends', 'distributions', 'consolidated', 'net', 'leverage', 'ratio', 'shall', 'equal', 'less', '2', '75', '1', '0', '11', 'long', 'no', 'default', 'event', 'default', 'occurred', 'continuing', 'would', 'result', 'restricted', 'payments', 'including', 'loans', 'advances', 'aggregate', 'amount', 'outstanding', 'time', 'not', 'exceed', 'greater', '30', 'million', '18', '5', 'consolidated', 'ebitda', '12', 'payments', 'company', 'loans', 'advances', 'dividends', 'distributions', 'parent', 'make', 'payments', 'holders', 'capital', 'stock', 'company', 'parent', 'lieu', 'issuance', 'fractional', 'shares', 'capital', 'stock', 'provided', 'however', 'payment', 'loan', 'advance', 'dividend', 'distribution', 'shall', 'not', 'purpose', 'evading', 'limitation', 'covenant', 'otherwise', 'facilitate', 'dividend', 'return', 'capital', 'holders', 'capital', 'stock', 'determined', 'good', 'faith', 'board', 'directors', 'company', '174', '13', 'investments', 'aggregate', 'amount', 'outstanding', 'time', 'not', 'exceed', 'fair', 'market', 'value', 'excluded', 'contributions', 'consisting', 'non', 'cash', 'excluded', 'contributions', 'investments', 'extent', 'made', 'exchange', 'using', 'consideration', 'investments', 'previously', 'made', 'clause', '13', '14', 'declaration', 'payment', 'dividends', 'holders', 'class', 'series', 'designated', 'preference', 'shares', 'company', 'issued', 'issue', 'date', 'ii', 'declaration', 'payment', 'dividends', 'parent', 'affiliate', 'thereof', 'proceeds', 'used', 'fund', 'payment', 'dividends', 'holders', 'class', 'series', 'designated', 'preference', 'shares', 'parent', 'issued', 'issue', 'date', 'provided', 'however', 'case', 'clauses', 'ii', 'amount', 'dividends', 'declared', 'paid', 'pursuant', 'clause', '14', 'shall', 'not', 'exceed', 'net', 'cash', 'proceeds', 'received', 'company', 'aggregate', 'amount', 'contributed', 'cash', 'equity', 'issuance', 'disqualified', 'stock', 'excluded', 'contribution', 'case', 'designated', 'preference', 'shares', 'parent', 'affiliate', 'issuance', 'designated', 'preference', 'shares', 'company', 'loaned', 'subordinated', 'shareholder', 'funding', 'company', 'issuance', 'sale', 'designated', 'preference', 'shares', '15', 'dividends', 'distributions', 'capital', 'stock', 'unrestricted', 'subsidiaries', '16', 'payment', 'receivables', 'fees', 'purchases', 'receivables', 'assets', 'pursuant', 'receivables', 'repurchase', 'obligation', 'connection', 'qualified', 'receivables', 'financing', '17', 'time', 'first', 'anniversary', 'issue', 'date', 'long', 'no', 'default', 'event', 'default', 'occurred', 'continuing', 'would', 'result', 'therefrom', 'dividend', 'distribution', 'loan', 'payment', 'parent', 'provided', 'consolidated', 'net', 'leverage', 'ratio', 'pro', 'forma', 'basis', 'giving', 'effect', 'dividend', 'distribution', 'loan', 'payment', 'not', 'exceed', '2', '5', '1', '0', 'amount', 'restricted', 'payments', 'cash', 'shall', 'fair', 'market', 'value', 'date', 'restricted', 'payment', 'asset', 'securities', 'proposed', 'paid', 'transferred', 'issued', 'company', 'restricted', 'subsidiary', 'case', 'may', 'pursuant', 'restricted', 'payment', 'limitation', 'liens', 'company', 'not', 'not', 'permit', 'restricted', 'subsidiary', 'directly', 'indirectly', 'create', 'incur', 'suffer', 'exist', 'lien', 'upon', 'property', 'assets', 'including', 'capital', 'stock', 'restricted', 'subsidiary', 'whether', 'owned', 'issue', 'date', 'acquired', 'date', 'interest', 'therein', 'income', 'profits', 'therefrom', 'lien', 'securing', 'indebtedness', 'lien', 'initial', 'lien', 'except', 'case', 'property', 'asset', 'not', 'constitute', 'collateral', '1', 'permitted', 'liens', '2', 'liens', 'property', 'assets', 'not', 'permitted', 'liens', 'notes', 'guarantee', 'case', 'liens', 'guarantor', 'secured', 'equally', 'ratably', 'prior', 'case', 'liens', 'respect', 'subordinated', 'indebtedness', 'indebtedness', 'secured', 'initial', 'lien', 'long', 'indebtedness', 'secured', 'provided', 'lien', 'secure', 'indebtedness', 'pursuant', 'clauses', '1', '6', 'second', 'paragraph', 'limitation', 'indebtedness', 'covenant', 'may', 'priority', 'not', 'materially', 'less', 'favorable', 'holders', 'accorded', 'new', 'revolving', 'credit', 'facility', 'agreement', 'pursuant', 'intercreditor', 'agreement', 'b', 'case', 'property', 'asset', 'constitutes', 'collateral', 'permitted', 'collateral', 'liens', 'lien', 'created', 'favor', 'notes', 'pursuant', 'clause', '2', 'preceding', 'paragraph', 'automatically', 'unconditionally', 'released', 'discharged', 'upon', 'release', 'discharge', 'initial', 'lien', 'relates', 'ii', 'otherwise', 'set', 'forth', 'security', 'release', 'liens', '175', 'limitation', 'restrictions', 'distributions', 'restricted', 'subsidiaries', 'company', 'not', 'not', 'permit', 'restricted', 'subsidiary', 'create', 'otherwise', 'cause', 'permit', 'exist', 'become', 'effective', 'consensual', 'encumbrance', 'consensual', 'restriction', 'ability', 'restricted', 'subsidiary', '1', 'pay', 'dividends', 'make', 'distributions', 'cash', 'otherwise', 'capital', 'stock', 'pay', 'indebtedness', 'obligations', 'owed', 'issuer', 'company', 'restricted', 'subsidiary', '2', 'make', 'loans', 'advances', 'issuer', 'company', 'restricted', 'subsidiary', '3', 'sell', 'lease', 'transfer', 'property', 'assets', 'issuer', 'company', 'restricted', 'subsidiary', 'provided', 'x', 'priority', 'preferred', 'stock', 'receiving', 'dividends', 'liquidating', 'distributions', 'prior', 'dividends', 'liquidating', 'distributions', 'paid', 'common', 'stock', 'subordination', 'including', 'application', 'standstill', 'requirements', 'loans', 'advances', 'made', 'company', 'restricted', 'subsidiary', 'indebtedness', 'incurred', 'company', 'restricted', 'subsidiary', 'shall', 'not', 'deemed', 'constitute', 'encumbrance', 'restriction', 'provisions', 'preceding', 'paragraph', 'not', 'prohibit', '1', 'encumbrance', 'restriction', 'pursuant', 'credit', 'facility', 'including', 'senior', 'finance', 'documents', 'b', 'agreement', 'instrument', 'case', 'effect', 'entered', 'issue', 'date', '2', 'encumbrance', 'restriction', 'pursuant', 'agreement', 'instrument', 'person', 'relating', 'capital', 'stock', 'indebtedness', 'person', 'entered', 'date', 'person', 'acquired', 'merged', 'consolidated', 'otherwise', 'combined', 'company', 'restricted', 'subsidiary', 'designated', 'restricted', 'subsidiary', 'agreement', 'instrument', 'assumed', 'company', 'restricted', 'subsidiary', 'connection', 'acquisition', 'assets', 'capital', 'stock', 'indebtedness', 'incurred', 'consideration', 'provide', 'portion', 'funds', 'utilized', 'consummate', 'transaction', 'series', 'related', 'transactions', 'pursuant', 'person', 'became', 'restricted', 'subsidiary', 'acquired', 'company', 'merged', 'consolidated', 'otherwise', 'combined', 'company', 'restricted', 'subsidiary', 'entered', 'connection', 'transaction', 'outstanding', 'date', 'provided', 'purposes', 'clause', '2', 'another', 'person', 'successor', 'company', 'subsidiary', 'thereof', 'agreement', 'instrument', 'person', 'subsidiary', 'shall', 'deemed', 'acquired', 'assumed', 'company', 'restricted', 'subsidiary', 'person', 'becomes', 'successor', 'company', '3', 'encumbrance', 'restriction', 'pursuant', 'agreement', 'instrument', 'effecting', 'refinancing', 'indebtedness', 'incurred', 'pursuant', 'otherwise', 'refinances', 'agreement', 'instrument', 'referred', 'clause', '1', '2', 'paragraph', 'clause', '3', 'initial', 'agreement', 'contained', 'amendment', 'supplement', 'modification', 'agreement', 'referred', 'clause', '1', '2', 'paragraph', 'clause', '3', 'provided', 'however', 'encumbrances', 'restrictions', 'respect', 'restricted', 'subsidiary', 'contained', 'agreement', 'instrument', 'no', 'less', 'favorable', 'material', 'respect', 'holders', 'taken', 'whole', 'encumbrances', 'restrictions', 'contained', 'initial', 'agreement', 'initial', 'agreements', 'refinancing', 'amendment', 'supplement', 'modification', 'relates', 'determined', 'good', 'faith', 'company', '4', 'encumbrance', 'restriction', 'restricts', 'customary', 'manner', 'subletting', 'assignment', 'transfer', 'property', 'asset', 'subject', 'lease', 'license', 'similar', 'contract', 'assignment', 'transfer', 'lease', 'license', 'contract', 'b', 'contained', 'mortgages', 'pledges', 'charges', 'security', 'agreements', 'permitted', 'indenture', 'securing', 'indebtedness', 'company', 'restricted', '176', 'subsidiary', 'permitted', 'indenture', 'extent', 'encumbrances', 'restrictions', 'restrict', 'transfer', 'property', 'assets', 'subject', 'mortgages', 'pledges', 'charges', 'security', 'agreements', 'c', 'pursuant', 'customary', 'provisions', 'restricting', 'dispositions', 'real', 'property', 'interests', 'set', 'forth', 'reciprocal', 'easement', 'agreements', 'company', 'restricted', 'subsidiary', '5', 'encumbrance', 'restriction', 'pursuant', 'purchase', 'money', 'obligations', 'capitalized', 'lease', 'obligations', 'permitted', 'indenture', 'case', 'impose', 'encumbrances', 'restrictions', 'property', 'acquired', 'encumbrance', 'restriction', 'pursuant', 'joint', 'venture', 'agreement', 'imposes', 'restrictions', 'transfer', 'assets', 'joint', 'venture', '6', 'encumbrance', 'restriction', 'respect', 'restricted', 'subsidiary', 'property', 'assets', 'imposed', 'pursuant', 'agreement', 'entered', 'direct', 'indirect', 'sale', 'disposition', 'person', 'substantially', 'capital', 'stock', 'assets', 'restricted', 'subsidiary', 'property', 'assets', 'subject', 'restriction', 'pending', 'closing', 'sale', 'disposition', '7', 'customary', 'provisions', 'leases', 'licenses', 'joint', 'venture', 'agreements', 'similar', 'agreements', 'instruments', 'entered', 'ordinary', 'course', 'business', '8', 'encumbrances', 'restrictions', 'arising', 'existing', 'reason', 'applicable', 'law', 'applicable', 'rule', 'regulation', 'order', 'required', 'regulatory', 'authority', '9', 'encumbrance', 'restriction', 'cash', 'deposits', 'net', 'worth', 'imposed', 'customers', 'agreements', 'entered', 'ordinary', 'course', 'business', '10', 'encumbrance', 'restriction', 'pursuant', 'currency', 'agreements', 'interest', 'rate', 'agreements', 'commodity', 'hedging', 'agreements', '11', 'encumbrance', 'restriction', 'arising', 'pursuant', 'agreement', 'instrument', 'relating', 'indebtedness', 'permitted', 'incurred', 'subsequent', 'issue', 'date', 'pursuant', 'provisions', 'covenant', 'described', 'limitation', 'indebtedness', 'encumbrances', 'restrictions', 'contained', 'agreement', 'instrument', 'taken', 'whole', 'not', 'materially', 'less', 'favorable', 'holders', 'encumbrances', 'restrictions', 'contained', 'new', 'revolving', 'credit', 'facility', 'agreement', 'intercreditor', 'agreement', 'together', 'security', 'documents', 'associated', 'therewith', 'effect', 'issue', 'date', 'ii', 'comparable', 'financings', 'determined', 'good', 'faith', 'company', 'company', 'determines', 'indebtedness', 'incurred', 'encumbrances', 'restrictions', 'not', 'adversely', 'affect', 'material', 'respect', 'company', 'ability', 'make', 'principal', 'interest', 'payments', 'notes', '12', 'encumbrance', 'restriction', 'existing', 'reason', 'lien', 'permitted', 'limitation', 'liens', '13', 'restrictions', 'effected', 'connection', 'qualified', 'receivables', 'financing', 'good', 'faith', 'determination', 'board', 'directors', 'company', 'necessary', 'advisable', 'effect', 'qualified', 'receivables', 'financing', 'limitation', 'sales', 'assets', 'subsidiary', 'stock', 'company', 'not', 'not', 'permit', 'restricted', 'subsidiaries', 'make', 'asset', 'disposition', 'unless', '1', 'company', 'restricted', 'subsidiary', 'case', 'may', 'receives', 'consideration', 'including', 'way', 'relief', 'person', 'assuming', 'responsibility', 'liabilities', 'contingent', 'otherwise', 'least', 'equal', 'fair', 'market', 'value', 'fair', 'market', 'value', 'determined', 'date', 'contractually', 'agreeing', 'asset', 'disposition', 'shares', 'assets', 'subject', 'asset', 'disposition', 'including', 'avoidance', 'doubt', 'asset', 'disposition', 'permitted', 'asset', 'swap', '2', 'asset', 'disposition', 'series', 'related', 'asset', 'dispositions', 'except', 'extent', 'asset', 'disposition', 'permitted', 'asset', 'swap', 'least', '75', 'consideration', 'asset', 'disposition', 'excluding', 'consideration', 'way', '177', 'relief', 'person', 'assuming', 'responsibility', 'liabilities', 'contingent', 'otherwise', 'indebtedness', 'received', 'company', 'restricted', 'subsidiary', 'case', 'may', 'form', 'cash', 'cash', 'equivalents', 'temporary', 'cash', 'investments', '3', 'amount', 'equal', '100', 'net', 'available', 'cash', 'asset', 'disposition', 'applied', 'company', 'restricted', 'subsidiary', 'case', 'may', 'extent', 'company', 'restricted', 'subsidiary', 'case', 'may', 'elects', 'required', 'terms', 'indebtedness', 'restricted', 'subsidiary', 'prepay', 'repay', 'purchase', 'indebtedness', 'non', 'guarantor', 'restricted', 'subsidiary', 'case', 'indebtedness', 'owed', 'company', 'restricted', 'subsidiary', 'indebtedness', 'incurred', 'clause', '1', 'second', 'paragraph', 'covenant', 'described', 'limitation', 'indebtedness', 'within', '365', 'days', 'later', 'date', 'asset', 'disposition', 'b', 'receipt', 'net', 'available', 'cash', 'provided', 'however', 'connection', 'prepayment', 'repayment', 'purchase', 'indebtedness', 'pursuant', 'clause', 'company', 'restricted', 'subsidiary', 'retire', 'indebtedness', 'cause', 'related', 'commitment', 'except', 'case', 'revolving', 'indebtedness', 'permanently', 'reduced', 'amount', 'equal', 'principal', 'amount', 'prepaid', 'repaid', 'purchased', 'ii', 'prepay', 'repay', 'purchase', 'pari', 'passu', 'indebtedness', 'price', 'no', '100', 'principal', 'amount', 'pari', 'passu', 'indebtedness', 'plus', 'accrued', 'unpaid', 'interest', 'date', 'prepayment', 'repayment', 'purchase', 'provided', 'company', 'shall', 'redeem', 'repay', 'repurchase', 'pari', 'passu', 'indebtedness', 'public', 'debt', 'pursuant', 'clause', 'ii', 'company', 'either', 'reduces', 'aggregate', 'principal', 'amount', 'notes', 'equal', 'ratable', 'basis', 'pari', 'passu', 'indebtedness', 'repaid', 'pursuant', 'clause', 'ii', 'option', 'x', 'redeeming', 'notes', 'provided', 'optional', 'redemption', 'purchasing', 'notes', 'open', 'market', 'purchases', 'privately', 'negotiated', 'transactions', 'price', 'equal', 'higher', '100', 'principal', 'amount', 'thereof', 'b', 'makes', 'time', 'subsequently', 'compliance', 'covenant', 'offer', 'holders', 'notes', 'purchase', 'notes', 'accordance', 'provisions', 'set', 'forth', 'asset', 'disposition', 'offer', 'equal', 'ratable', 'basis', 'pari', 'passu', 'indebtedness', 'repaid', 'pursuant', 'clause', 'ii', 'offer', 'shall', 'deemed', 'asset', 'disposition', 'offer', 'purposes', 'hereof', 'iii', 'purchase', 'notes', 'open', 'market', 'purchases', 'privately', 'negotiated', 'transactions', 'price', 'equal', 'higher', '100', 'principal', 'amount', 'thereof', 'iv', 'make', 'time', 'subsequently', 'compliance', 'covenant', 'offer', 'holders', 'notes', 'purchase', 'notes', 'accordance', 'provisions', 'set', 'forth', 'asset', 'disposition', 'offer', 'offer', 'shall', 'deemed', 'asset', 'disposition', 'offer', 'purposes', 'hereof', 'v', 'redeem', 'series', 'notes', 'described', 'optional', 'redemption', 'b', 'extent', 'company', 'restricted', 'subsidiary', 'elects', 'invest', 'commit', 'invest', 'additional', 'assets', 'including', 'means', 'investment', 'additional', 'assets', 'restricted', 'subsidiary', 'net', 'available', 'cash', 'received', 'company', 'another', 'restricted', 'subsidiary', 'ii', 'make', 'capital', 'expenditures', 'either', 'case', 'within', '365', 'days', 'later', 'x', 'date', 'asset', 'disposition', 'receipt', 'net', 'available', 'cash', 'provided', 'however', 'investment', 'additional', 'assets', 'capital', 'expenditure', 'made', 'pursuant', 'definitive', 'binding', 'agreement', 'commitment', 'approved', 'board', 'directors', 'company', 'executed', 'approved', 'within', 'time', 'satisfy', 'requirement', 'long', 'investment', 'capital', 'expenditure', 'consummated', 'within', '180', 'days', '365th', 'day', 'provided', 'pending', 'final', 'application', 'net', 'available', 'cash', 'accordance', 'clause', 'clause', 'b', 'company', 'restricted', 'subsidiaries', 'may', 'temporarily', 'reduce', 'indebtedness', 'otherwise', 'invest', 'net', 'available', 'cash', 'manner', 'not', 'prohibited', 'indenture', '178', 'net', 'available', 'cash', 'asset', 'dispositions', 'not', 'applied', 'invested', 'committed', 'applied', 'invested', 'provided', 'preceding', 'paragraph', 'deemed', 'constitute', 'excess', 'proceeds', 'indenture', '366th', 'day', 'later', 'date', 'asset', 'disposition', 'b', 'receipt', 'net', 'available', 'cash', 'connection', 'asset', 'disposition', 'earlier', 'date', 'company', 'elects', 'aggregate', 'amount', 'excess', 'proceeds', 'indenture', 'exceeds', '20', 'million', 'not', 'committed', 'accordance', 'clause', '3', 'b', 'first', 'paragraph', 'covenant', 'company', 'required', 'make', 'offer', 'asset', 'disposition', 'offer', 'holders', 'notes', 'issued', 'indenture', 'extent', 'company', 'elects', 'holders', 'outstanding', 'pari', 'passu', 'indebtedness', 'purchase', 'maximum', 'aggregate', 'principal', 'amount', 'notes', 'pari', 'passu', 'indebtedness', 'asset', 'disposition', 'offer', 'applies', 'may', 'purchased', 'excess', 'proceeds', 'offer', 'price', 'respect', 'notes', 'amount', 'equal', 'case', 'pari', 'passu', 'indebtedness', 'offer', 'price', 'no', '100', 'principal', 'amount', 'notes', '100', 'principal', 'amount', 'pari', 'passu', 'indebtedness', 'case', 'plus', 'accrued', 'unpaid', 'interest', 'not', 'including', 'date', 'purchase', 'accordance', 'procedures', 'set', 'forth', 'indenture', 'agreements', 'governing', 'pari', 'passu', 'indebtedness', 'applicable', 'minimum', 'denominations', '200', '000', 'integral', 'multiples', '1', '000', 'excess', 'thereof', 'case', 'dollar', 'notes', '100', '000', 'integral', 'multiples', '1', '000', 'excess', 'thereof', 'case', 'sterling', 'notes', 'extent', 'aggregate', 'amount', 'notes', 'pari', 'passu', 'indebtedness', 'validly', 'tendered', 'not', 'properly', 'withdrawn', 'pursuant', 'asset', 'disposition', 'offer', 'less', 'excess', 'proceeds', 'company', 'may', 'use', 'remaining', 'excess', 'proceeds', 'general', 'corporate', 'purposes', 'subject', 'covenants', 'contained', 'indenture', 'aggregate', 'principal', 'amount', 'notes', 'surrendered', 'asset', 'disposition', 'offer', 'holders', 'pari', 'passu', 'indebtedness', 'surrendered', 'holders', 'lenders', 'collectively', 'exceeds', 'amount', 'excess', 'proceeds', 'excess', 'proceeds', 'shall', 'allocated', 'among', 'notes', 'pari', 'passu', 'indebtedness', 'purchased', 'pro', 'rata', 'basis', 'basis', 'aggregate', 'principal', 'amount', 'tendered', 'notes', 'pari', 'passu', 'indebtedness', 'purposes', 'calculating', 'aggregate', 'principal', 'amount', 'indebtedness', 'not', 'denominated', 'sterling', 'indebtedness', 'shall', 'calculated', 'converting', 'aggregate', 'principal', 'amounts', 'sterling', 'equivalent', 'determined', 'date', 'selected', 'company', 'within', 'asset', 'disposition', 'offer', 'period', 'defined', 'upon', 'completion', 'asset', 'disposition', 'offer', 'amount', 'excess', 'proceeds', 'shall', 'reset', 'zero', 'net', 'available', 'cash', 'payable', 'respect', 'notes', 'pursuant', 'covenant', 'allocated', 'dollar', 'notes', 'sterling', 'notes', 'proportion', 'respective', 'aggregate', 'principal', 'amounts', 'dollar', 'notes', 'sterling', 'notes', 'validly', 'tendered', 'not', 'withdrawn', 'extent', 'portion', 'net', 'available', 'cash', 'payable', 'respect', 'notes', 'denominated', 'currency', 'currency', 'notes', 'denominated', 'amount', 'thereof', 'payable', 'respect', 'notes', 'shall', 'not', 'exceed', 'net', 'amount', 'funds', 'currency', 'notes', 'denominated', 'actually', 'received', 'company', 'upon', 'converting', 'portion', 'currency', 'asset', 'disposition', 'offer', 'far', 'relates', 'notes', 'remain', 'open', 'period', 'not', 'less', 'five', 'business', 'days', 'following', 'commencement', 'asset', 'disposition', 'offer', 'period', 'no', 'later', 'five', 'business', 'days', 'termination', 'asset', 'disposition', 'offer', 'period', 'asset', 'disposition', 'purchase', 'date', 'company', 'purchase', 'procure', 'purchase', 'aggregate', 'principal', 'amount', 'notes', 'extent', 'elect', 'pari', 'passu', 'indebtedness', 'required', 'purchased', 'pursuant', 'covenant', 'asset', 'disposition', 'offer', 'amount', 'less', 'asset', 'disposition', 'offer', 'amount', 'validly', 'tendered', 'notes', 'pari', 'passu', 'indebtedness', 'validly', 'tendered', 'response', 'asset', 'disposition', 'offer', 'asset', 'disposition', 'purchase', 'date', 'company', 'extent', 'lawful', 'accept', 'payment', 'pro', 'rata', 'basis', 'extent', 'necessary', 'asset', 'disposition', 'offer', 'amount', 'notes', 'pari', 'passu', 'indebtedness', 'portions', 'notes', 'pari', 'passu', 'indebtedness', 'validly', 'tendered', 'not', 'properly', 'withdrawn', 'pursuant', 'asset', 'disposition', 'offer', 'less', 'asset', 'disposition', 'offer', 'amount', 'validly', 'tendered', 'not', 'properly', 'withdrawn', 'notes', 'pari', 'passu', 'indebtedness', 'validly', 'tendered', 'not', 'properly', 'withdrawn', '179', 'minimum', 'denominations', '200', '000', 'integral', 'multiples', '1', '000', 'excess', 'thereof', 'case', 'dollar', 'notes', '100', '000', 'integral', 'multiples', '1', '000', 'excess', 'thereof', 'case', 'sterling', 'notes', 'company', 'deliver', 'trustee', 'officer', 'certificate', 'stating', 'notes', 'portions', 'thereof', 'accepted', 'payment', 'company', 'accordance', 'terms', 'covenant', 'company', 'relevant', 'paying', 'agent', 'case', 'may', 'promptly', 'case', 'not', 'later', 'five', 'business', 'days', 'termination', 'asset', 'disposition', 'offer', 'period', 'mail', 'deliver', 'tendering', 'holder', 'notes', 'amount', 'equal', 'purchase', 'price', 'notes', 'validly', 'tendered', 'not', 'properly', 'withdrawn', 'holder', 'accepted', 'company', 'purchase', 'company', 'promptly', 'issue', 'new', 'note', 'amend', 'global', 'note', 'trustee', 'upon', 'delivery', 'officer', 'certificate', 'company', 'authenticate', 'mail', 'deliver', 'cause', 'transferred', 'book', 'entry', 'new', 'note', 'holder', 'aggregate', 'principal', 'amount', 'equal', 'unpurchased', 'portion', 'note', 'surrendered', 'provided', 'new', 'note', 'aggregate', 'principal', 'amount', 'minimum', 'denomination', '200', '000', 'integral', 'multiples', '1', '000', 'excess', 'thereof', 'case', 'dollar', 'notes', '100', '000', 'integral', 'multiples', '1', '000', 'excess', 'thereof', 'case', 'sterling', 'notes', 'note', 'not', 'accepted', 'promptly', 'mailed', 'delivered', 'transferred', 'book', 'entry', 'company', 'holder', 'thereof', 'purposes', 'clause', '2', 'first', 'paragraph', 'covenant', 'following', 'deemed', 'cash', '1', 'assumption', 'transferee', 'indebtedness', 'company', 'indebtedness', 'restricted', 'subsidiary', 'subordinated', 'indebtedness', 'company', 'guarantor', 'release', 'company', 'restricted', 'subsidiary', 'liability', 'indebtedness', 'connection', 'asset', 'disposition', '2', 'securities', 'notes', 'obligations', 'received', 'company', 'restricted', 'subsidiary', 'transferee', 'converted', 'company', 'restricted', 'subsidiary', 'cash', 'cash', 'equivalents', 'within', '180', 'days', 'following', 'closing', 'asset', 'disposition', '3', 'indebtedness', 'restricted', 'subsidiary', 'no', 'longer', 'restricted', 'subsidiary', 'result', 'asset', 'disposition', 'extent', 'company', 'restricted', 'subsidiary', 'released', 'guarantee', 'payment', 'indebtedness', 'connection', 'asset', 'disposition', '4', 'consideration', 'consisting', 'indebtedness', 'company', 'subordinated', 'indebtedness', 'received', 'issue', 'date', 'persons', 'not', 'company', 'restricted', 'subsidiary', '5', 'designated', 'non', 'cash', 'consideration', 'received', 'company', 'restricted', 'subsidiary', 'asset', 'dispositions', 'aggregate', 'fair', 'market', 'value', 'taken', 'together', 'designated', 'non', 'cash', 'consideration', 'received', 'pursuant', 'covenant', 'time', 'outstanding', 'not', 'exceed', 'time', 'receipt', 'designated', 'non', 'cash', 'consideration', 'issuer', 'option', 'time', 'contractually', 'agreeing', 'asset', 'disposition', 'greater', '20', 'million', '12', '5', 'consolidated', 'ebitda', 'company', 'comply', 'extent', 'applicable', 'requirements', 'section', '14', 'e', 'exchange', 'act', 'securities', 'laws', 'regulations', 'rules', 'exchange', 'notes', 'listed', 'connection', 'repurchase', 'notes', 'pursuant', 'indenture', 'extent', 'provisions', 'securities', 'laws', 'regulations', 'exchange', 'rules', 'conflict', 'provisions', 'covenant', 'company', 'comply', 'applicable', 'securities', 'laws', 'regulations', 'exchange', 'rules', 'not', 'deemed', 'breached', 'obligations', 'indenture', 'virtue', 'conflict', '180', 'limitation', 'affiliate', 'transactions', 'company', 'not', 'not', 'permit', 'restricted', 'subsidiaries', 'directly', 'indirectly', 'enter', 'conduct', 'transaction', 'series', 'related', 'transactions', 'including', 'purchase', 'sale', 'lease', 'exchange', 'property', 'rendering', 'service', 'affiliate', 'company', 'affiliate', 'transaction', 'involving', 'aggregate', 'value', 'excess', '5', 'million', 'unless', '1', 'terms', 'affiliate', 'transaction', 'taken', 'whole', 'not', 'materially', 'less', 'favorable', 'company', 'restricted', 'subsidiary', 'case', 'may', 'could', 'obtained', 'comparable', 'transaction', 'time', 'transaction', 'execution', 'agreement', 'providing', 'transaction', 'arm', 'length', 'dealings', 'person', 'not', 'affiliate', '2', 'event', 'affiliate', 'transaction', 'series', 'related', 'affiliate', 'transactions', 'involves', 'aggregate', 'value', 'excess', '10', 'million', 'terms', 'transaction', 'approved', 'majority', 'members', 'board', 'directors', 'company', '3', 'event', 'affiliate', 'transaction', 'series', 'related', 'affiliate', 'transactions', 'involves', 'aggregate', 'consideration', 'excess', '25', 'million', 'issuer', 'received', 'written', 'opinion', 'independent', 'financial', 'advisor', 'affiliate', 'transaction', 'fair', 'financial', 'standpoint', 'company', 'restricted', 'subsidiaries', 'terms', 'not', 'materially', 'less', 'favorable', 'could', 'reasonably', 'obtained', 'comparable', 'transaction', 'time', 'arm', 'length', 'basis', 'person', 'not', 'affiliate', 'affiliate', 'transaction', 'shall', 'deemed', 'satisfied', 'requirements', 'set', 'forth', 'clause', '2', 'paragraph', 'affiliate', 'transaction', 'approved', 'majority', 'disinterested', 'directors', 'no', 'disinterested', 'directors', 'affiliate', 'transaction', 'shall', 'deemed', 'satisfied', 'requirements', 'set', 'forth', 'covenant', 'company', 'restricted', 'subsidiaries', 'case', 'may', 'delivers', 'trustee', 'letter', 'independent', 'financial', 'advisor', 'stating', 'transaction', 'fair', 'company', 'restricted', 'subsidiary', 'financial', 'point', 'view', 'stating', 'terms', 'not', 'materially', 'less', 'favorable', 'company', 'relevant', 'restricted', 'subsidiary', 'would', 'obtained', 'comparable', 'transaction', 'company', 'restricted', 'subsidiary', 'unrelated', 'person', 'arm', 'length', 'basis', 'provisions', 'preceding', 'paragraph', 'not', 'apply', '1', 'restricted', 'payment', 'permitted', 'made', 'pursuant', 'covenant', 'described', 'limitation', 'restricted', 'payments', 'permitted', 'payments', 'pursuant', 'clause', '9', 'b', 'ii', 'fourth', 'paragraph', 'covenant', 'described', 'limitation', 'restricted', 'payments', 'permitted', 'investment', 'permitted', 'investments', 'described', 'paragraphs', 'l', 'b', '2', '11', 'definition', 'thereof', '2', 'issuance', 'sale', 'capital', 'stock', 'options', 'equity', 'related', 'interests', 'securities', 'payments', 'awards', 'grants', 'cash', 'securities', 'otherwise', 'pursuant', 'funding', 'entering', 'maintenance', 'employment', 'consulting', 'collective', 'bargaining', 'benefit', 'plan', 'program', 'agreement', 'arrangement', 'related', 'trust', 'similar', 'agreement', 'compensation', 'arrangements', 'options', 'warrants', 'rights', 'purchase', 'capital', 'stock', 'company', 'restricted', 'subsidiary', 'parent', 'restricted', 'stock', 'plans', 'long', 'term', 'incentive', 'plans', 'stock', 'appreciation', 'rights', 'plans', 'participation', 'plans', 'similar', 'employee', 'benefits', 'consultants', 'plans', 'including', 'valuation', 'health', 'insurance', 'deferred', 'compensation', 'severance', 'retirement', 'savings', 'similar', 'plans', 'programs', 'arrangements', 'indemnities', 'provided', 'behalf', 'officers', 'employees', 'directors', 'consultants', 'approved', 'board', 'directors', 'company', 'case', 'ordinary', 'course', 'business', '3', 'management', 'advances', 'waiver', 'transaction', 'respect', 'thereto', '181', '4', 'transaction', 'among', 'company', 'restricted', 'subsidiary', 'entity', 'becomes', 'restricted', 'subsidiary', 'result', 'transaction', 'among', 'restricted', 'subsidiaries', '5', 'payment', 'reasonable', 'fees', 'reimbursement', 'expenses', 'customary', 'indemnities', 'including', 'customary', 'insurance', 'policies', 'employee', 'benefit', 'pension', 'expenses', 'provided', 'behalf', 'directors', 'officers', 'consultants', 'employees', 'company', 'restricted', 'subsidiary', 'parent', 'whether', 'directly', 'indirectly', 'including', 'person', 'owned', 'controlled', 'directors', 'officers', 'employees', '6', 'transactions', 'entry', 'performance', 'obligations', 'company', 'restricted', 'subsidiaries', 'terms', 'transaction', 'arising', 'payments', 'pursuant', 'purposes', 'funding', 'agreement', 'instrument', 'effect', 'issue', 'date', 'agreements', 'instruments', 'may', 'amended', 'modified', 'supplemented', 'extended', 'renewed', 'refinanced', 'time', 'time', 'accordance', 'terms', 'covenant', 'extent', 'not', 'disadvantageous', 'holders', 'material', 'respect', 'good', 'faith', 'judgment', 'company', 'entry', 'performance', 'registration', 'rights', 'listing', 'agreement', 'connection', 'public', 'offering', '7', 'execution', 'delivery', 'performance', 'tax', 'sharing', 'agreement', 'formation', 'maintenance', 'consolidated', 'group', 'tax', 'accounting', 'cash', 'pooling', 'management', 'purposes', 'ordinary', 'course', 'business', '8', 'transactions', 'customers', 'clients', 'lenders', 'suppliers', 'purchasers', 'sellers', 'goods', 'services', 'case', 'ordinary', 'course', 'business', 'fair', 'company', 'relevant', 'restricted', 'subsidiary', 'reasonable', 'determination', 'board', 'directors', 'senior', 'management', 'company', 'relevant', 'restricted', 'subsidiary', 'case', 'lenders', 'terms', 'no', 'less', 'favorable', 'could', 'reasonably', 'obtained', 'time', 'unaffiliated', 'party', '9', 'transaction', 'ordinary', 'course', 'business', 'among', 'company', 'restricted', 'subsidiary', 'affiliate', 'company', 'associate', 'similar', 'entity', 'would', 'constitute', 'affiliate', 'transaction', 'solely', 'company', 'restricted', 'subsidiary', 'affiliate', 'company', 'restricted', 'subsidiary', 'affiliate', 'permitted', 'holder', 'owns', 'equity', 'interest', 'otherwise', 'controls', 'affiliate', 'associate', 'similar', 'entity', '10', 'issuances', 'sales', 'capital', 'stock', 'disqualified', 'stock', 'designated', 'preference', 'shares', 'company', 'options', 'warrants', 'rights', 'acquire', 'capital', 'stock', 'subordinated', 'shareholder', 'funding', 'provided', 'interest', 'rate', 'financial', 'terms', 'subordinated', 'shareholder', 'funding', 'approved', 'majority', 'members', 'board', 'directors', 'company', 'reasonable', 'determination', 'b', 'amendment', 'waiver', 'transaction', 'respect', 'subordinated', 'shareholder', 'funding', 'compliance', 'provisions', 'indenture', '11', 'without', 'duplication', 'respect', 'payments', 'made', 'pursuant', 'clause', '12', 'hereof', 'payments', 'company', 'restricted', 'subsidiary', 'permitted', 'holder', 'whether', 'directly', 'indirectly', 'including', 'parent', 'annual', 'customary', 'management', 'consulting', 'monitoring', 'advisory', 'fees', 'related', 'expenses', 'aggregate', 'amount', 'not', 'exceed', '2', 'million', 'per', 'year', 'unused', 'amounts', 'calendar', 'year', 'carried', 'succeeding', 'calendar', 'year', 'b', 'customary', 'payments', 'company', 'restricted', 'subsidiary', 'permitted', 'holder', 'whether', 'directly', 'indirectly', 'including', 'parent', 'financial', 'advisory', 'financing', 'underwriting', 'placement', 'services', 'respect', 'investment', 'banking', 'activities', 'including', 'connection', 'acquisitions', 'divestitures', 'payments', 'respect', 'clause', 'b', 'approved', 'majority', 'board', 'directors', 'company', 'good', 'faith', '182', '12', 'payment', 'permitted', 'holder', 'reasonable', 'pocket', 'expenses', 'incurred', 'permitted', 'holder', 'connection', 'direct', 'indirect', 'investment', 'company', 'subsidiaries', '13', 'transaction', 'effected', 'part', 'qualified', 'receivables', 'financing', 'limitation', 'issuer', 'activities', 'issuer', 'may', 'not', 'carry', 'business', 'material', 'assets', '1', 'offering', 'sale', 'issuance', 'servicing', 'listing', 'purchase', 'redemption', 'exchange', 'refinancing', 'retirement', 'notes', 'including', 'additional', 'notes', 'incurrence', 'indebtedness', 'guarantees', 'thereof', 'permitted', 'terms', 'indenture', 'performance', 'terms', 'conditions', 'indebtedness', 'extent', 'activities', 'otherwise', 'permissible', 'indenture', 'granting', 'liens', 'permitted', 'pursuant', 'covenant', 'described', 'caption', 'limitation', 'liens', '2', 'rights', 'obligations', 'arising', 'indenture', 'credit', 'facility', 'intercreditor', 'agreement', 'including', 'additional', 'intercreditor', 'agreement', 'security', 'documents', 'agreement', 'existing', 'issue', 'date', 'party', '3', 'undertaken', 'purpose', 'directly', 'related', 'fulfilling', 'obligations', 'indebtedness', 'issuer', 'permitted', 'indenture', '4', 'ownership', 'cash', 'cash', 'equivalents', '5', 'making', 'investments', 'notes', 'including', 'additional', 'notes', 'indebtedness', 'permitted', 'terms', 'indenture', '6', 'directly', 'related', 'reasonably', 'incidental', 'establishment', 'maintenance', 'corporate', 'existence', '7', 'relating', 'lending', 'proceeds', 'indebtedness', 'company', 'restricted', 'subsidiary', '8', 'pursuant', 'connection', 'transactions', '9', 'holding', 'capital', 'stock', 'aston', 'martin', 'capital', 'limited', '10', 'reasonably', 'related', 'foregoing', 'clauses', '1', '9', 'hereof', '11', 'activities', 'not', 'specifically', 'enumerated', 'de', 'minimis', 'nature', 'no', 'event', 'issuer', 'carry', 'business', 'material', 'assets', 'would', 'require', 'registered', 'investment', 'company', 'investment', 'company', 'act', '1940', 'amended', 'reports', 'long', 'notes', 'outstanding', 'company', 'provide', 'trustee', 'following', 'reports', '1', 'within', '120', 'days', 'end', 'aston', 'martin', 'holdings', 'uk', 'limited', 'fiscal', 'year', 'beginning', 'fiscal', 'year', 'ending', 'december', '31', '2017', 'annual', 'reports', 'containing', 'extent', 'applicable', 'following', 'information', 'audited', 'consolidated', 'balance', 'sheets', 'aston', 'martin', 'holdings', 'uk', 'limited', 'predecessor', 'end', 'two', 'recent', 'fiscal', 'years', 'audited', 'consolidated', 'income', 'statements', 'statements', 'cash', 'flow', 'aston', 'martin', 'holdings', 'uk', 'limited', 'predecessor', 'two', 'recent', 'fiscal', 'years', 'including', 'complete', 'footnotes', 'financial', 'statements', 'report', 'independent', 'auditors', 'financial', 'statements', 'b', 'unaudited', 'pro', 'forma', 'income', 'statement', 'information', 'balance', 'sheet', 'information', 'aston', 'martin', 'holdings', 'uk', 'limited', 'avoidance', 'doubt', 'shall', 'not', 'include', 'provision', 'full', 'income', 'statement', 'balance', 'sheet', 'extent', 'not', 'reasonably', 'available', 'together', 'explanatory', 'footnotes', 'material', 'acquisitions', 'dispositions', 'recapitalizations', 'occurred', 'since', 'beginning', 'recently', 'completed', 'fiscal', 'year', 'c', 'operating', 'financial', 'review', 'audited', 'financial', 'statements', 'including', 'discussion', 'results', 'operations', 'financial', 'condition', 'liquidity', 'capital', 'resources', 'aston', 'martin', 'holdings', 'uk', 'limited', 'discussion', 'material', 'commitments', 'contingencies', 'critical', 'accounting', 'policies', 'similar', 'scope', 'level', 'detail', 'included', 'offering', 'memorandum', 'description', 'business', 'management', 'shareholders', 'aston', 'martin', 'holdings', 'uk', 'limited', 'material', 'affiliate', 'transactions', 'description', 'material', 'contractual', 'arrangements', 'including', 'material', 'debt', 'instruments', 'e', 'description', 'material', 'risk', 'factors', 'material', 'recent', 'developments', 'f', 'brief', 'description', 'material', 'differences', 'financial', 'condition', 'results', 'operations', 'aston', 'martin', 'holdings', 'uk', 'limited', 'company', 'statement', 'company', 'total', 'net', 'debt', 'ebitda', 'interest', 'expense', 'consolidated', 'basis', '183', '2', 'within', '60', 'days', 'following', 'end', 'first', 'three', 'fiscal', 'quarters', 'fiscal', 'year', 'aston', 'martin', 'holdings', 'uk', 'limited', 'beginning', 'fiscal', 'quarter', 'ending', 'march', '31', '2017', 'quarterly', 'reports', 'aston', 'martin', 'holdings', 'uk', 'limited', 'containing', 'following', 'information', 'unaudited', 'condensed', 'consolidated', 'balance', 'sheet', 'end', 'quarter', 'unaudited', 'condensed', 'statements', 'income', 'cash', 'flow', 'recent', 'quarter', 'year', 'date', 'period', 'ending', 'unaudited', 'condensed', 'balance', 'sheet', 'date', 'comparable', 'prior', 'year', 'periods', 'together', 'condensed', 'footnote', 'disclosure', 'b', 'unaudited', 'pro', 'forma', 'income', 'statement', 'information', 'balance', 'sheet', 'information', 'aston', 'martin', 'holdings', 'uk', 'limited', 'avoidance', 'doubt', 'shall', 'not', 'include', 'provision', 'full', 'income', 'statement', 'balance', 'sheet', 'extent', 'not', 'reasonably', 'available', 'together', 'explanatory', 'footnotes', 'material', 'acquisitions', 'dispositions', 'recapitalizations', 'occurred', 'since', 'beginning', 'relevant', 'quarter', 'c', 'operating', 'financial', 'review', 'unaudited', 'financial', 'statements', 'including', 'discussion', 'results', 'operations', 'financial', 'condition', 'ebitda', 'material', 'changes', 'liquidity', 'capital', 'resources', 'aston', 'martin', 'holdings', 'uk', 'limited', 'discussion', 'material', 'changes', 'not', 'ordinary', 'course', 'business', 'commitments', 'contingencies', 'since', 'recent', 'report', 'material', 'recent', 'developments', 'e', 'brief', 'description', 'material', 'differences', 'financial', 'condition', 'results', 'operations', 'aston', 'martin', 'holdings', 'uk', 'limited', 'company', 'statement', 'company', 'total', 'net', 'debt', 'ebitda', 'interest', 'expense', 'consolidated', 'basis', '3', 'promptly', 'occurrence', 'material', 'acquisition', 'disposition', 'restructuring', 'senior', 'executive', 'officer', 'changes', 'company', 'change', 'auditors', 'company', 'aston', 'martin', 'holdings', 'uk', 'limited', 'material', 'event', 'company', 'restricted', 'subsidiaries', 'announces', 'publicly', 'report', 'containing', 'description', 'event', 'financial', 'statement', 'pro', 'forma', 'financial', 'information', 'shall', 'prepared', 'accordance', 'ifrs', 'effect', 'date', 'report', 'financial', 'statement', 'otherwise', 'basis', 'ifrs', 'effect', 'consistent', 'basis', 'periods', 'presented', 'provided', 'however', 'reports', 'set', 'forth', 'clauses', '1', '2', '3', 'first', 'paragraph', 'covenant', 'may', 'event', 'change', 'applicable', 'ifrs', 'present', 'earlier', 'periods', 'basis', 'applied', 'periods', 'b', 'company', 'may', 'elect', 'become', 'reporting', 'entity', 'place', 'aston', 'martin', 'holdings', 'uk', 'limited', 'election', 'clauses', '1', '2', '3', 'first', 'paragraph', 'covenant', 'shall', 'deemed', 'refer', 'company', 'clauses', '1', 'f', '2', 'e', 'first', 'paragraph', 'covenant', 'shall', 'no', 'longer', 'apply', 'except', 'provided', 'herein', 'no', 'report', 'need', 'include', 'separate', 'financial', 'statements', 'subsidiaries', 'company', 'following', 'initial', 'public', 'offering', 'capital', 'stock', 'company', 'parent', 'listing', 'capital', 'stock', 'recognized', 'stock', 'exchange', 'requirements', 'clauses', '1', '2', '3', 'shall', 'considered', 'fulfilled', 'ipo', 'entity', 'complies', 'reporting', 'requirements', 'stock', 'exchange', 'provided', 'company', 'shall', 'provide', 'financial', 'reporting', 'first', 'three', 'fiscal', 'quarters', 'fiscal', 'year', 'annual', 'report', 'time', 'company', 'subsidiaries', 'unrestricted', 'subsidiaries', 'unrestricted', 'subsidiary', 'group', 'unrestricted', 'subsidiaries', 'taken', 'together', 'one', 'subsidiary', 'constitutes', 'significant', 'subsidiary', 'company', 'annual', 'quarterly', 'financial', 'information', 'required', 'clauses', '1', '2', 'first', 'paragraph', 'covenant', 'shall', 'include', 'either', 'reasonably', 'detailed', 'presentation', 'either', 'face', 'financial', 'statements', 'footnotes', 'thereto', 'financial', 'condition', 'results', 'operations', 'company', 'restricted', 'subsidiaries', 'separate', 'financial', 'condition', 'results', 'operations', 'unrestricted', 'subsidiaries', 'company', 'ii', 'stand', 'alone', 'audited', 'unaudited', 'financial', 'statements', 'case', 'may', 'unrestricted', 'subsidiary', 'unrestricted', 'subsidiaries', 'group', 'otherwise', 'together', 'unaudited', 'reconciliation', 'financial', 'information', 'company', 'subsidiaries', 'reconciliation', 'shall', 'include', 'following', 'items', 'revenues', 'ebitda', 'net', 'income', 'cash', 'total', 'assets', 'total', 'debt', 'shareholders', 'equity', 'capital', 'expenditures', 'interest', 'expense', 'substantially', 'concurrently', 'issuance', 'trustee', 'reports', 'specified', 'clauses', '1', '2', '3', 'first', 'paragraph', 'covenant', 'company', 'shall', 'also', 'use', 'commercially', '184', 'reasonable', 'efforts', 'post', 'copies', 'reports', 'website', 'may', 'maintained', 'company', 'subsidiaries', 'ii', 'otherwise', 'provide', 'substantially', 'comparable', 'availability', 'reports', 'determined', 'company', 'good', 'faith', 'b', 'extent', 'company', 'determines', 'good', 'faith', 'can', 'not', 'make', 'reports', 'available', 'manner', 'described', 'preceding', 'clause', 'owing', 'applicable', 'law', 'use', 'commercially', 'reasonable', 'efforts', 'furnish', 'reports', 'holders', 'upon', 'request', 'prospective', 'purchasers', 'notes', 'company', 'also', 'make', 'available', 'copies', 'reports', 'required', 'clauses', '1', '3', 'first', 'paragraph', 'covenant', 'long', 'notes', 'listed', 'official', 'list', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'rules', 'channel', 'islands', 'securities', 'exchange', 'require', 'extent', 'manner', 'permitted', 'rules', 'post', 'reports', 'official', 'website', 'channel', 'islands', 'securities', 'exchange', 'www', 'thecise', 'com', 'beginning', 'fiscal', 'quarter', 'ending', 'june', '30', '2017', 'long', 'notes', 'outstanding', 'company', 'shall', 'use', 'commercially', 'reasonable', 'efforts', 'hold', 'live', 'quarterly', 'conference', 'call', 'present', 'results', 'operations', 'relevant', 'reporting', 'period', 'benefit', 'holders', 'prospective', 'holders', 'provided', 'no', 'one', 'conference', 'call', 'required', 'relation', 'quarterly', 'period', 'addition', 'long', 'notes', 'not', 'freely', 'transferrable', 'exchange', 'act', 'persons', 'not', 'affiliates', 'securities', 'act', 'company', 'shall', 'furnish', 'holders', 'upon', 'request', 'prospective', 'purchasers', 'notes', 'information', 'required', 'delivered', 'pursuant', 'rule', '144a', '4', 'securities', 'act', 'delivery', 'information', 'documents', 'reports', 'trustee', 'pursuant', 'reports', 'covenant', 'informational', 'purposes', 'trustee', 'receipt', 'shall', 'not', 'constitute', 'constructive', 'notice', 'information', 'contained', 'herein', 'including', 'company', 'compliance', 'covenants', 'indenture', 'merger', 'consolidation', 'issuer', 'issuer', 'not', 'consolidate', 'merge', 'convey', 'transfer', 'lease', 'substantially', 'assets', 'one', 'transaction', 'series', 'related', 'transactions', 'person', 'unless', '1', 'resulting', 'surviving', 'transferee', 'person', 'successor', 'issuer', 'person', 'organized', 'existing', 'laws', 'member', 'state', 'european', 'union', 'united', 'states', 'america', 'state', 'united', 'states', 'district', 'columbia', 'canada', 'province', 'canada', 'jersey', 'norway', 'switzerland', 'japan', 'successor', 'issuer', 'not', 'issuer', 'expressly', 'assume', 'supplemental', 'indenture', 'executed', 'delivered', 'trustee', 'form', 'reasonably', 'satisfactory', 'trustee', 'obligations', 'issuer', 'notes', 'indenture', 'b', 'obligations', 'issuer', 'security', 'documents', 'extent', 'required', 'intercreditor', 'agreement', 'additional', 'intercreditor', 'agreement', 'intercreditor', 'agreement', 'additional', 'intercreditor', 'agreement', 'applicable', '2', 'immediately', 'giving', 'effect', 'transaction', 'treating', 'indebtedness', 'becomes', 'obligation', 'successor', 'issuer', 'subsidiary', 'successor', 'issuer', 'result', 'transaction', 'incurred', 'successor', 'issuer', 'subsidiary', 'time', 'transaction', 'no', 'default', 'event', 'default', 'shall', 'occurred', 'continuing', '3', 'issuer', 'shall', 'delivered', 'trustee', 'officer', 'certificate', 'opinion', 'counsel', 'effect', 'consolidation', 'merger', 'transfer', 'supplemental', 'indenture', 'comply', 'indenture', 'supplemental', 'indenture', 'duly', 'authorized', 'executed', 'delivered', 'legal', 'valid', 'binding', 'agreement', 'enforceable', 'successor', 'issuer', 'form', 'substance', 'reasonably', 'satisfactory', 'trustee', 'provided', 'giving', 'opinion', 'counsel', 'counsel', 'may', 'rely', 'officer', 'certificate', 'without', 'independent', 'verification', 'matters', 'fact', 'including', 'satisfaction', 'clauses', '1', '2', 'trustee', 'shall', 'entitled', 'rely', 'conclusively', 'officer', 'certificate', 'opinion', 'counsel', 'without', 'independent', 'investigation', 'verification', '185', 'successor', 'issuer', 'succeed', 'substituted', 'may', 'exercise', 'every', 'right', 'power', 'issuer', 'indenture', 'case', 'lease', 'substantially', 'assets', 'predecessor', 'company', 'not', 'released', 'obligations', 'indenture', 'notes', 'notwithstanding', 'preceding', 'clauses', '2', '3', 'not', 'apply', 'transactions', 'referred', 'sentence', 'issuer', 'may', 'consolidate', 'otherwise', 'combine', 'merge', 'affiliate', 'incorporated', 'organized', 'purpose', 'changing', 'legal', 'domicile', 'issuer', 'reincorporating', 'issuer', 'another', 'jurisdiction', 'changing', 'legal', 'form', 'issuer', 'no', 'precise', 'established', 'definition', 'phrase', 'substantially', 'applicable', 'law', 'accordingly', 'certain', 'circumstances', 'may', 'degree', 'uncertainty', 'whether', 'particular', 'transaction', 'would', 'involve', 'substantially', 'property', 'assets', 'person', 'foregoing', 'provisions', 'requirements', 'clause', '2', 'first', 'paragraph', 'covenant', 'not', 'apply', 'creation', 'new', 'subsidiary', 'issuer', 'becomes', 'parent', 'one', 'issuer', 'subsidiaries', 'issuer', 'shall', 'remain', 'wholly', 'owned', 'subsidiary', 'company', 'company', 'company', 'not', 'consolidate', 'merge', 'convey', 'transfer', 'lease', 'substantially', 'assets', 'one', 'transaction', 'series', 'related', 'transactions', 'person', 'unless', '1', 'resulting', 'surviving', 'transferee', 'person', 'successor', 'company', 'person', 'organized', 'existing', 'laws', 'member', 'state', 'european', 'union', 'united', 'states', 'america', 'state', 'united', 'states', 'district', 'columbia', 'canada', 'province', 'canada', 'jersey', 'norway', 'switzerland', 'japan', 'successor', 'company', 'not', 'company', 'expressly', 'assume', 'supplemental', 'indenture', 'executed', 'delivered', 'trustee', 'form', 'reasonably', 'satisfactory', 'trustee', 'obligations', 'company', 'guarantee', 'b', 'obligations', 'company', 'security', 'documents', 'extent', 'required', 'intercreditor', 'agreement', 'additional', 'intercreditor', 'agreement', 'intercreditor', 'agreement', 'additional', 'intercreditor', 'agreement', 'applicable', '2', 'immediately', 'giving', 'effect', 'transaction', 'treating', 'indebtedness', 'becomes', 'obligation', 'successor', 'company', 'subsidiary', 'successor', 'company', 'result', 'transaction', 'incurred', 'successor', 'company', 'subsidiary', 'time', 'transaction', 'no', 'default', 'event', 'default', 'shall', 'occurred', 'continuing', '3', 'immediately', 'giving', 'effect', 'transaction', 'either', 'successor', 'company', 'would', 'able', 'incur', 'least', 'additional', '1', '00', 'indebtedness', 'pursuant', 'first', 'paragraph', 'covenant', 'described', 'limitation', 'indebtedness', 'b', 'fixed', 'charge', 'coverage', 'ratio', 'would', 'not', 'less', 'immediately', 'prior', 'giving', 'effect', 'transaction', '4', 'company', 'shall', 'delivered', 'trustee', 'officer', 'certificate', 'opinion', 'counsel', 'effect', 'consolidation', 'merger', 'transfer', 'supplemental', 'indenture', 'comply', 'indenture', 'supplemental', 'indenture', 'duly', 'authorized', 'executed', 'delivered', 'legal', 'valid', 'binding', 'agreement', 'enforceable', 'successor', 'company', 'form', 'substance', 'reasonably', 'satisfactory', 'trustee', 'provided', 'giving', 'opinion', 'counsel', 'counsel', 'may', 'rely', 'officer', 'certificate', 'without', 'independent', 'verification', 'matters', 'fact', 'including', 'satisfaction', 'clauses', '1', '2', '3', 'trustee', 'shall', 'entitled', 'rely', 'conclusively', 'officer', 'certificate', 'opinion', 'counsel', 'without', 'independent', 'investigation', 'verification', 'indebtedness', 'becomes', 'obligation', 'company', 'restricted', 'subsidiary', 'deemed', 'incurred', 'restricted', 'subsidiary', 'becomes', 'restricted', 'subsidiary', '186', 'result', 'transaction', 'undertaken', 'compliance', 'covenant', 'refinancing', 'indebtedness', 'respect', 'thereto', 'shall', 'deemed', 'incurred', 'compliance', 'covenant', 'described', 'limitation', 'indebtedness', 'purposes', 'covenant', 'sale', 'lease', 'conveyance', 'assignment', 'transfer', 'disposition', 'substantially', 'properties', 'assets', 'one', 'subsidiaries', 'company', 'properties', 'assets', 'held', 'company', 'instead', 'subsidiaries', 'would', 'constitute', 'substantially', 'properties', 'assets', 'company', 'consolidated', 'basis', 'shall', 'deemed', 'transfer', 'substantially', 'properties', 'assets', 'company', 'successor', 'company', 'succeed', 'substituted', 'may', 'exercise', 'every', 'right', 'power', 'company', 'indenture', 'case', 'lease', 'substantially', 'assets', 'predecessor', 'company', 'not', 'released', 'obligations', 'indenture', 'notes', 'notwithstanding', 'preceding', 'clauses', '2', '3', 'provisions', 'described', 'issuer', 'subsidiary', 'guarantors', 'not', 'apply', 'transactions', 'referred', 'sentence', 'respect', 'second', 'preceding', 'paragraph', 'clause', '4', 'first', 'paragraph', 'covenant', 'restricted', 'subsidiary', 'may', 'consolidate', 'otherwise', 'combine', 'merge', 'transfer', 'part', 'properties', 'assets', 'company', 'b', 'restricted', 'subsidiary', 'may', 'consolidate', 'otherwise', 'combine', 'merge', 'transfer', 'part', 'properties', 'assets', 'restricted', 'subsidiary', 'notwithstanding', 'preceding', 'clauses', '2', '3', 'not', 'apply', 'transactions', 'referred', 'sentence', 'company', 'may', 'consolidate', 'otherwise', 'combine', 'merge', 'affiliate', 'incorporated', 'organized', 'purpose', 'changing', 'legal', 'domicile', 'company', 'reincorporating', 'company', 'another', 'jurisdiction', 'changing', 'legal', 'form', 'company', 'no', 'precise', 'established', 'definition', 'phrase', 'substantially', 'applicable', 'law', 'accordingly', 'certain', 'circumstances', 'may', 'degree', 'uncertainty', 'whether', 'particular', 'transaction', 'would', 'involve', 'substantially', 'property', 'assets', 'person', 'foregoing', 'provisions', 'requirements', 'clause', '2', 'first', 'paragraph', 'covenant', 'not', 'apply', 'creation', 'new', 'subsidiary', 'restricted', 'subsidiary', 'notwithstanding', 'anything', 'contrary', 'covenant', 'permitted', 'reorganization', 'shall', 'permitted', 'time', 'subsidiary', 'guarantors', 'no', 'guarantor', 'subsidiary', 'company', 'subsidiary', 'guarantor', 'may', '1', 'consolidate', 'merge', 'person', '2', 'sell', 'convey', 'transfer', 'dispose', 'substantially', 'assets', 'entirety', 'substantially', 'entirety', 'one', 'transaction', 'series', 'related', 'transactions', 'person', '3', 'permit', 'person', 'merge', 'guarantor', 'unless', 'person', 'company', 'restricted', 'subsidiary', 'guarantor', 'becomes', 'guarantor', 'concurrently', 'transaction', 'b', 'either', 'x', 'guarantor', 'continuing', 'person', 'resulting', 'surviving', 'transferee', 'person', 'expressly', 'assumes', 'obligations', 'guarantor', 'guarantee', 'indenture', 'security', 'documents', 'extent', 'required', 'intercreditor', 'agreement', 'additional', 'intercreditor', 'agreement', 'intercreditor', 'agreement', 'additional', 'intercreditor', 'agreement', 'applicable', 'ii', 'immediately', 'giving', 'effect', 'transaction', 'no', 'default', 'event', 'default', 'occurred', 'continuing', '187', 'c', 'transaction', 'constitutes', 'sale', 'disposition', 'including', 'way', 'consolidation', 'merger', 'subsidiary', 'guarantor', 'sale', 'disposition', 'substantially', 'assets', 'subsidiary', 'guarantor', 'case', 'company', 'restricted', 'subsidiary', 'otherwise', 'permitted', 'indenture', 'notwithstanding', 'preceding', 'clause', 'b', 'ii', 'provisions', 'described', 'issuer', 'company', 'not', 'apply', 'transactions', 'referred', 'sentence', 'restricted', 'subsidiary', 'may', 'consolidate', 'otherwise', 'combine', 'merge', 'transfer', 'part', 'properties', 'assets', 'subsidiary', 'guarantor', 'b', 'subsidiary', 'guarantor', 'may', 'consolidate', 'otherwise', 'combine', 'merge', 'transfer', 'part', 'properties', 'assets', 'subsidiary', 'guarantor', 'company', 'notwithstanding', 'preceding', 'clause', 'b', 'ii', 'not', 'apply', 'transactions', 'referred', 'sentence', 'subsidiary', 'guarantor', 'may', 'consolidate', 'otherwise', 'combine', 'merge', 'affiliate', 'incorporated', 'organized', 'purpose', 'changing', 'legal', 'domicile', 'subsidiary', 'guarantor', 'reincorporating', 'subsidiary', 'guarantor', 'another', 'jurisdiction', 'changing', 'legal', 'form', 'subsidiary', 'guarantor', 'no', 'precise', 'established', 'definition', 'phrase', 'substantially', 'applicable', 'law', 'accordingly', 'certain', 'circumstances', 'may', 'degree', 'uncertainty', 'whether', 'particular', 'transaction', 'would', 'involve', 'substantially', 'property', 'assets', 'person', 'suspension', 'covenants', 'achievement', 'investment', 'grade', 'status', 'date', 'following', 'issue', 'date', 'notes', 'achieved', 'investment', 'grade', 'status', 'no', 'default', 'event', 'default', 'occurred', 'continuing', 'suspension', 'event', 'beginning', 'day', 'continuing', 'reversion', 'date', 'provisions', 'indenture', 'summarized', 'following', 'captions', 'not', 'apply', 'notes', 'limitation', 'indebtedness', 'limitation', 'restricted', 'payments', 'limitation', 'restrictions', 'distributions', 'restricted', 'subsidiaries', 'limitation', 'sales', 'assets', 'subsidiary', 'stock', 'limitation', 'affiliate', 'transactions', 'lines', 'business', 'provisions', 'clause', '3', 'first', 'paragraph', 'covenant', 'described', 'merger', 'consolidation', 'company', 'case', 'related', 'default', 'provision', 'indenture', 'cease', 'effective', 'not', 'applicable', 'company', 'restricted', 'subsidiaries', 'covenants', 'related', 'default', 'provisions', 'apply', 'according', 'terms', 'first', 'day', 'suspension', 'event', 'ceases', 'effect', 'covenants', 'not', 'however', 'effect', 'regard', 'actions', 'company', 'properly', 'taken', 'continuance', 'suspension', 'event', 'limitation', 'restricted', 'payments', 'covenant', 'interpreted', 'effect', 'since', 'date', 'indenture', 'except', 'no', 'default', 'deemed', 'occurred', 'solely', 'reason', 'restricted', 'payment', 'made', 'covenant', 'suspended', 'reversion', 'date', 'indebtedness', 'incurred', 'continuance', 'suspension', 'event', 'classified', 'company', 'option', 'incurred', 'pursuant', 'first', 'paragraph', 'covenant', 'described', 'limitation', 'indebtedness', 'one', 'clauses', 'set', 'forth', 'second', 'paragraph', 'covenant', 'extent', 'indebtedness', 'would', 'permitted', 'incurred', 'thereunder', 'reversion', 'date', 'giving', 'effect', 'indebtedness', 'incurred', 'prior', 'suspension', 'event', 'outstanding', 'reversion', 'date', 'extent', 'indebtedness', 'would', 'not', 'permitted', 'incurred', 'first', 'two', 'paragraphs', 'covenant', 'described', 'limitation', 'indebtedness', 'indebtedness', 'deemed', 'outstanding', 'issue', 'date', 'classified', 'permitted', 'clause', '4', 'b', 'second', 'paragraph', 'covenant', 'described', 'limitation', 'indebtedness', 'issuer', 'give', 'written', 'notice', 'trustee', 'occurrence', 'suspension', 'event', 'well', 'suspension', 'event', 'no', 'longer', 'effect', 'limited', 'condition', 'acquisition', 'irrevocable', 'repayment', 'connection', 'action', 'taken', 'connection', 'limited', 'condition', 'acquisition', 'irrevocable', 'repayment', 'purposes', 'determining', 'compliance', 'provision', 'indenture', 'requires', 'no', 'default', 'event', 'default', 'applicable', 'occurred', 'continuing', 'would', 'result', 'action', 'applicable', 'condition', 'shall', 'option', 'company', 'deemed', 'satisfied', 'long', 'no', 'default', 'event', 'default', 'applicable', '188', 'exists', 'date', 'definitive', 'agreements', 'limited', 'condition', 'acquisition', 'irrevocable', 'repayment', 'entered', 'giving', 'pro', 'forma', 'effect', 'applicable', 'limited', 'condition', 'acquisition', 'irrevocable', 'repayment', 'avoidance', 'doubt', 'company', 'exercised', 'option', 'first', 'sentence', 'paragraph', 'default', 'event', 'default', 'occurs', 'following', 'date', 'definitive', 'agreements', 'applicable', 'limited', 'condition', 'acquisition', 'irrevocable', 'repayment', 'entered', 'prior', 'consummation', 'limited', 'condition', 'acquisition', 'irrevocable', 'repayment', 'default', 'event', 'default', 'shall', 'deemed', 'not', 'occurred', 'continuing', 'purposes', 'determining', 'whether', 'action', 'taken', 'connection', 'limited', 'condition', 'acquisition', 'irrevocable', 'repayment', 'permitted', 'hereunder', 'connection', 'action', 'taken', 'connection', 'limited', 'condition', 'acquisition', 'irrevocable', 'repayment', 'purposes', '1', 'determining', 'compliance', 'provision', 'indenture', 'requires', 'calculation', 'fixed', 'charge', 'coverage', 'ratio', 'consolidated', 'net', 'leverage', 'ratio', 'consolidated', 'secured', 'net', 'leverage', 'ratio', '2', 'testing', 'baskets', 'set', 'forth', 'indenture', 'case', 'option', 'company', 'company', 'election', 'exercise', 'option', 'connection', 'limited', 'condition', 'acquisition', 'irrevocable', 'repayment', 'lca', 'election', 'date', 'determination', 'whether', 'action', 'permitted', 'hereunder', 'may', 'deemed', 'date', 'definitive', 'agreements', 'limited', 'condition', 'acquisition', 'irrevocable', 'repayment', 'entered', 'lca', 'test', 'date', 'giving', 'pro', 'forma', 'effect', 'limited', 'condition', 'acquisition', 'irrevocable', 'repayment', 'transactions', 'entered', 'connection', 'therewith', 'including', 'incurrence', 'indebtedness', 'use', 'proceeds', 'thereof', 'occurred', 'beginning', 'recent', 'four', 'consecutive', 'fiscal', 'quarters', 'ending', 'prior', 'lca', 'test', 'date', 'consolidated', 'financial', 'statements', 'company', 'available', 'company', 'could', 'taken', 'action', 'relevant', 'lca', 'test', 'date', 'compliance', 'ratio', 'basket', 'ratio', 'basket', 'shall', 'deemed', 'complied', 'company', 'made', 'lca', 'election', 'connection', 'subsequent', 'calculation', 'ratio', 'basket', 'availability', 'respect', 'incurrence', 'indebtedness', 'liens', 'making', 'asset', 'dispositions', 'mergers', 'conveyance', 'lease', 'transfer', 'substantially', 'assets', 'company', 'designation', 'unrestricted', 'subsidiary', 'following', 'relevant', 'lca', 'test', 'date', 'prior', 'earlier', 'date', 'limited', 'condition', 'acquisition', 'irrevocable', 'repayment', 'consummated', 'definitive', 'agreement', 'limited', 'condition', 'acquisition', 'irrevocable', 'repayment', 'terminated', 'expires', 'without', 'consummation', 'limited', 'condition', 'acquisition', 'irrevocable', 'repayment', 'ratio', 'basket', 'shall', 'calculated', 'pro', 'forma', 'basis', 'assuming', 'limited', 'condition', 'acquisition', 'irrevocable', 'repayment', 'transactions', 'connection', 'therewith', 'including', 'incurrence', 'indebtedness', 'use', 'proceeds', 'thereof', 'consummated', 'company', 'made', 'lca', 'election', 'ratios', 'baskets', 'compliance', 'determined', 'tested', 'lca', 'test', 'date', 'exceeded', 'result', 'fluctuations', 'ratio', 'basket', 'including', 'due', 'fluctuations', 'consolidated', 'ebitda', 'company', 'person', 'subject', 'limited', 'condition', 'acquisition', 'irrevocable', 'repayment', 'prior', 'consummation', 'relevant', 'transaction', 'action', 'baskets', 'ratios', 'not', 'deemed', 'exceeded', 'result', 'fluctuations', 'additional', 'guarantees', 'company', 'not', 'cause', 'permit', 'restricted', 'subsidiaries', 'not', 'guarantors', 'issuer', 'directly', 'indirectly', 'guarantee', 'indebtedness', 'new', 'revolving', 'credit', 'facility', 'agreement', 'indebtedness', 'incurred', 'clause', '1', 'second', 'paragraph', 'covenant', 'described', 'limitation', 'indebtedness', 'public', 'debt', 'refinancing', 'thereof', 'whole', 'part', 'unless', 'case', 'restricted', 'subsidiary', 'becomes', 'guarantor', 'date', 'guarantee', 'incurred', 'applicable', 'executes', 'delivers', 'trustee', 'supplemental', 'indenture', 'form', 'attached', 'indenture', 'pursuant', 'restricted', 'subsidiary', 'provide', 'guarantee', 'guarantee', 'senior', 'pari', 'passu', 'restricted', 'subsidiary', 'guarantee', 'indebtedness', '189', 'restricted', 'subsidiary', 'not', 'guarantor', 'may', 'become', 'guarantor', 'executes', 'delivers', 'trustee', 'supplemental', 'indenture', 'form', 'attached', 'indenture', 'pursuant', 'restricted', 'subsidiary', 'provide', 'guarantee', 'following', 'provision', 'additional', 'guarantees', 'described', 'subject', 'intercreditor', 'agreement', 'additional', 'intercreditor', 'agreement', 'security', 'granted', 'respect', 'indebtedness', 'subject', 'agreed', 'security', 'principles', 'guarantor', 'provide', 'security', 'certain', 'material', 'assets', 'excluding', 'assets', 'guarantor', 'subject', 'permitted', 'lien', 'time', 'execution', 'supplemental', 'indenture', 'providing', 'security', 'interest', 'would', 'not', 'permitted', 'terms', 'permitted', 'lien', 'terms', 'obligations', 'secured', 'permitted', 'lien', 'secure', 'guarantee', 'basis', 'consistent', 'collateral', 'additional', 'guarantee', 'limited', 'necessary', 'recognize', 'certain', 'defenses', 'generally', 'available', 'guarantors', 'including', 'relate', 'fraudulent', 'conveyance', 'transfer', 'voidable', 'preference', 'financial', 'assistance', 'corporate', 'purpose', 'thin', 'capitalization', 'distributable', 'reserves', 'capital', 'maintenance', 'similar', 'laws', 'regulations', 'defenses', 'affecting', 'rights', 'creditors', 'generally', 'considerations', 'applicable', 'law', 'notwithstanding', 'foregoing', 'company', 'shall', 'not', 'obligated', 'cause', 'restricted', 'subsidiary', 'guarantee', 'notes', 'extent', 'long', 'incurrence', 'guarantee', 'could', 'reasonably', 'expected', 'give', 'rise', 'result', '1', 'violation', 'applicable', 'law', 'regulation', '2', 'liability', 'officers', 'directors', 'except', 'case', 'restricted', 'subsidiary', 'partnership', 'shareholders', 'restricted', 'subsidiary', 'case', 'restricted', 'subsidiary', 'partnership', 'directors', 'shareholders', 'partners', 'partnership', '3', 'cost', 'expense', 'liability', 'obligation', 'including', 'respect', 'taxes', 'reasonable', 'pocket', 'expenses', 'reasonable', 'expenses', 'incurred', 'connection', 'governmental', 'regulatory', 'filings', 'required', 'result', 'measures', 'pursuant', 'clause', '1', 'paragraph', 'undertaken', 'connection', 'guarantee', 'case', 'clauses', '1', '2', '3', 'paragraph', 'can', 'not', 'avoided', 'measures', 'reasonably', 'available', 'company', 'restricted', 'subsidiary', '4', 'inconsistency', 'intercreditor', 'agreement', 'impairment', 'security', 'interest', 'company', 'shall', 'not', 'shall', 'not', 'permit', 'restricted', 'subsidiary', 'take', 'omit', 'take', 'action', 'would', 'result', 'materially', 'impairing', 'security', 'interest', 'respect', 'collateral', 'understood', 'incurrence', 'permitted', 'collateral', 'liens', 'shall', 'no', 'circumstances', 'deemed', 'materially', 'impair', 'security', 'interest', 'respect', 'collateral', 'benefit', 'trustee', 'holders', 'company', 'shall', 'not', 'shall', 'not', 'permit', 'restricted', 'subsidiary', 'grant', 'person', 'security', 'agent', 'benefit', 'trustee', 'holders', 'beneficiaries', 'described', 'security', 'documents', 'lien', 'collateral', 'prohibited', 'covenant', 'entitled', 'limitation', 'liens', 'provided', 'company', 'restricted', 'subsidiaries', 'may', 'incur', 'permitted', 'collateral', 'liens', 'collateral', 'may', 'discharged', 'transferred', 'released', 'accordance', 'indenture', 'intercreditor', 'agreement', 'additional', 'intercreditor', 'agreement', 'applicable', 'security', 'document', 'notwithstanding', 'nothing', 'covenant', 'shall', 'restrict', 'discharge', 'release', 'liens', 'accordance', 'indenture', 'intercreditor', 'agreement', 'additional', 'intercreditor', 'agreement', 'subject', 'foregoing', 'security', 'documents', 'may', 'amended', 'extended', 'renewed', 'restated', 'supplemented', 'otherwise', 'modified', 'released', 'followed', 'substantially', 'concurrent', 'retaking', 'lien', 'least', 'equivalent', 'ranking', 'assets', 'cure', 'ambiguity', 'omission', 'defect', 'inconsistency', 'therein', 'ii', 'provide', 'permitted', 'collateral', 'liens', 'iii', 'add', 'collateral', 'iv', 'effect', 'permitted', 'reorganization', 'collateral', 'may', 'discharged', 'released', 'retaken', 'applicable', 'accordance', 'indenture', 'applicable', 'security', 'documents', 'intercreditor', 'agreement', 'additional', 'intercreditor', 'agreement', 'v', 'make', 'change', 'thereto', 'not', 'adversely', 'affect', 'holders', 'material', 'respect', 'determined', 'company', 'good', 'faith', 'provided', 'however', 'subject', 'foregoing', 'except', 'permitted', 'indenture', 'intercreditor', 'agreement', 'additional', 'intercreditor', 'agreement', 'no', 'security', 'document', 'may', 'amended', 'extended', 'renewed', 'restated', 'otherwise', 'modified', 'released', 'followed', 'substantially', '190', 'concurrent', 'retaking', 'lien', 'least', 'equivalent', 'ranking', 'assets', 'unless', 'contemporaneously', 'amendment', 'extension', 'renewal', 'restatement', 'supplement', 'modification', 'release', 'followed', 'substantially', 'concurrent', 'retaking', 'lien', 'least', 'equivalent', 'ranking', 'assets', 'company', 'delivers', 'security', 'agent', 'trustee', 'either', '1', 'solvency', 'opinion', 'form', 'substance', 'satisfactory', 'security', 'agent', 'trustee', 'independent', 'financial', 'advisor', 'appraiser', 'investment', 'bank', 'international', 'standing', 'confirms', 'solvency', 'company', 'subsidiaries', 'taken', 'whole', 'giving', 'effect', 'transactions', 'related', 'amendment', 'extension', 'renewal', 'restatement', 'supplement', 'modification', 'release', 'followed', 'substantially', 'concurrent', 'retaking', 'lien', 'least', 'equivalent', 'ranking', 'assets', '2', 'certificate', 'chief', 'financial', 'officer', 'board', 'directors', 'relevant', 'person', 'confirms', 'solvency', 'person', 'granting', 'liens', 'giving', 'effect', 'transactions', 'related', 'amendment', 'extension', 'renewal', 'restatement', 'supplement', 'modification', 'replacement', '3', 'opinion', 'counsel', 'subject', 'qualifications', 'customary', 'type', 'opinion', 'counsel', 'form', 'substance', 'satisfactory', 'security', 'agent', 'trustee', 'confirming', 'giving', 'effect', 'transactions', 'related', 'amendment', 'extension', 'renewal', 'restatement', 'supplement', 'modification', 'release', 'followed', 'substantially', 'concurrent', 'retaking', 'lien', 'least', 'equivalent', 'ranking', 'assets', 'lien', 'liens', 'created', 'security', 'document', 'amended', 'extended', 'renewed', 'restated', 'supplemented', 'modified', 'released', 'replaced', 'valid', 'perfected', 'liens', 'not', 'otherwise', 'subject', 'limitation', 'imperfection', 'new', 'hardening', 'period', 'equity', 'law', 'lien', 'liens', 'not', 'otherwise', 'subject', 'immediately', 'prior', 'amendment', 'extension', 'renewal', 'restatement', 'supplement', 'modification', 'replacement', 'new', 'indebtedness', 'secured', 'permitted', 'collateral', 'lien', 'not', 'subject', 'event', 'company', 'restricted', 'subsidiaries', 'comply', 'requirements', 'covenant', 'trustee', 'security', 'agent', 'shall', 'subject', 'customary', 'protections', 'indemnifications', 'satisfaction', 'consent', 'amendments', 'without', 'need', 'instructions', 'holders', 'assurances', 'company', 'procure', 'restricted', 'subsidiaries', 'expense', 'execute', 'acts', 'things', 'provide', 'assurances', 'security', 'agent', 'may', 'reasonably', 'require', 'registering', 'security', 'documents', 'required', 'register', 'perfecting', 'protecting', 'security', 'intended', 'afforded', 'security', 'documents', 'ii', 'security', 'documents', 'become', 'enforceable', 'facilitating', 'realization', 'part', 'assets', 'subject', 'security', 'documents', 'facilitating', 'exercise', 'powers', 'authorities', 'discretions', 'vested', 'security', 'agent', 'receiver', 'part', 'assets', 'company', 'procure', 'restricted', 'subsidiaries', 'execute', 'transfers', 'conveyances', 'assignments', 'releases', 'property', 'whether', 'security', 'agent', 'nominees', 'give', 'notices', 'orders', 'directions', 'security', 'agent', 'may', 'reasonably', 'request', 'lines', 'business', 'company', 'not', 'not', 'permit', 'restricted', 'subsidiary', 'engage', 'business', 'similar', 'business', 'except', 'extent', 'would', 'not', 'material', 'company', 'restricted', 'subsidiaries', 'taken', 'whole', 'maintenance', 'listing', 'issuer', 'use', 'commercially', 'reasonable', 'efforts', 'maintain', 'listing', 'notes', 'official', 'list', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'long', 'notes', 'outstanding', 'provided', 'time', 'issuer', 'determines', 'not', 'maintain', 'listing', 'obtain', 'prior', 'delisting', 'notes', 'official', 'list', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'thereafter', 'use', 'reasonable', 'best', 'efforts', 'maintain', 'listing', 'notes', 'another', 'recognised', 'stock', 'exchange', 'defined', 'section', '1005', 'income', 'tax', 'act', 'united', 'kingdom', '191', 'payments', 'consent', 'company', 'not', 'permit', 'restricted', 'subsidiaries', 'directly', 'indirectly', 'pay', 'cause', 'paid', 'consideration', 'benefit', 'holder', 'notes', 'inducement', 'consent', 'waiver', 'amendment', 'terms', 'provisions', 'indenture', 'notes', 'unless', 'consideration', 'offered', 'paid', 'paid', 'holders', 'notes', 'consent', 'waive', 'agree', 'amend', 'time', 'frame', 'set', 'forth', 'solicitation', 'documents', 'relating', 'consent', 'waiver', 'agreement', 'events', 'default', 'following', 'event', 'default', 'indenture', '1', 'default', 'payment', 'interest', 'additional', 'amounts', 'note', 'due', 'payable', 'continued', '30', 'days', '2', 'default', 'payment', 'principal', 'amount', 'premium', 'note', 'issued', 'indenture', 'due', 'stated', 'maturity', 'upon', 'optional', 'redemption', 'upon', 'required', 'repurchase', 'upon', 'declaration', 'otherwise', '3', 'failure', 'issuer', 'company', 'relevant', 'guarantor', 'comply', 'obligations', 'covenant', 'described', 'certain', 'covenants', 'merger', 'consolidation', '4', 'failure', 'comply', '30', 'days', 'written', 'notice', 'trustee', 'behalf', 'holders', 'holders', 'least', '30', 'aggregate', 'principal', 'amount', 'outstanding', 'notes', 'company', 'obligations', 'covenant', 'described', 'change', 'control', '5', 'failure', 'company', 'restricted', 'subsidiaries', 'comply', '60', 'days', 'written', 'notice', 'trustee', 'behalf', 'holders', 'holders', 'least', '30', 'aggregate', 'principal', 'amount', 'outstanding', 'notes', 'agreements', 'contained', 'indenture', 'case', 'default', 'performance', 'breach', 'covenant', 'agreement', 'specifically', 'addressed', 'clauses', '1', '4', '6', 'default', 'mortgage', 'indenture', 'instrument', 'may', 'issued', 'may', 'secured', 'evidenced', 'indebtedness', 'money', 'borrowed', 'company', 'restricted', 'subsidiaries', 'payment', 'guaranteed', 'company', 'restricted', 'subsidiaries', 'indebtedness', 'owed', 'company', 'restricted', 'subsidiary', 'whether', 'indebtedness', 'guarantee', 'exists', 'created', 'date', 'hereof', 'default', 'caused', 'failure', 'pay', 'principal', 'stated', 'maturity', 'indebtedness', 'immediately', 'upon', 'expiration', 'grace', 'period', 'provided', 'indebtedness', 'payment', 'default', 'b', 'results', 'acceleration', 'indebtedness', 'prior', 'maturity', 'cross', 'acceleration', 'provision', 'case', 'aggregate', 'principal', 'amount', 'indebtedness', 'together', 'aggregate', 'principal', 'amount', 'indebtedness', 'payment', 'default', 'maturity', 'accelerated', 'aggregates', '25', 'million', '7', 'certain', 'events', 'bankruptcy', 'insolvency', 'court', 'protection', 'company', 'issuer', 'significant', 'subsidiary', 'group', 'restricted', 'subsidiaries', 'taken', 'together', 'latest', 'audited', 'consolidated', 'financial', 'statements', 'company', 'restricted', 'subsidiaries', 'would', 'constitute', 'significant', 'subsidiary', 'bankruptcy', 'provisions', '8', 'failure', 'company', 'issuer', 'significant', 'subsidiary', 'group', 'restricted', 'subsidiaries', 'taken', 'together', 'latest', 'audited', 'consolidated', 'financial', 'statements', 'company', 'restricted', 'subsidiaries', 'would', 'constitute', '192', 'significant', 'subsidiary', 'pay', 'final', 'judgments', 'aggregating', 'excess', '25', 'million', 'exclusive', 'amounts', 'solvent', 'insurance', 'company', 'acknowledged', 'liability', 'judgments', 'not', 'paid', 'discharged', 'stayed', 'period', '60', 'days', 'judgment', 'becomes', 'final', 'due', 'judgment', 'default', 'provision', '9', 'security', 'interest', 'security', 'documents', 'collateral', 'fair', 'market', 'value', 'excess', '20', 'million', 'shall', 'time', 'cease', 'full', 'force', 'effect', 'accordance', 'terms', 'relevant', 'security', 'document', 'intercreditor', 'agreement', 'indenture', 'reason', 'satisfaction', 'full', 'obligations', 'indenture', 'release', 'amendment', 'security', 'interest', 'accordance', 'terms', 'indenture', 'intercreditor', 'agreement', 'additional', 'intercreditor', 'agreement', 'security', 'document', 'security', 'interest', 'created', 'thereunder', 'shall', 'declared', 'invalid', 'unenforceable', 'company', 'restricted', 'subsidiary', 'shall', 'assert', 'writing', 'security', 'interest', 'invalid', 'unenforceable', 'default', 'continues', '10', 'days', 'security', 'default', 'provisions', '10', 'guarantee', 'notes', 'company', 'significant', 'subsidiary', 'ceases', 'full', 'force', 'effect', 'accordance', 'terms', 'guarantee', 'indenture', 'declared', 'invalid', 'unenforceable', 'judicial', 'proceeding', 'guarantor', 'denies', 'disaffirms', 'writing', 'obligations', 'guarantee', 'default', 'continues', '10', 'days', 'guarantee', 'provisions', 'however', 'default', 'clauses', '3', '4', '5', '6', '8', 'paragraph', 'not', 'constitute', 'event', 'default', 'trustee', 'holders', 'least', '30', 'aggregate', 'principal', 'amount', 'outstanding', 'notes', 'notify', 'company', 'default', 'respect', 'clauses', '3', '4', '5', '6', '8', 'company', 'not', 'cure', 'default', 'within', 'time', 'specified', 'clauses', '3', '4', '5', '6', '8', 'applicable', 'paragraph', 'receipt', 'notice', 'event', 'default', 'event', 'default', 'described', 'clause', '7', 'occurs', 'continuing', 'trustee', 'written', 'notice', 'company', 'holders', 'least', '30', 'aggregate', 'principal', 'amount', 'outstanding', 'notes', 'written', 'notice', 'company', 'trustee', 'may', 'declare', 'principal', 'premium', 'accrued', 'unpaid', 'interest', 'including', 'additional', 'amounts', 'notes', 'due', 'payable', 'upon', 'declaration', 'principal', 'premium', 'accrued', 'unpaid', 'interest', 'including', 'additional', 'amounts', 'due', 'payable', 'immediately', 'event', 'declaration', 'acceleration', 'notes', 'event', 'default', 'described', 'clause', '6', 'events', 'default', 'occurred', 'continuing', 'declaration', 'acceleration', 'notes', 'shall', 'automatically', 'annulled', 'event', 'default', 'payment', 'default', 'triggering', 'event', 'default', 'pursuant', 'clause', '6', 'shall', 'remedied', 'cured', 'waived', 'holders', 'indebtedness', 'indebtedness', 'gave', 'rise', 'event', 'default', 'shall', 'discharged', 'full', 'within', '30', 'days', 'declaration', 'acceleration', 'respect', 'thereto', '1', 'annulment', 'acceleration', 'notes', 'would', 'not', 'conflict', 'judgment', 'decree', 'court', 'competent', 'jurisdiction', '2', 'existing', 'events', 'default', 'except', 'nonpayment', 'principal', 'premium', 'interest', 'including', 'additional', 'amounts', 'notes', 'became', 'due', 'solely', 'acceleration', 'notes', 'cured', 'waived', 'event', 'default', 'described', 'clause', '7', 'occurs', 'continuing', 'principal', 'premium', 'accrued', 'unpaid', 'interest', 'including', 'additional', 'amounts', 'notes', 'become', 'immediately', 'due', 'payable', 'without', 'declaration', 'act', 'part', 'trustee', 'holders', 'holders', 'majority', 'aggregate', 'principal', 'amount', 'outstanding', 'notes', 'indenture', 'may', 'waive', 'past', 'existing', 'defaults', 'events', 'default', 'except', 'respect', 'nonpayment', 'principal', 'premium', 'interest', 'additional', 'amounts', 'rescind', 'acceleration', 'respect', 'notes', 'consequences', 'rescission', 'would', 'not', 'conflict', 'judgment', 'decree', 'court', 'competent', 'jurisdiction', 'subject', 'provisions', 'indenture', 'relating', 'duties', 'trustee', 'event', 'default', 'occurs', 'continuing', 'trustee', 'no', 'obligation', 'exercise', 'rights', 'powers', 'indenture', 'request', 'direction', 'holders', 'unless', 'holders', 'offered', 'trustee', 'indemnity', 'security', 'including', 'way', 'pre', 'funding', '193', 'satisfactory', 'trustee', 'loss', 'liability', 'cost', 'expense', 'except', 'enforce', 'right', 'receive', 'payment', 'principal', 'interest', 'due', 'no', 'holder', 'may', 'pursue', 'remedy', 'respect', 'indenture', 'notes', 'unless', '1', 'holder', 'previously', 'given', 'trustee', 'written', 'notice', 'event', 'default', 'continuing', '2', 'holders', 'least', '30', 'aggregate', 'principal', 'amount', 'outstanding', 'notes', 'requested', 'writing', 'trustee', 'pursue', 'remedy', '3', 'holders', 'offered', 'writing', 'trustee', 'security', 'indemnity', 'including', 'way', 'pre', 'funding', 'loss', 'liability', 'cost', 'expense', '4', 'trustee', 'not', 'complied', 'request', 'within', '60', 'days', 'receipt', 'written', 'request', 'offer', 'security', 'indemnity', 'pre', 'funding', '5', 'holders', 'majority', 'aggregate', 'principal', 'amount', 'outstanding', 'notes', 'not', 'given', 'trustee', 'written', 'direction', 'opinion', 'trustee', 'inconsistent', 'request', 'within', '60', 'day', 'period', 'subject', 'certain', 'restrictions', 'holders', 'majority', 'aggregate', 'principal', 'amount', 'outstanding', 'notes', 'given', 'right', 'direct', 'time', 'method', 'place', 'conducting', 'proceeding', 'remedy', 'available', 'trustee', 'exercising', 'trust', 'power', 'conferred', 'trustee', 'indenture', 'provide', 'event', 'event', 'default', 'occurred', 'continuing', 'trustee', 'required', 'exercise', 'powers', 'use', 'degree', 'care', 'prudent', 'person', 'would', 'use', 'conduct', 'affairs', 'trustee', 'however', 'may', 'refuse', 'follow', 'direction', 'conflicts', 'law', 'fiduciary', 'duties', 'indenture', 'trustee', 'determines', 'unduly', 'prejudicial', 'rights', 'holder', 'would', 'involve', 'trustee', 'personal', 'liability', 'prior', 'taking', 'action', 'indenture', 'trustee', 'entitled', 'indemnification', 'security', 'including', 'way', 'pre', 'funding', 'satisfactory', 'losses', 'expenses', 'caused', 'taking', 'not', 'taking', 'action', 'indenture', 'provide', 'default', 'occurs', 'continuing', 'responsible', 'officer', 'trustee', 'informed', 'occurrence', 'company', 'trustee', 'must', 'give', 'notice', 'default', 'holders', 'within', '90', 'days', 'notified', 'company', 'except', 'case', 'default', 'payment', 'principal', 'premium', 'interest', 'note', 'trustee', 'may', 'withhold', 'notice', 'long', 'committee', 'trust', 'officers', 'trustee', 'good', 'faith', 'determines', 'withholding', 'notice', 'interests', 'holders', 'company', 'required', 'deliver', 'trustee', 'within', '120', 'days', 'end', 'fiscal', 'year', 'officer', 'certificate', 'indicating', 'whether', 'signers', 'thereof', 'know', 'default', 'occurred', 'previous', 'year', 'company', 'required', 'deliver', 'trustee', 'within', '30', 'days', 'occurrence', 'thereof', 'written', 'notice', 'events', 'aware', 'would', 'constitute', 'certain', 'defaults', 'status', 'action', 'company', 'taking', 'proposes', 'take', 'respect', 'thereof', 'notes', 'provide', 'trustee', 'take', 'action', 'behalf', 'holders', 'certain', 'circumstances', 'trustee', 'indemnified', 'secured', 'pre', 'funded', 'satisfaction', 'may', 'not', 'possible', 'trustee', 'take', 'certain', 'actions', 'relation', 'notes', 'accordingly', 'circumstances', 'trustee', 'unable', 'take', 'action', 'notwithstanding', 'provision', 'indemnity', 'security', 'holders', 'take', 'action', 'directly', 'amendments', 'waivers', 'subject', 'certain', 'exceptions', 'note', 'documents', 'may', 'amended', 'supplemented', 'otherwise', 'modified', 'consent', 'holders', 'majority', 'aggregate', 'principal', 'amount', 'notes', 'outstanding', 'including', 'consents', 'obtained', 'connection', 'purchase', 'tender', 'offer', 'exchange', 'offer', 'notes', 'subject', 'certain', 'exceptions', 'default', 'compliance', 'provisions', 'thereof', 'may', 'waived', 'consent', 'holders', 'majority', 'aggregate', 'principal', 'amount', 'notes', 'outstanding', 'including', 'consents', 'obtained', 'connection', 'purchase', 'tender', 'offer', 'exchange', 'offer', 'notes', 'provided', 'amendment', 'waiver', 'modification', 'amend', 'one', 'series', 'notes', 'consent', 'majority', 'principal', 'amount', 'outstanding', 'notes', 'series', 'shall', 'required', 'however', 'without', 'consent', 'holders', 'holding', 'not', 'less', '90', '194', 'outstanding', 'aggregate', 'principal', 'amount', 'notes', 'affected', 'amendment', 'waiver', 'modification', 'amend', 'waive', 'modify', 'one', 'series', 'notes', 'without', 'consent', 'holders', 'holding', 'not', 'less', '90', 'outstanding', 'aggregate', 'principal', 'amount', 'notes', 'series', 'amended', 'waived', 'modified', 'amendment', 'waiver', 'may', 'not', 'respect', 'series', 'notes', 'held', 'non', 'consenting', 'holder', '1', 'reduce', 'principal', 'amount', 'notes', 'whose', 'holders', 'must', 'consent', 'amendment', '2', 'reduce', 'stated', 'rate', 'extend', 'stated', 'time', 'payment', 'interest', 'note', '3', 'reduce', 'principal', 'extend', 'stated', 'maturity', 'note', '4', 'reduce', 'premium', 'payable', 'upon', 'redemption', 'note', 'change', 'time', 'note', 'may', 'redeemed', 'case', 'described', 'optional', 'redemption', '5', 'make', 'note', 'payable', 'money', 'stated', 'note', '6', 'amend', 'contractual', 'right', 'holder', 'bring', 'suit', 'payment', 'principal', 'premium', 'interest', 'note', 'respective', 'due', 'dates', 'expressed', 'provided', 'note', '7', 'make', 'change', 'provision', 'indenture', 'described', 'withholding', 'taxes', 'adversely', 'affects', 'right', 'holder', 'notes', 'material', 'respect', 'amends', 'terms', 'notes', 'way', 'would', 'result', 'loss', 'exemption', 'taxes', 'described', 'thereunder', 'exemption', 'obligation', 'withhold', 'deduct', 'taxes', 'described', 'thereunder', 'unless', 'payor', 'agrees', 'pay', 'additional', 'amounts', 'respect', 'thereof', '8', 'release', 'security', 'interest', 'granted', 'benefit', 'holders', 'substantially', 'collateral', 'pursuant', 'terms', 'indenture', 'security', 'documents', 'ii', 'guarantor', 'obligations', 'guarantee', 'pursuant', 'terms', 'indenture', 'case', 'permitted', 'intercreditor', 'agreement', 'additional', 'intercreditor', 'agreement', '9', 'waive', 'default', 'event', 'default', 'respect', 'non', 'payment', 'principal', 'premium', 'interest', 'except', 'pursuant', 'rescission', 'acceleration', 'notes', 'holders', 'least', 'majority', 'aggregate', 'principal', 'amount', 'notes', 'waiver', 'payment', 'default', 'resulted', 'acceleration', '10', 'make', 'change', 'amendment', 'waiver', 'provisions', 'require', 'holders', 'consent', 'described', 'sentence', 'notwithstanding', 'foregoing', 'without', 'consent', 'holder', 'company', 'trustee', 'parties', 'thereto', 'applicable', 'may', 'amend', 'supplement', 'note', 'documents', '1', 'cure', 'ambiguity', 'omission', 'defect', 'error', 'inconsistency', 'conform', 'provision', 'description', 'notes', 'reduce', 'minimum', 'denomination', 'notes', '2', 'provide', 'assumption', 'successor', 'person', 'obligations', 'company', 'issuer', 'guarantor', 'note', 'document', '3', 'provide', 'uncertificated', 'notes', 'addition', 'place', 'certificated', 'notes', 'provided', 'uncertificated', 'notes', 'issued', 'registered', 'form', 'purposes', 'section', '163', 'f', 'code', 'change', 'minimum', 'denomination', 'notes', '4', 'add', 'covenants', 'provide', 'guarantee', 'benefit', 'holders', 'surrender', 'right', 'power', 'conferred', 'upon', 'company', 'restricted', 'subsidiary', '5', 'make', 'change', 'not', 'adversely', 'affect', 'rights', 'holder', 'material', 'respect', 'would', 'provide', 'additional', 'rights', 'benefits', 'holders', 'trustee', '195', '6', 'company', 'election', 'comply', 'requirement', 'sec', 'connection', 'qualification', 'indenture', 'trust', 'indenture', 'act', 'qualification', 'required', '7', 'make', 'provisions', 'necessary', 'determined', 'good', 'faith', 'company', 'issuance', 'additional', 'notes', '8', 'provide', 'restricted', 'subsidiary', 'provide', 'guarantee', 'accordance', 'covenant', 'described', 'certain', 'covenants', 'limitation', 'indebtedness', 'certain', 'covenants', 'additional', 'guarantees', 'add', 'guarantees', 'respect', 'notes', 'add', 'security', 'benefit', 'notes', 'confirm', 'evidence', 'release', 'termination', 'discharge', 'retaking', 'guarantee', 'lien', 'including', 'collateral', 'security', 'documents', 'respect', 'securing', 'notes', 'release', 'termination', 'discharge', 'retaking', 'provided', 'indenture', 'intercreditor', 'agreement', 'additional', 'intercreditor', 'agreement', 'security', 'documents', '9', 'conform', 'text', 'indenture', 'guarantees', 'security', 'documents', 'notes', 'provision', 'description', 'notes', 'extent', 'provision', 'description', 'notes', 'intended', 'verbatim', 'recitation', 'provision', 'indenture', 'guarantee', 'security', 'documents', 'notes', '10', 'evidence', 'provide', 'acceptance', 'appointment', 'indenture', 'successor', 'trustee', 'pursuant', 'requirements', 'thereof', 'provide', 'accession', 'trustee', 'note', 'document', '11', 'case', 'security', 'documents', 'mortgage', 'pledge', 'hypothecate', 'grant', 'security', 'interest', 'favor', 'security', 'agent', 'property', 'required', 'mortgaged', 'pledged', 'hypothecated', 'security', 'interest', 'required', 'granted', 'security', 'agent', 'extent', 'necessary', 'grant', 'security', 'interest', 'benefit', 'person', 'provided', 'granting', 'security', 'interest', 'not', 'prohibited', 'indenture', 'covenant', 'described', 'certain', 'covenants', 'impairment', 'security', 'interest', 'complied', 'trustee', 'shall', 'entitled', 'receive', 'rely', 'absolutely', 'evidence', 'deems', 'appropriate', 'including', 'officer', 'certificates', 'opinions', 'counsel', 'consent', 'holders', 'not', 'necessary', 'indenture', 'approve', 'particular', 'form', 'proposed', 'amendment', 'supplement', 'note', 'document', 'sufficient', 'consent', 'approves', 'substance', 'proposed', 'amendment', 'supplement', 'consent', 'amendment', 'supplement', 'waiver', 'indenture', 'holder', 'notes', 'given', 'connection', 'tender', 'holder', 'notes', 'not', 'rendered', 'invalid', 'tender', 'avoidance', 'doubt', 'no', 'amendment', 'deletion', 'actions', 'taken', 'compliance', 'covenants', 'contained', 'indenture', 'shall', 'deemed', 'impair', 'affect', 'rights', 'holders', 'receive', 'payment', 'principal', 'premium', 'interest', 'notes', 'acts', 'holders', 'determining', 'whether', 'holders', 'required', 'aggregate', 'principal', 'amount', 'notes', 'concurred', 'direction', 'waiver', 'consent', 'notes', 'owned', 'company', 'person', 'directly', 'indirectly', 'controlled', 'controlled', 'direct', 'indirect', 'common', 'control', 'company', 'disregarded', 'deemed', 'not', 'outstanding', 'defeasance', 'issuer', 'time', 'may', 'terminate', 'guarantor', 'obligations', 'notes', 'indenture', 'legal', 'defeasance', 'cure', 'existing', 'defaults', 'events', 'default', 'except', 'certain', 'obligations', 'including', 'respecting', 'defeasance', 'trust', 'rights', 'powers', 'trusts', 'duties', 'immunities', 'indemnities', 'trustee', 'obligations', 'issuer', 'connection', 'therewith', 'obligations', 'concerning', 'issuing', 'temporary', 'notes', 'registrations', 'notes', 'mutilated', 'destroyed', 'lost', 'stolen', 'notes', 'maintenance', 'office', 'agency', 'payment', 'money', 'security', 'payments', 'held', 'trust', 'subject', 'foregoing', 'issuer', 'exercises', 'legal', 'defeasance', 'option', 'security', 'documents', 'effect', 'time', 'terminate', 'respect', 'defeasance', 'trust', '196', 'issuer', 'time', 'may', 'terminate', 'guarantor', 'obligations', 'covenants', 'described', 'certain', 'covenants', 'respect', 'clauses', '1', '2', 'covenants', 'described', 'certain', 'covenants', 'merger', 'consolidation', 'issuer', 'certain', 'covenants', 'merger', 'consolidation', 'company', 'covenant', 'described', 'certain', 'covenants', 'merger', 'consolidation', 'subsidiary', 'guarantors', 'change', 'control', 'default', 'provisions', 'relating', 'covenants', 'described', 'events', 'default', 'operation', 'cross', 'default', 'upon', 'payment', 'default', 'cross', 'acceleration', 'provisions', 'bankruptcy', 'provisions', 'judgment', 'default', 'provision', 'guarantee', 'provision', 'security', 'default', 'provision', 'described', 'events', 'default', 'covenant', 'defeasance', 'issuer', 'option', 'time', 'may', 'exercise', 'legal', 'defeasance', 'option', 'notwithstanding', 'prior', 'exercise', 'covenant', 'defeasance', 'option', 'issuer', 'exercises', 'legal', 'defeasance', 'option', 'payment', 'notes', 'may', 'not', 'accelerated', 'event', 'default', 'respect', 'notes', 'issuer', 'exercises', 'covenant', 'defeasance', 'option', 'respect', 'notes', 'payment', 'notes', 'may', 'not', 'accelerated', 'event', 'default', 'specified', 'clause', '3', 'respect', 'clauses', '1', '2', 'covenants', 'described', 'certain', 'covenants', 'merger', 'consolidation', 'issuer', 'certain', 'covenants', 'merger', 'consolidation', 'company', 'covenant', 'described', 'certain', 'covenants', 'merger', 'consolidation', 'subsidiary', 'guarantors', '4', '5', '6', '7', '8', '9', '10', 'events', 'default', 'order', 'exercise', 'either', 'defeasance', 'option', 'issuer', 'must', 'irrevocably', 'deposit', 'trust', 'defeasance', 'trust', 'trustee', 'entity', 'designated', 'trustee', 'purpose', 'cash', 'dollars', 'sterling', 'sterling', 'dollar', 'denominated', 'government', 'obligations', 'combination', 'thereof', 'amounts', 'sufficient', 'opinion', 'nationally', 'recognized', 'investment', 'bank', 'appraisal', 'firm', 'firm', 'independent', 'public', 'accountants', 'payment', 'principal', 'premium', 'interest', 'notes', 'redemption', 'maturity', 'case', 'may', 'must', 'comply', 'certain', 'conditions', 'including', 'delivery', 'trustee', '1', 'opinion', 'counsel', 'effect', 'holders', 'beneficial', 'owners', 'notes', 'not', 'recognize', 'income', 'gain', 'loss', 'u', 'federal', 'income', 'tax', 'purposes', 'result', 'deposit', 'defeasance', 'case', 'legal', 'defeasance', 'opinion', 'counsel', 'must', 'based', 'ruling', 'u', 'internal', 'revenue', 'service', 'change', 'applicable', 'u', 'federal', 'income', 'tax', 'law', 'since', 'issuance', 'notes', '2', 'officer', 'certificate', 'stating', 'deposit', 'not', 'made', 'issuer', 'intent', 'defeating', 'hindering', 'delaying', 'defrauding', 'preferring', 'creditors', 'issuer', '3', 'officer', 'certificate', 'opinion', 'counsel', 'opinion', 'counsel', 'may', 'subject', 'customary', 'assumptions', 'exclusions', 'stating', 'conditions', 'precedent', 'provided', 'relating', 'legal', 'defeasance', 'covenant', 'defeasance', 'case', 'may', 'complied', '4', 'opinion', 'counsel', 'effect', 'trust', 'resulting', 'deposit', 'not', 'constitute', 'qualified', 'regulated', 'investment', 'company', 'u', 'investment', 'company', 'act', '1940', '5', 'issuer', 'delivers', 'trustee', 'documents', 'information', 'trustee', 'may', 'reasonably', 'require', 'connection', 'either', 'defeasance', 'option', 'satisfaction', 'discharge', 'indenture', 'rights', 'trustee', 'holders', 'security', 'document', 'discharged', 'cease', 'effect', 'except', 'surviving', 'rights', 'conversion', 'transfer', 'exchange', 'notes', 'expressly', 'provided', 'indenture', 'outstanding', 'notes', '1', 'either', 'notes', 'previously', 'authenticated', 'delivered', 'certain', 'lost', 'stolen', 'destroyed', 'notes', 'certain', 'notes', 'provision', 'payment', 'previously', 'made', 'thereafter', 'funds', 'released', 'company', 'delivered', 'trustee', 'cancellation', 'b', 'notes', 'not', 'previously', 'delivered', 'trustee', 'cancellation', 'become', 'due', 'payable', 'ii', 'become', 'due', 'payable', 'stated', 'maturity', 'within', 'one', 'year', 'iii', 'called', 'redemption', 'within', 'one', 'year', '197', 'arrangements', 'satisfactory', 'trustee', 'giving', 'written', 'notice', 'redemption', 'trustee', 'name', 'expense', 'issuer', '2', 'issuer', 'irrevocably', 'deposited', 'caused', 'deposited', 'trustee', 'entity', 'designated', 'trustee', 'purpose', 'dollars', 'sterling', 'sterling', 'dollar', 'denominated', 'government', 'obligations', 'combination', 'thereof', 'amount', 'sufficient', 'pay', 'discharge', 'entire', 'indebtedness', 'notes', 'not', 'previously', 'delivered', 'trustee', 'cancellation', 'principal', 'premium', 'interest', 'date', 'deposit', 'case', 'notes', 'become', 'due', 'payable', 'stated', 'maturity', 'redemption', 'date', 'case', 'may', '3', 'issuer', 'paid', 'caused', 'paid', 'sums', 'payable', 'indenture', '4', 'issuer', 'delivered', 'irrevocable', 'instructions', 'indenture', 'apply', 'deposited', 'money', 'towards', 'payment', 'notes', 'maturity', 'redemption', 'date', 'case', 'may', '5', 'issuer', 'delivered', 'trustee', 'officer', 'certificate', 'opinion', 'counsel', 'effect', 'conditions', 'precedent', 'indenture', 'relating', 'satisfaction', 'discharge', 'indenture', 'complied', 'provided', 'counsel', 'may', 'rely', 'officer', 'certificate', 'matters', 'fact', 'including', 'compliance', 'foregoing', 'clauses', '1', '2', '3', 'no', 'personal', 'liability', 'directors', 'officers', 'employees', 'shareholders', 'no', 'director', 'officer', 'employee', 'incorporator', 'shareholder', 'company', 'subsidiaries', 'affiliates', 'shall', 'liability', 'obligations', 'company', 'note', 'documents', 'claim', 'based', 'respect', 'reason', 'obligations', 'creation', 'holder', 'accepting', 'note', 'waives', 'releases', 'liability', 'waiver', 'release', 'part', 'consideration', 'issuance', 'notes', 'waiver', 'may', 'not', 'effective', 'waive', 'liabilities', 'u', 'federal', 'securities', 'laws', 'view', 'sec', 'waiver', 'public', 'policy', 'concerning', 'trustee', 'certain', 'agents', 'u', 'bank', 'trustees', 'limited', 'appointed', 'trustee', 'indenture', 'indenture', 'provide', 'except', 'continuance', 'event', 'default', 'trustee', 'perform', 'duties', 'set', 'forth', 'specifically', 'indenture', 'existence', 'event', 'default', 'trustee', 'exercise', 'rights', 'powers', 'vested', 'indenture', 'use', 'degree', 'care', 'prudent', 'person', 'would', 'use', 'conducting', 'affairs', 'permissive', 'rights', 'trustee', 'take', 'refrain', 'taking', 'action', 'enumerated', 'indenture', 'not', 'construed', 'obligation', 'duty', 'indenture', 'impose', 'certain', 'limitations', 'rights', 'trustee', 'become', 'creditor', 'company', 'obtain', 'payment', 'claims', 'certain', 'cases', 'realize', 'certain', 'property', 'received', 'respect', 'claim', 'security', 'otherwise', 'trustee', 'permitted', 'engage', 'transactions', 'company', 'affiliates', 'subsidiaries', 'indenture', 'set', 'terms', 'trustee', 'may', 'retire', 'removed', 'replaced', 'terms', 'include', 'among', 'others', '1', 'trustee', 'may', 'removed', 'time', 'holders', 'majority', 'principal', 'amount', 'outstanding', 'notes', 'may', 'resign', 'time', 'giving', 'written', 'notice', 'company', '2', 'trustee', 'time', 'acquires', 'conflict', 'interest', 'not', 'eliminated', 'b', 'becomes', 'incapable', 'acting', 'trustee', 'becomes', 'insolvent', 'bankrupt', 'company', 'may', 'remove', 'trustee', 'holder', 'bona', 'fide', 'holder', 'not', 'less', 'six', 'months', 'may', 'petition', 'court', 'removal', 'trustee', 'appointment', 'successor', 'trustee', 'removal', 'resignation', 'trustee', 'shall', 'not', 'become', 'effective', 'acceptance', 'appointment', 'successor', 'trustee', 'indenture', 'contain', 'customary', 'provisions', 'indemnification', 'trustee', 'loss', 'liability', 'taxes', 'expenses', 'incurred', 'without', 'fraud', 'gross', 'negligence', 'willful', 'misconduct', 'part', 'arising', 'connection', 'acceptance', 'administration', 'indenture', 'notices', 'notices', 'holders', 'notes', 'validly', 'given', 'mailed', 'respective', 'addresses', 'register', 'holders', 'notes', 'maintained', 'registrar', 'addition', 'long', 'notes', 'listed', 'official', 'list', 'channel', 'islands', 'securities', 'exchange', '198', 'authority', 'limited', 'rules', 'channel', 'islands', 'securities', 'exchange', 'require', 'extent', 'manner', 'permitted', 'rules', 'issuer', 'publish', 'notices', 'respect', 'notes', 'official', 'website', 'channel', 'islands', 'securities', 'exchange', 'www', 'thecise', 'com', 'addition', 'long', 'notes', 'represented', 'global', 'notes', 'notices', 'holders', 'notes', 'delivered', 'english', 'dtc', 'euroclear', 'clearstream', 'applicable', 'give', 'notices', 'holders', 'book', 'entry', 'interests', 'notice', 'shall', 'deemed', 'given', 'date', 'publication', 'published', 'different', 'dates', 'first', 'date', 'publication', 'made', 'provided', 'notices', 'mailed', 'notice', 'shall', 'deemed', 'given', 'later', 'publication', 'seventh', 'day', 'mailed', 'notice', 'communication', 'mailed', 'holder', 'shall', 'mailed', 'person', 'first', 'class', 'mail', 'equivalent', 'means', 'shall', 'sufficiently', 'given', 'holder', 'mailed', 'within', 'time', 'prescribed', 'failure', 'mail', 'notice', 'communication', 'holder', 'defect', 'shall', 'not', 'affect', 'sufficiency', 'respect', 'holders', 'notice', 'communication', 'mailed', 'manner', 'provided', 'duly', 'given', 'whether', 'not', 'addressee', 'receives', 'prescription', 'claims', 'issuer', 'guarantor', 'payment', 'principal', 'premium', 'notes', 'prescribed', 'ten', 'years', 'applicable', 'due', 'date', 'payment', 'thereof', 'claims', 'issuer', 'payment', 'interest', 'notes', 'prescribed', 'five', 'years', 'applicable', 'due', 'date', 'payment', 'interest', 'currency', 'indemnity', 'u', 'dollar', 'sole', 'currency', 'account', 'payment', 'sums', 'payable', 'company', 'guarantors', 'connection', 'dollar', 'notes', 'relevant', 'guarantees', 'case', 'may', 'including', 'damages', 'sterling', 'sole', 'currency', 'account', 'payment', 'sums', 'payable', 'company', 'guarantors', 'connection', 'sterling', 'notes', 'relevant', 'guarantees', 'case', 'may', 'including', 'damages', 'required', 'currency', 'amount', 'received', 'recovered', 'currency', 'required', 'currency', 'whether', 'result', 'enforcement', 'judgment', 'order', 'court', 'jurisdiction', 'winding', 'dissolution', 'issuer', 'guarantor', 'otherwise', 'holder', 'trustee', 'respect', 'sum', 'expressed', 'due', 'issuer', 'guarantor', 'constitute', 'discharge', 'issuer', 'guarantor', 'applicable', 'extent', 'amount', 'required', 'currency', 'recipient', 'able', 'purchase', 'amount', 'received', 'recovered', 'currency', 'date', 'receipt', 'recovery', 'not', 'practicable', 'make', 'purchase', 'date', 'first', 'date', 'practicable', 'amount', 'required', 'currency', 'less', 'amount', 'required', 'currency', 'expressed', 'due', 'recipient', 'trustee', 'note', 'issuer', 'guarantors', 'indemnify', 'loss', 'sustained', 'recipient', 'trustee', 'result', 'event', 'issuer', 'guarantors', 'indemnify', 'recipient', 'trustee', 'joint', 'several', 'basis', 'cost', 'making', 'purchase', 'purposes', 'currency', 'indemnity', 'provision', 'prima', 'facie', 'evidence', 'matter', 'stated', 'therein', 'holder', 'note', 'trustee', 'certify', 'manner', 'reasonably', 'satisfactory', 'issuer', 'indicating', 'sources', 'information', 'used', 'loss', 'incurred', 'making', 'purchase', 'indemnities', 'constitute', 'separate', 'independent', 'obligation', 'issuer', 'guarantors', 'obligations', 'give', 'rise', 'separate', 'independent', 'cause', 'action', 'apply', 'irrespective', 'waiver', 'granted', 'holder', 'note', 'trustee', 'waiver', 'indemnities', 'set', 'herein', 'continue', 'full', 'force', 'effect', 'despite', 'judgment', 'order', 'claim', 'proof', 'liquidated', 'amount', 'respect', 'sum', 'due', 'note', 'guarantee', 'trustee', 'except', 'otherwise', 'specifically', 'set', 'forth', 'indenture', 'purposes', 'determining', 'compliance', 'sterling', 'denominated', 'restriction', 'herein', 'sterling', 'equivalent', 'amount', 'purposes', 'hereof', 'denominated', 'non', 'sterling', 'currency', 'shall', 'calculated', 'based', 'relevant', 'currency', 'exchange', 'rate', 'effect', 'date', 'non', 'sterling', 'amount', 'incurred', 'made', 'case', 'may', '199', 'enforceability', 'judgments', 'since', 'substantially', 'assets', 'company', 'held', 'subsidiaries', 'located', 'outside', 'united', 'states', 'judgment', 'obtained', 'united', 'states', 'issuer', 'guarantor', 'including', 'judgments', 'respect', 'payment', 'principal', 'premium', 'interest', 'additional', 'amounts', 'redemption', 'price', 'purchase', 'price', 'respect', 'notes', 'guarantees', 'may', 'not', 'collectable', 'within', 'united', 'states', 'consent', 'jurisdiction', 'service', 'relation', 'legal', 'action', 'proceedings', 'arising', 'connection', 'indenture', 'notes', 'guarantees', 'issuer', 'guarantor', 'indenture', 'irrevocably', 'submit', 'jurisdiction', 'federal', 'state', 'courts', 'borough', 'manhattan', 'city', 'new', 'york', 'county', 'state', 'new', 'york', 'united', 'states', 'governing', 'law', 'indenture', 'notes', 'including', 'guarantees', 'rights', 'duties', 'parties', 'thereunder', 'governed', 'construed', 'accordance', 'laws', 'state', 'new', 'york', 'certain', 'definitions', 'acquired', 'indebtedness', 'means', 'indebtedness', '1', 'person', 'subsidiaries', 'existing', 'time', 'person', 'becomes', 'restricted', 'subsidiary', '2', 'assumed', 'connection', 'acquisition', 'assets', 'person', 'case', 'whether', 'not', 'incurred', 'person', 'connection', 'person', 'becoming', 'restricted', 'subsidiary', 'acquisition', '3', 'person', 'time', 'person', 'merges', 'consolidates', 'otherwise', 'combines', 'company', 'restricted', 'subsidiary', 'except', 'otherwise', 'specifically', 'set', 'forth', 'indenture', 'acquired', 'indebtedness', 'shall', 'deemed', 'incurred', 'respect', 'clause', '1', 'preceding', 'sentence', 'date', 'person', 'becomes', 'restricted', 'subsidiary', 'respect', 'clause', '2', 'preceding', 'sentence', 'date', 'consummation', 'acquisition', 'assets', 'respect', 'clause', '3', 'preceding', 'sentence', 'date', 'relevant', 'merger', 'consolidation', 'combination', 'additional', 'assets', 'means', '1', 'property', 'assets', 'indebtedness', 'capital', 'stock', 'used', 'used', 'company', 'restricted', 'subsidiary', 'otherwise', 'useful', 'similar', 'business', 'understood', 'capital', 'expenditures', 'property', 'assets', 'already', 'used', 'used', 'company', 'restricted', 'subsidiary', 'otherwise', 'useful', 'similar', 'business', 'replace', 'property', 'assets', 'subject', 'asset', 'disposition', 'shall', 'deemed', 'investment', 'additional', 'assets', '2', 'capital', 'stock', 'person', 'engaged', 'similar', 'business', 'becomes', 'restricted', 'subsidiary', 'result', 'acquisition', 'capital', 'stock', 'company', 'restricted', 'subsidiary', '3', 'capital', 'stock', 'constituting', 'minority', 'interest', 'person', 'time', 'restricted', 'subsidiary', 'additional', 'notes', 'proceeds', 'loan', 'agreement', 'means', 'loan', 'agreement', 'issuer', 'aston', 'martin', 'lagonda', 'limited', 'pursuant', 'issuer', 'lends', 'terms', 'substantially', 'identical', 'contained', 'notes', 'proceeds', 'loan', 'agreement', 'proceeds', 'issuance', 'additional', 'notes', 'aston', 'martin', 'lagonda', 'limited', 'loan', 'pursuant', 'agreement', 'additional', 'notes', 'proceeds', 'loan', 'affiliate', 'specified', 'person', 'means', 'person', 'directly', 'indirectly', 'controlling', 'controlled', 'direct', 'indirect', 'common', 'control', 'specified', 'person', 'purposes', 'definition', 'control', 'used', 'respect', 'person', 'means', 'power', 'direct', 'management', 'policies', 'person', 'directly', 'indirectly', 'whether', 'ownership', 'voting', 'securities', 'contract', 'otherwise', 'terms', 'controlling', 'controlled', 'meanings', 'correlative', 'foregoing', '200', 'agreed', 'security', 'principles', 'means', 'agreed', 'security', 'principles', 'set', 'schedule', 'new', 'revolving', 'credit', 'facility', 'agreement', 'effect', 'issue', 'date', 'applied', 'mutatis', 'mutandis', 'respect', 'notes', 'good', 'faith', 'judgment', 'company', 'asset', 'disposition', 'means', 'direct', 'indirect', 'sale', 'lease', 'operating', 'lease', 'entered', 'ordinary', 'course', 'business', 'transfer', 'issuance', 'disposition', 'series', 'related', 'sales', 'leases', 'operating', 'leases', 'entered', 'ordinary', 'course', 'business', 'transfers', 'issuances', 'dispositions', 'part', 'common', 'plan', 'shares', 'capital', 'stock', 'subsidiary', 'directors', 'qualifying', 'shares', 'property', 'assets', 'referred', 'purposes', 'definition', 'disposition', 'company', 'restricted', 'subsidiaries', 'including', 'disposition', 'means', 'merger', 'consolidation', 'similar', 'transaction', 'notwithstanding', 'preceding', 'provisions', 'definition', 'following', 'items', 'shall', 'not', 'deemed', 'asset', 'dispositions', '1', 'disposition', 'restricted', 'subsidiary', 'company', 'company', 'restricted', 'subsidiary', 'restricted', 'subsidiary', '2', 'disposition', 'cash', 'cash', 'equivalents', 'temporary', 'cash', 'investments', 'investment', 'grade', 'securities', '3', 'disposition', 'inventory', 'assets', 'ordinary', 'course', 'business', '4', 'disposition', 'obsolete', 'surplus', 'worn', 'equipment', 'assets', 'equipment', 'assets', 'no', 'longer', 'useful', 'conduct', 'business', 'company', 'restricted', 'subsidiaries', '5', 'transactions', 'permitted', 'certain', 'covenants', 'merger', 'consolidation', 'company', 'transaction', 'constitutes', 'change', 'control', '6', 'issuance', 'capital', 'stock', 'restricted', 'subsidiary', 'company', 'another', 'restricted', 'subsidiary', 'part', 'pursuant', 'equity', 'incentive', 'compensation', 'plan', 'approved', 'board', 'directors', 'company', '7', 'dispositions', 'capital', 'stock', 'properties', 'assets', 'single', 'transaction', 'series', 'related', 'transactions', 'fair', 'market', 'value', 'determined', 'good', 'faith', 'company', 'less', '10', 'million', 'greater', '6', '0', 'consolidated', 'ebitda', '8', 'restricted', 'payment', 'permitted', 'made', 'made', 'covenant', 'described', 'certain', 'covenants', 'limitation', 'restricted', 'payments', 'making', 'permitted', 'payment', 'permitted', 'investment', 'solely', 'purposes', 'clause', '3', 'first', 'paragraph', 'certain', 'covenants', 'limitation', 'sales', 'assets', 'subsidiary', 'stock', 'asset', 'sales', 'proceeds', 'used', 'make', 'restricted', 'payments', 'permitted', 'investments', '9', 'dispositions', 'connection', 'permitted', 'liens', '10', 'dispositions', 'receivables', 'connection', 'compromise', 'settlement', 'collection', 'thereof', 'ordinary', 'course', 'business', 'bankruptcy', 'similar', 'proceedings', 'exclusive', 'factoring', 'similar', 'arrangements', '11', 'licensing', 'sub', 'licensing', 'intellectual', 'property', 'general', 'intangibles', 'licenses', 'sub', 'licenses', 'leases', 'subleases', 'property', 'case', 'ordinary', 'course', 'business', '12', 'foreclosure', 'condemnation', 'similar', 'action', 'respect', 'property', 'assets', '13', 'sale', 'discount', 'without', 'recourse', 'customary', 'commercially', 'reasonable', 'terms', 'credit', 'management', 'purposes', 'accounts', 'receivable', 'notes', 'receivable', 'arising', 'ordinary', 'course', 'business', 'conversion', 'exchange', 'accounts', 'receivable', 'notes', 'receivable', '14', 'disposition', 'capital', 'stock', 'indebtedness', 'securities', 'unrestricted', 'subsidiary', '15', 'disposition', 'capital', 'stock', 'restricted', 'subsidiary', 'pursuant', 'agreement', 'obligation', 'person', 'company', 'restricted', '201', 'subsidiary', 'restricted', 'subsidiary', 'acquired', 'restricted', 'subsidiary', 'acquired', 'business', 'assets', 'newly', 'formed', 'connection', 'acquisition', 'made', 'part', 'acquisition', 'case', 'comprising', 'portion', 'consideration', 'respect', 'sale', 'acquisition', '16', 'surrender', 'waiver', 'contract', 'rights', 'settlement', 'release', 'surrender', 'contract', 'tort', 'claims', 'kind', '17', 'disposition', 'assets', 'person', 'providing', 'services', 'related', 'assets', 'provision', 'outsourced', 'company', 'restricted', 'subsidiary', 'person', 'provided', 'however', 'outsourcing', 'transaction', 'economically', 'beneficial', 'company', 'restricted', 'subsidiaries', 'considered', 'whole', '18', 'disposition', 'respect', 'property', 'built', 'owned', 'otherwise', 'acquired', 'company', 'restricted', 'subsidiary', 'pursuant', 'customary', 'sale', 'lease', 'back', 'transactions', 'asset', 'securitizations', 'similar', 'financings', 'permitted', 'indenture', '19', 'sales', 'dispositions', 'receivables', 'connection', 'qualified', 'receivables', 'financing', 'factoring', 'transaction', 'ordinary', 'course', 'business', 'associate', 'means', 'person', 'engaged', 'similar', 'business', 'company', 'restricted', 'subsidiaries', 'legal', 'beneficial', 'owners', '20', '50', 'outstanding', 'voting', 'stock', 'ii', 'joint', 'venture', 'entered', 'company', 'restricted', 'subsidiary', 'board', 'directors', 'means', '1', 'respect', 'company', 'corporation', 'board', 'directors', 'managers', 'applicable', 'corporation', 'duly', 'authorized', 'committee', 'thereof', '2', 'respect', 'partnership', 'board', 'directors', 'governing', 'body', 'general', 'partner', 'partnership', 'duly', 'authorized', 'committee', 'thereof', '3', 'respect', 'person', 'board', 'duly', 'authorized', 'committee', 'person', 'serving', 'similar', 'function', 'whenever', 'provision', 'requires', 'action', 'determination', 'made', 'approval', 'board', 'directors', 'action', 'determination', 'approval', 'shall', 'deemed', 'taken', 'made', 'approved', 'majority', 'directors', 'excluding', 'employee', 'representatives', 'board', 'directors', 'whether', 'not', 'action', 'approval', 'taken', 'part', 'formal', 'board', 'meeting', 'formal', 'board', 'approval', 'business', 'day', 'means', 'day', 'not', 'saturday', 'sunday', 'day', 'banking', 'institutions', 'london', 'united', 'kingdom', 'jersey', 'channel', 'islands', 'new', 'york', 'new', 'york', 'united', 'states', 'authorized', 'required', 'law', 'close', 'provided', 'however', 'payments', 'made', 'indenture', 'day', 'shall', 'also', 'day', 'trans', 'european', 'automated', 'real', 'time', 'gross', 'settlement', 'express', 'transfer', 'target', 'payment', 'system', 'open', 'settlement', 'payments', 'capital', 'stock', 'person', 'means', 'shares', 'rights', 'purchase', 'warrants', 'options', 'equivalents', 'partnership', 'interests', 'however', 'designated', 'equity', 'person', 'including', 'preferred', 'stock', 'excluding', 'debt', 'securities', 'convertible', 'equity', 'capitalized', 'lease', 'obligations', 'means', 'obligation', 'required', 'classified', 'accounted', 'capitalized', 'lease', 'financial', 'reporting', 'purposes', 'basis', 'ifrs', 'amount', 'indebtedness', 'represented', 'obligation', 'capitalized', 'amount', 'obligation', 'time', 'determination', 'thereof', 'made', 'determined', 'basis', 'ifrs', 'stated', 'maturity', 'thereof', 'date', 'last', 'payment', 'rent', 'amount', 'due', 'lease', 'prior', 'first', 'date', 'lease', 'may', 'terminated', 'without', 'penalty', 'cash', 'equivalents', 'means', '1', 'securities', 'issued', 'directly', 'fully', 'guaranteed', 'insured', 'united', 'states', 'canadian', 'governments', 'permissible', 'jurisdiction', 'switzerland', 'norway', 'japan', 'case', 'agency', 'instrumentality', 'thereof', 'provided', 'full', 'faith', 'credit', 'country', 'member', 'state', 'pledged', 'support', 'thereof', 'maturities', 'not', 'two', 'years', 'date', 'acquisition', '202', '2', 'certificates', 'deposit', 'time', 'deposits', 'eurodollar', 'time', 'deposits', 'overnight', 'bank', 'deposits', 'bankers', 'acceptances', 'maturities', 'not', 'one', 'year', 'date', 'acquisition', 'thereof', 'issued', 'lender', 'party', 'credit', 'facility', 'bank', 'trust', 'company', 'whose', 'commercial', 'paper', 'rated', 'least', '1', 'equivalent', 'thereof', 'p', 'least', 'p', '1', 'equivalent', 'thereof', 'moody', 'time', 'neither', 'issuing', 'comparable', 'ratings', 'comparable', 'rating', 'another', 'nationally', 'recognized', 'statistical', 'rating', 'organization', 'b', 'event', 'bank', 'trust', 'company', 'not', 'commercial', 'paper', 'rated', 'combined', 'capital', 'surplus', 'excess', '250', 'million', '3', 'repurchase', 'obligations', 'term', 'not', '30', 'days', 'underlying', 'securities', 'types', 'described', 'clauses', '1', '2', 'entered', 'bank', 'meeting', 'qualifications', 'specified', 'clause', '2', '4', 'commercial', 'paper', 'rated', 'time', 'acquisition', 'thereof', 'least', '2', 'equivalent', 'thereof', 'p', 'p', '2', 'equivalent', 'thereof', 'moody', 'carrying', 'equivalent', 'rating', 'nationally', 'recognized', 'statistical', 'rating', 'organization', 'two', 'named', 'rating', 'agencies', 'cease', 'publishing', 'ratings', 'investments', 'no', 'rating', 'available', 'respect', 'commercial', 'paper', 'issuer', 'equivalent', 'rating', 'respect', 'long', 'term', 'debt', 'case', 'maturing', 'within', 'one', 'year', 'date', 'acquisition', 'thereof', '5', 'readily', 'marketable', 'direct', 'obligations', 'issued', 'state', 'united', 'states', 'america', 'province', 'canada', 'permissible', 'jurisdiction', 'switzerland', 'norway', 'japan', 'political', 'subdivision', 'thereof', 'case', 'one', 'two', 'highest', 'rating', 'categories', 'obtainable', 'either', 'moody', 'p', 'time', 'neither', 'issuing', 'comparable', 'ratings', 'comparable', 'rating', 'another', 'nationally', 'recognized', 'statistical', 'rating', 'organization', 'maturities', 'not', 'two', 'years', 'date', 'acquisition', '6', 'indebtedness', 'preferred', 'stock', 'issued', 'persons', 'rating', 'bbb', 'higher', 'p', 'baa3', 'higher', 'moody', 'time', 'neither', 'issuing', 'comparable', 'ratings', 'comparable', 'rating', 'another', 'nationally', 'recognized', 'statistical', 'rating', 'organization', 'maturities', '12', 'months', 'less', 'date', 'acquisition', '7', 'bills', 'exchange', 'issued', 'united', 'states', 'canada', 'permissible', 'jurisdiction', 'switzerland', 'norway', 'japan', 'eligible', 'rediscount', 'relevant', 'central', 'bank', 'accepted', 'bank', 'dematerialized', 'equivalent', '8', 'interests', 'investment', 'company', 'money', 'market', 'enhanced', 'high', 'yield', 'fund', 'invests', '95', 'assets', 'instruments', 'type', 'specified', 'clauses', '1', '7', '9', 'purposes', 'clause', '2', 'definition', 'asset', 'disposition', 'marketable', 'securities', 'owned', 'company', 'subsidiaries', 'issue', 'date', 'change', 'control', 'means', '1', 'company', 'becomes', 'aware', 'way', 'report', 'filing', 'pursuant', 'section', '13', 'exchange', 'act', 'proxy', 'vote', 'written', 'notice', 'otherwise', 'person', 'group', 'related', 'persons', 'terms', 'used', 'sections', '13', '14', 'exchange', 'act', 'effect', 'issue', 'date', 'one', 'permitted', 'holders', 'becomes', 'beneficial', 'owner', 'defined', 'rules', '13d', '3', '13d', '5', 'exchange', 'act', 'effect', 'issue', 'date', 'directly', 'indirectly', '50', 'total', 'voting', 'power', 'voting', 'stock', 'company', 'provided', 'purposes', 'clause', 'x', 'no', 'change', 'control', 'shall', 'deemed', 'occur', 'reason', 'company', 'becoming', 'subsidiary', 'successor', 'parent', 'voting', 'stock', 'permitted', 'holder', 'beneficial', 'owner', 'defined', 'shall', 'not', 'included', 'voting', 'stock', 'person', 'group', 'beneficial', 'owner', 'defined', 'unless', 'person', 'group', 'not', 'affiliate', 'permitted', 'holder', 'greater', 'voting', 'power', 'respect', 'voting', 'stock', '203', '2', 'sale', 'lease', 'transfer', 'conveyance', 'disposition', 'way', 'merger', 'consolidation', 'business', 'combination', 'transaction', 'one', 'series', 'related', 'transactions', 'substantially', 'assets', 'company', 'restricted', 'subsidiaries', 'taken', 'whole', 'person', 'company', 'restricted', 'subsidiary', 'one', 'permitted', 'holders', 'notwithstanding', 'preceding', 'provision', 'rule', '13d', '3', 'exchange', 'act', 'person', 'group', 'shall', 'not', 'deemed', 'beneficially', 'securities', 'subject', 'equity', 'asset', 'purchase', 'agreement', 'merger', 'agreement', 'similar', 'agreement', 'voting', 'option', 'similar', 'agreement', 'related', 'thereto', 'consummation', 'transactions', 'contemplated', 'agreement', 'ii', 'group', 'includes', 'one', 'permitted', 'holders', 'issued', 'outstanding', 'voting', 'stock', 'company', 'beneficially', 'owned', 'directly', 'indirectly', 'permitted', 'holders', 'part', 'group', 'shall', 'not', 'treated', 'beneficially', 'owned', 'member', 'group', 'purposes', 'determining', 'whether', 'change', 'control', 'occurred', 'clearstream', 'means', 'clearstream', 'banking', 'soci', 'anonyme', 'currently', 'effect', 'successor', 'securities', 'clearing', 'agency', 'code', 'means', 'united', 'states', 'internal', 'revenue', 'code', '1986', 'amended', 'commodity', 'hedging', 'agreements', 'means', 'respect', 'person', 'commodity', 'purchase', 'contract', 'commodity', 'futures', 'forward', 'contract', 'commodities', 'option', 'contract', 'similar', 'contract', 'including', 'commodities', 'derivative', 'agreements', 'arrangements', 'person', 'party', 'beneficiary', 'company', 'means', 'aston', 'martin', 'investments', 'limited', 'consolidated', 'ebitda', 'period', 'means', 'without', 'duplication', 'consolidated', 'net', 'income', 'period', 'plus', 'following', 'extent', 'deducted', 'calculating', 'consolidated', 'net', 'income', '1', 'consolidated', 'interest', 'expense', 'receivables', 'fees', '2', 'consolidated', 'income', 'taxes', '3', 'consolidated', 'depreciation', 'expense', '4', 'consolidated', 'amortization', 'impairment', 'expense', '5', 'expenses', 'charges', 'costs', 'related', 'equity', 'offering', 'investment', 'acquisition', 'including', 'one', 'time', 'amounts', 'paid', 'connection', 'acquisition', 'retention', 'one', 'individuals', 'comprising', 'part', 'management', 'team', 'retained', 'manage', 'acquired', 'business', 'provided', 'payments', 'made', 'connection', 'acquisition', 'consistent', 'customary', 'practice', 'industry', 'time', 'acquisition', 'disposition', 'recapitalization', 'incurrence', 'indebtedness', 'permitted', 'indenture', 'amendment', 'waiver', 'consent', 'modification', 'document', 'governing', 'indebtedness', 'case', 'whether', 'not', 'successful', 'including', 'fees', 'charges', 'related', 'transactions', 'case', 'determined', 'good', 'faith', 'officer', 'company', '6', 'non', 'controlling', 'minority', 'interest', 'expense', 'whether', 'paid', 'not', 'consisting', 'income', 'attributable', 'non', 'controlling', 'minority', 'equity', 'interests', 'third', 'parties', 'period', '7', 'amount', 'expenses', 'paid', 'period', 'permitted', 'holders', 'extent', 'permitted', 'covenant', 'described', 'certain', 'covenants', 'limitation', 'affiliate', 'transactions', '8', 'amount', 'restructuring', 'charges', 'reserves', 'equity', 'based', 'non', 'cash', 'compensation', 'charges', 'expenses', 'including', 'charges', 'expenses', 'arising', 'grants', 'stock', 'appreciation', 'similar', 'rights', 'stock', 'options', 'restricted', 'stock', 'rights', 'retention', 'charges', 'including', 'charges', 'expenses', 'respect', 'incentive', 'plans', 'start', 'initial', 'costs', 'project', 'new', 'production', 'line', 'division', 'new', 'line', 'business', 'business', 'optimization', 'expenses', 'reserves', 'including', 'without', 'limitation', 'costs', 'reserves', 'associated', 'improvements', 'accounting', 'functions', 'integration', 'facilities', 'opening', 'costs', 'one', 'time', 'costs', 'incurred', '204', 'connection', 'acquisitions', 'investments', 'costs', 'related', 'closure', 'consolidation', 'facilities', '9', 'orders', 'production', 'ii', 'amount', 'run', 'rate', 'cost', 'savings', 'operating', 'expense', 'reductions', 'synergies', 'related', 'mergers', 'business', 'combinations', 'acquisitions', 'divestitures', 'restructurings', 'cost', 'savings', 'initiatives', 'similar', 'initiatives', 'consummated', 'issue', 'date', 'reasonably', 'identifiable', 'factually', 'supportable', 'projected', 'company', 'good', 'faith', 'result', 'actions', 'taken', 'respect', 'substantial', 'steps', 'taken', 'expected', 'taken', 'good', 'faith', 'determination', 'company', 'within', '24', 'months', 'merger', 'business', 'combination', 'acquisition', 'divestiture', 'restructuring', 'cost', 'savings', 'initiative', 'initiative', 'consummated', 'net', 'amount', 'actual', 'benefits', 'realized', 'period', 'actions', '10', 'net', 'gain', 'loss', 'realized', 'disposed', 'abandoned', 'discontinued', 'operations', '11', 'non', 'cash', 'charges', 'write', 'downs', 'items', 'reducing', 'consolidated', 'net', 'income', 'excluding', 'non', 'cash', 'charge', 'write', 'item', 'extent', 'represents', 'accrual', 'reserve', 'cash', 'charges', 'future', 'period', 'items', 'classified', 'company', 'extraordinary', 'exceptional', 'unusual', 'nonrecurring', 'items', 'less', 'non', 'cash', 'items', 'income', 'increasing', 'consolidated', 'net', 'income', 'excluding', 'non', 'cash', 'item', 'income', 'extent', 'represents', 'receipt', 'cash', 'future', 'period', 'notwithstanding', 'foregoing', 'provision', 'taxes', 'depreciation', 'amortization', 'non', 'cash', 'items', 'charges', 'write', 'downs', 'restricted', 'subsidiary', 'shall', 'added', 'consolidated', 'net', 'income', 'compute', 'consolidated', 'ebitda', 'extent', 'proportion', 'including', 'reason', 'minority', 'interests', 'net', 'income', 'loss', 'restricted', 'subsidiary', 'included', 'calculating', 'consolidated', 'net', 'income', 'purposes', 'definition', 'purposes', 'calculating', 'consolidated', 'ebitda', 'connection', 'determining', 'baskets', 'consolidated', 'ebitda', 'calculated', 'recently', 'ended', 'four', 'fiscal', 'quarters', 'internal', 'financial', 'statements', 'available', 'addition', 'calculations', 'determined', 'good', 'faith', 'responsible', 'financial', 'accounting', 'officer', 'company', 'including', 'respect', 'orders', 'production', 'cost', 'savings', 'operating', 'expense', 'reductions', 'synergies', 'calculated', 'good', 'faith', 'reasonable', 'financial', 'accounting', 'officer', 'company', 'consistent', 'clause', '9', 'ii', 'definition', 'pro', 'forma', 'adjustments', 'appropriate', 'consistent', 'pro', 'forma', 'provisions', 'set', 'forth', 'definition', 'fixed', 'charge', 'coverage', 'ratio', 'occurred', 'beginning', 'applicable', 'period', 'ii', 'though', 'full', 'effect', 'cost', 'savings', 'operating', 'expense', 'reductions', 'synergies', 'calculated', 'good', 'faith', 'reasonable', 'financial', 'accounting', 'officer', 'company', 'consistent', 'clause', '9', 'ii', 'definition', 'realized', 'first', 'day', 'relevant', 'period', 'shall', 'also', 'include', 'orders', 'production', 'reasonably', 'anticipated', 'full', 'run', 'rate', 'cost', 'savings', 'effect', 'calculated', 'good', 'faith', 'responsible', 'financial', 'accounting', 'officer', 'company', 'consistent', 'clause', '9', 'ii', 'definition', 'cost', 'savings', 'programs', 'initiated', 'company', 'restricted', 'subsidiaries', 'though', 'cost', 'savings', 'programs', 'fully', 'implemented', 'first', 'day', 'relevant', 'period', 'consolidated', 'financial', 'interest', 'expense', 'means', 'period', 'case', 'determined', 'basis', 'ifrs', 'sum', '1', 'consolidated', 'net', 'interest', 'income', 'expense', 'company', 'restricted', 'subsidiaries', 'related', 'indebtedness', 'including', 'amortization', 'debt', 'discount', 'b', 'commissions', 'discounts', 'fees', 'charges', 'owed', 'respect', 'letters', 'credit', 'bankers', 'acceptances', 'c', 'interest', 'component', 'capitalized', 'lease', 'obligations', 'net', 'payments', 'pursuant', 'interest', 'rate', 'hedging', 'obligations', 'respect', 'indebtedness', 'not', 'including', 'pension', 'liability', 'interest', 'cost', 'debt', 'issuance', 'cost', 'premium', 'commissions', 'discounts', 'fees', 'charges', 'owed', 'paid', 'respect', 'financings', 'costs', 'associated', 'hedging', 'obligations', 'described', '205', '2', 'dividends', 'distributions', 'respect', 'disqualified', 'stock', 'company', 'preferred', 'stock', 'restricted', 'subsidiary', 'extent', 'held', 'persons', 'company', 'subsidiary', 'company', '3', 'interest', 'indebtedness', 'another', 'person', 'guaranteed', 'company', 'restricted', 'subsidiaries', 'secured', 'lien', 'assets', 'company', 'restricted', 'subsidiaries', 'consolidated', 'income', 'taxes', 'means', 'taxes', 'payments', 'including', 'deferred', 'taxes', 'based', 'income', 'profits', 'capital', 'including', 'without', 'limitation', 'withholding', 'taxes', 'trade', 'taxes', 'franchise', 'taxes', 'company', 'restricted', 'subsidiaries', 'whether', 'not', 'paid', 'estimated', 'accrued', 'required', 'remitted', 'governmental', 'authority', 'consolidated', 'interest', 'expense', 'means', 'period', 'case', 'determined', 'basis', 'ifrs', 'consolidated', 'net', 'interest', 'income', 'expense', 'company', 'restricted', 'subsidiaries', 'whether', 'paid', 'accrued', 'including', 'pension', 'liability', 'interest', 'cost', 'plus', 'including', 'without', 'duplication', 'interest', 'costs', 'charges', 'consisting', '1', 'interest', 'expense', 'attributable', 'capitalized', 'lease', 'obligations', '2', 'amortization', 'debt', 'discount', 'debt', 'issuance', 'cost', 'premium', '3', 'non', 'cash', 'interest', 'expense', '4', 'commissions', 'discounts', 'fees', 'charges', 'owed', 'respect', 'financings', 'not', 'included', 'clause', '2', '5', 'costs', 'associated', 'hedging', 'obligations', '6', 'dividends', 'distributions', 'respect', 'disqualified', 'stock', 'company', 'preferred', 'stock', 'restricted', 'subsidiary', 'extent', 'held', 'persons', 'company', 'subsidiary', 'company', '7', 'consolidated', 'interest', 'expense', 'capitalized', 'period', '8', 'interest', 'actually', 'paid', 'company', 'restricted', 'subsidiary', 'guarantee', 'indebtedness', 'obligation', 'person', 'consolidated', 'net', 'income', 'means', 'period', 'net', 'income', 'loss', 'company', 'restricted', 'subsidiaries', 'determined', 'consolidated', 'basis', 'basis', 'ifrs', 'provided', 'however', 'not', 'included', 'consolidated', 'net', 'income', '1', 'subject', 'limitations', 'contained', 'clause', '3', 'net', 'income', 'loss', 'person', 'person', 'not', 'restricted', 'subsidiary', 'except', 'company', 'equity', 'net', 'income', 'person', 'period', 'included', 'consolidated', 'net', 'income', 'aggregate', 'amount', 'cash', 'cash', 'equivalents', 'actually', 'distributed', 'person', 'period', 'company', 'restricted', 'subsidiary', 'dividend', 'distribution', 'return', 'investment', 'could', 'distributed', 'reasonably', 'determined', 'officer', 'company', 'subject', 'case', 'dividend', 'distribution', 'return', 'investment', 'restricted', 'subsidiary', 'limitations', 'contained', 'clause', '2', '2', 'solely', 'purpose', 'determining', 'amount', 'available', 'restricted', 'payments', 'clause', 'c', 'first', 'paragraph', 'covenant', 'described', 'certain', 'covenants', 'limitation', 'restricted', 'payments', 'net', 'income', 'loss', 'restricted', 'subsidiary', 'guarantors', 'subsidiary', 'subject', 'restrictions', 'directly', 'indirectly', 'payment', 'dividends', 'making', 'distributions', 'restricted', 'subsidiary', 'directly', 'indirectly', 'company', 'guarantor', 'operation', 'terms', 'restricted', 'subsidiary', 'charter', 'agreement', 'instrument', 'judgment', 'decree', 'order', 'statute', 'governmental', 'rule', 'regulation', 'applicable', 'restricted', 'subsidiary', 'shareholders', 'restrictions', 'waived', 'otherwise', 'released', 'b', 'restrictions', 'pursuant', 'notes', 'indenture', 'c', 'restrictions', 'not', 'prohibited', 'covenant', 'described', 'certain', 'covenants', 'limitation', 'restrictions', 'distributions', 'restricted', 'subsidiaries', 'except', 'company', 'equity', 'net', 'income', 'restricted', 'subsidiary', 'period', 'included', 'consolidated', '206', 'net', 'income', 'aggregate', 'amount', 'cash', 'cash', 'equivalents', 'actually', 'distributed', 'could', 'distributed', 'restricted', 'subsidiary', 'period', 'company', 'another', 'restricted', 'subsidiary', 'dividend', 'distribution', 'subject', 'case', 'dividend', 'another', 'restricted', 'subsidiary', 'limitation', 'contained', 'clause', '3', 'net', 'tax', 'effect', 'gains', 'losses', 'realized', 'upon', 'sale', 'disposition', 'including', 'abandonment', 'discontinuance', 'asset', 'operations', 'company', 'restricted', 'subsidiaries', 'including', 'pursuant', 'sale', 'leaseback', 'transaction', 'not', 'sold', 'otherwise', 'disposed', 'ordinary', 'course', 'business', 'determined', 'good', 'faith', 'officer', 'board', 'directors', 'company', '4', 'tax', 'effect', 'extraordinary', 'non', 'recurring', 'unusual', 'gains', 'losses', 'less', 'fees', 'expenses', 'relating', 'thereto', 'charges', 'expenses', 'including', 'relating', 'multi', 'year', 'strategic', 'initiatives', 'restructuring', 'duplicative', 'running', 'costs', 'relocation', 'costs', 'integration', 'costs', 'facility', 'consolidation', 'closing', 'costs', 'severance', 'costs', 'expenses', 'one', 'time', 'compensation', 'charges', 'costs', 'relating', 'pre', 'opening', 'opening', 'costs', 'facilities', 'signing', 'retention', 'completion', 'bonuses', 'costs', 'incurred', 'connection', 'strategic', 'initiatives', 'transition', 'costs', 'costs', 'incurred', 'connection', 'acquisitions', 'non', 'recurring', 'product', 'intellectual', 'property', 'development', 'business', 'optimization', 'expenses', 'including', 'costs', 'expenses', 'relating', 'business', 'optimization', 'programs', 'new', 'systems', 'design', 'retention', 'charges', 'system', 'establishment', 'costs', 'implementation', 'costs', 'operating', 'expenses', 'attributable', 'implementation', 'cost', 'savings', 'initiatives', 'curtailments', 'modifications', 'pension', 'post', 'retirement', 'employee', 'benefit', 'plans', '5', 'cumulative', 'effect', 'change', 'accounting', 'principles', 'changes', 'result', 'adoption', 'modification', 'accounting', 'policies', 'period', '6', 'tax', 'effect', 'income', 'loss', 'early', 'extinguishment', 'conversion', 'indebtedness', 'ii', 'hedging', 'obligations', 'iii', 'derivative', 'instruments', '7', 'impairment', 'charge', 'asset', 'write', 'write', 'including', 'impairment', 'charges', 'asset', 'writeoffs', 'write', 'downs', 'related', 'intangible', 'assets', 'long', 'lived', 'assets', 'investments', 'debt', 'equity', 'securities', 'investments', 'recorded', 'using', 'equity', 'method', 'result', 'change', 'law', 'regulation', 'amortization', 'intangibles', 'arising', 'pursuant', 'ifrs', '8', 'equity', 'based', 'non', 'cash', 'compensation', 'charge', 'expense', 'including', 'charge', 'expense', 'arising', 'grants', 'stock', 'appreciation', 'similar', 'rights', 'stock', 'options', 'restricted', 'stock', 'rights', 'equity', 'incentive', 'programs', 'resulting', 'application', 'accounting', 'principles', 'relating', 'expensing', 'stock', 'related', 'compensation', 'cash', 'charges', 'associated', 'rollover', 'acceleration', 'payout', 'capital', 'stock', 'management', 'employees', 'business', 'partners', 'company', 'parent', '9', 'fees', 'expenses', 'charges', 'incurred', 'period', 'amortization', 'thereof', 'period', 'connection', 'acquisition', 'recapitalization', 'investment', 'asset', 'disposition', 'disposition', 'incurrence', 'repayment', 'indebtedness', 'including', 'fees', 'expenses', 'charges', 'related', 'offering', 'issuance', 'notes', 'syndication', 'incurrence', 'credit', 'facility', 'issuance', 'capital', 'stock', 'refinancing', 'transaction', 'amendment', 'modification', 'debt', 'instrument', 'including', 'amendment', 'modification', 'notes', 'securities', 'credit', 'facility', 'including', 'case', 'transaction', 'consummated', 'prior', 'issue', 'date', 'transaction', 'undertaken', 'not', 'completed', 'charges', 'non', 'recurring', 'merger', 'costs', 'incurred', 'period', 'result', 'transaction', 'case', 'whether', 'not', 'successful', 'consummated', '10', 'unrealized', 'gains', 'losses', 'respect', 'hedging', 'obligations', 'ineffectiveness', 'recognized', 'earnings', 'related', 'qualifying', 'hedge', 'transactions', 'fair', 'value', 'changes', 'therein', 'recognized', 'earnings', 'derivatives', 'not', 'qualify', 'hedge', 'transactions', 'case', 'respect', 'hedging', 'obligations', '207', '11', 'unrealized', 'foreign', 'currency', 'transaction', 'gains', 'losses', 'respect', 'indebtedness', 'person', 'denominated', 'currency', 'functional', 'currency', 'person', 'unrealized', 'foreign', 'exchange', 'gains', 'losses', 'relating', 'translation', 'assets', 'liabilities', 'denominated', 'foreign', 'currencies', '12', 'unrealized', 'foreign', 'currency', 'translation', 'transaction', 'gains', 'losses', 'respect', 'indebtedness', 'obligations', 'company', 'restricted', 'subsidiary', 'owing', 'company', 'restricted', 'subsidiary', '13', 'purchase', 'accounting', 'effects', 'including', 'not', 'limited', 'adjustments', 'inventory', 'property', 'equipment', 'software', 'intangible', 'assets', 'deferred', 'revenues', 'component', 'amounts', 'required', 'permitted', 'ifrs', 'related', 'authoritative', 'pronouncements', 'including', 'effects', 'adjustments', 'pushed', 'company', 'restricted', 'subsidiaries', 'result', 'consummated', 'acquisition', 'amortization', 'write', 'amounts', 'thereof', 'including', 'write', 'process', 'research', 'development', '14', 'expenses', 'charges', 'losses', 'extent', 'covered', 'insurance', 'indemnity', 'actually', 'reimbursed', 'long', 'person', 'made', 'determination', 'exists', 'reasonable', 'evidence', 'amount', 'fact', 'reimbursed', 'insurer', 'indemnifying', 'party', 'extent', 'amount', 'fact', 'reimbursed', 'within', '365', 'days', 'date', 'insurable', 'indemnifiable', 'event', 'net', 'amount', 'added', 'back', 'prior', 'period', 'extent', 'not', 'reimbursed', 'within', 'applicable', '365', 'day', 'period', '15', 'impact', 'capitalized', 'accrued', 'accreting', 'pay', 'kind', 'interest', 'principal', 'subordinated', 'shareholder', 'funding', 'consolidated', 'net', 'leverage', 'means', 'sum', 'without', 'duplication', 'aggregate', 'outstanding', 'indebtedness', 'company', 'restricted', 'subsidiaries', 'excluding', 'hedging', 'obligations', 'except', 'extent', 'provided', 'clause', 'c', 'penultimate', 'paragraph', 'covenant', 'described', 'certain', 'covenants', 'limitation', 'indebtedness', 'consolidated', 'basis', 'less', 'ii', 'cash', 'cash', 'equivalents', 'company', 'restricted', 'subsidiaries', 'consolidated', 'basis', 'consolidated', 'net', 'leverage', 'ratio', 'means', 'date', 'determination', 'ratio', 'x', 'consolidated', 'net', 'leverage', 'date', 'aggregate', 'amount', 'consolidated', 'ebitda', 'period', 'recent', 'four', 'consecutive', 'fiscal', 'quarters', 'ending', 'prior', 'date', 'determination', 'internal', 'consolidated', 'financial', 'statements', 'company', 'available', 'provided', 'however', 'purposes', 'calculating', 'consolidated', 'ebitda', 'period', 'date', 'determination', '1', 'since', 'beginning', 'period', 'company', 'restricted', 'subsidiary', 'disposed', 'company', 'business', 'group', 'assets', 'constituting', 'operating', 'unit', 'business', 'site', 'disposition', 'sale', 'transaction', 'giving', 'rise', 'need', 'calculate', 'consolidated', 'net', 'leverage', 'ratio', 'sale', 'consolidated', 'ebitda', 'period', 'reduced', 'amount', 'equal', 'consolidated', 'ebitda', 'positive', 'attributable', 'assets', 'subject', 'sale', 'period', 'increased', 'amount', 'equal', 'consolidated', 'ebitda', 'negative', 'attributable', 'thereto', 'period', 'provided', 'sale', 'constitutes', 'discontinued', 'operations', 'accordance', 'ifrs', 'consolidated', 'net', 'income', 'shall', 'reduced', 'amount', 'equal', 'consolidated', 'net', 'income', 'positive', 'attributable', 'operations', 'period', 'increased', 'amount', 'equal', 'consolidated', 'net', 'income', 'negative', 'attributable', 'thereto', 'period', '2', 'since', 'beginning', 'period', 'company', 'restricted', 'subsidiary', 'merger', 'otherwise', 'made', 'investment', 'person', 'thereby', 'becomes', 'restricted', 'subsidiary', 'otherwise', 'acquired', 'company', 'business', 'group', 'assets', 'constituting', 'operating', 'unit', 'business', 'site', 'investment', 'acquisition', 'purchase', 'including', 'purchase', 'occurring', 'connection', 'transaction', 'causing', 'calculation', 'made', 'hereunder', 'consolidated', 'ebitda', 'period', 'calculated', 'giving', 'pro', 'forma', 'effect', '208', 'thereto', 'purchase', 'including', 'reasonably', 'anticipated', 'cost', 'savings', 'operating', 'expense', 'reductions', 'synergies', 'calculated', 'good', 'faith', 'reasonable', 'financial', 'accounting', 'officer', 'company', 'consistent', 'clause', '9', 'ii', 'definition', 'consolidated', 'ebitda', 'occurred', 'first', 'day', 'period', '3', 'since', 'beginning', 'period', 'person', 'became', 'restricted', 'subsidiary', 'merged', 'otherwise', 'combined', 'company', 'restricted', 'subsidiary', 'since', 'beginning', 'period', 'made', 'sale', 'purchase', 'would', 'required', 'adjustment', 'pursuant', 'clause', '1', '2', 'made', 'company', 'restricted', 'subsidiary', 'since', 'beginning', 'period', 'consolidated', 'ebitda', 'period', 'calculated', 'giving', 'pro', 'forma', 'effect', 'thereto', 'including', 'orders', 'production', 'reasonably', 'anticipated', 'cost', 'savings', 'operating', 'expense', 'reductions', 'synergies', 'calculated', 'good', 'faith', 'reasonable', 'financial', 'accounting', 'officer', 'company', 'consistent', 'clause', '9', 'ii', 'definition', 'consolidated', 'ebitda', 'sale', 'purchase', 'occurred', 'first', 'day', 'period', 'purposes', 'definition', 'definitions', 'consolidated', 'ebitda', 'consolidated', 'income', 'taxes', 'consolidated', 'interest', 'expense', 'consolidated', 'net', 'income', 'calculations', 'determined', 'good', 'faith', 'responsible', 'financial', 'accounting', 'officer', 'company', 'including', 'respect', 'orders', 'production', 'cost', 'savings', 'operating', 'expense', 'reductions', 'synergies', 'calculated', 'good', 'faith', 'reasonable', 'financial', 'accounting', 'officer', 'company', 'consistent', 'clause', '9', 'ii', 'definition', 'consolidated', 'ebitda', 'though', 'full', 'effect', 'cost', 'savings', 'operating', 'expense', 'reductions', 'synergies', 'realized', 'first', 'day', 'relevant', 'period', 'shall', 'also', 'include', 'orders', 'production', 'reasonably', 'anticipated', 'full', 'run', 'rate', 'cost', 'savings', 'effect', 'calculated', 'good', 'faith', 'responsible', 'financial', 'accounting', 'officer', 'company', 'consistent', 'calculation', 'set', 'forth', 'clause', '9', 'ii', 'definition', 'consolidated', 'ebitda', 'cost', 'savings', 'programs', 'initiated', 'company', 'restricted', 'subsidiaries', 'though', 'cost', 'savings', 'programs', 'fully', 'implemented', 'first', 'day', 'relevant', 'period', 'b', 'determining', 'amount', 'indebtedness', 'outstanding', 'date', 'determination', 'pro', 'forma', 'effect', 'shall', 'given', 'incurrence', 'repayment', 'repurchase', 'defeasance', 'acquisition', 'retirement', 'discharge', 'indebtedness', 'transaction', 'occurred', 'first', 'day', 'relevant', 'period', 'calculating', 'consolidated', 'net', 'leverage', 'ratio', 'consolidated', 'secured', 'net', 'leverage', 'ratio', 'connection', 'making', 'restricted', 'payment', 'pursuant', 'clause', '17', 'second', 'paragraph', 'covenant', 'described', 'certain', 'covenants', 'limitation', 'restricted', 'payments', 'pro', 'forma', 'effect', 'not', 'given', 'indebtedness', 'incurred', 'date', 'determination', 'pursuant', 'second', 'paragraph', 'covenant', 'set', 'forth', 'certain', 'covenants', 'limitation', 'indebtedness', 'ii', 'discharge', 'date', 'determination', 'indebtedness', 'extent', 'discharge', 'results', 'proceeds', 'indebtedness', 'incurred', 'pursuant', 'second', 'paragraph', 'covenant', 'set', 'forth', 'certain', 'covenants', 'limitation', 'indebtedness', 'consolidated', 'secured', 'net', 'leverage', 'ratio', 'means', 'consolidated', 'net', 'leverage', 'ratio', 'calculated', 'excluding', 'indebtedness', 'secured', 'indebtedness', 'contingent', 'obligations', 'means', 'respect', 'person', 'obligation', 'person', 'guaranteeing', 'manner', 'whether', 'directly', 'indirectly', 'operating', 'lease', 'dividend', 'obligation', 'not', 'constitute', 'indebtedness', 'primary', 'obligations', 'person', 'primary', 'obligor', 'including', 'obligation', 'person', 'whether', 'not', 'contingent', '1', 'purchase', 'primary', 'obligation', 'property', 'constituting', 'direct', 'indirect', 'security', 'therefor', '2', 'advance', 'supply', 'funds', 'purchase', 'payment', 'primary', 'obligation', 'b', 'maintain', 'working', 'capital', 'equity', 'capital', 'primary', 'obligor', 'otherwise', 'maintain', 'net', 'worth', 'solvency', 'primary', 'obligor', '209', '3', 'purchase', 'property', 'securities', 'services', 'primarily', 'purpose', 'assuring', 'owner', 'primary', 'obligation', 'ability', 'primary', 'obligor', 'make', 'payment', 'primary', 'obligation', 'loss', 'respect', 'thereof', 'credit', 'facility', 'means', 'respect', 'company', 'subsidiaries', 'one', 'debt', 'facilities', 'indentures', 'arrangements', 'including', 'new', 'revolving', 'credit', 'facility', 'agreement', 'commercial', 'paper', 'facilities', 'overdraft', 'facilities', 'banks', 'financial', 'institutions', 'investors', 'providing', 'revolving', 'credit', 'loans', 'term', 'loans', 'notes', 'receivables', 'financing', 'including', 'sale', 'receivables', 'institutions', 'special', 'purpose', 'entities', 'formed', 'borrow', 'institutions', 'receivables', 'letters', 'credit', 'indebtedness', 'case', 'amended', 'restated', 'modified', 'renewed', 'refunded', 'replaced', 'restructured', 'refinanced', 'repaid', 'increased', 'extended', 'whole', 'part', 'time', 'time', 'whether', 'whole', 'part', 'whether', 'not', 'original', 'administrative', 'agent', 'lenders', 'another', 'administrative', 'agent', 'agents', 'banks', 'institutions', 'whether', 'provided', 'new', 'revolving', 'credit', 'facility', 'agreement', 'one', 'credit', 'agreements', 'indentures', 'financing', 'agreements', 'otherwise', 'case', 'including', 'agreements', 'instruments', 'documents', 'executed', 'delivered', 'pursuant', 'connection', 'foregoing', 'including', 'notes', 'letters', 'credit', 'issued', 'pursuant', 'thereto', 'guarantee', 'collateral', 'agreement', 'patent', 'trademark', 'security', 'agreement', 'mortgages', 'letter', 'credit', 'applications', 'guarantees', 'pledges', 'agreements', 'security', 'agreements', 'collateral', 'documents', 'without', 'limiting', 'generality', 'foregoing', 'term', 'credit', 'facility', 'shall', 'include', 'agreement', 'instrument', '1', 'changing', 'maturity', 'indebtedness', 'incurred', 'thereunder', 'contemplated', 'thereby', '2', 'adding', 'subsidiaries', 'company', 'additional', 'borrowers', 'guarantors', 'thereunder', '3', 'increasing', 'amount', 'indebtedness', 'incurred', 'thereunder', 'available', 'borrowed', 'thereunder', '4', 'otherwise', 'altering', 'terms', 'conditions', 'thereof', 'currency', 'agreement', 'means', 'respect', 'person', 'foreign', 'exchange', 'contract', 'currency', 'swap', 'agreement', 'currency', 'futures', 'contract', 'currency', 'option', 'contract', 'currency', 'derivative', 'similar', 'agreement', 'person', 'party', 'beneficiary', 'default', 'means', 'event', 'notice', 'passage', 'time', 'would', 'event', 'default', 'designated', 'non', 'cash', 'consideration', 'means', 'fair', 'market', 'value', 'non', 'cash', 'consideration', 'received', 'company', 'one', 'restricted', 'subsidiaries', 'connection', 'asset', 'disposition', 'designated', 'designated', 'non', 'cash', 'consideration', 'pursuant', 'officer', 'certificate', 'setting', 'forth', 'basis', 'valuation', 'less', 'amount', 'cash', 'cash', 'equivalents', 'temporary', 'cash', 'investments', 'received', 'connection', 'subsequent', 'payment', 'redemption', 'retirement', 'sale', 'disposition', 'designated', 'non', 'cash', 'consideration', 'particular', 'item', 'designated', 'non', 'cash', 'consideration', 'no', 'longer', 'considered', 'outstanding', 'extent', 'paid', 'redeemed', 'otherwise', 'retired', 'sold', 'otherwise', 'disposed', 'compliance', 'covenant', 'described', 'certain', 'covenants', 'limitation', 'sales', 'assets', 'subsidiary', 'stock', 'designated', 'preference', 'shares', 'means', 'respect', 'company', 'parent', 'preferred', 'stock', 'disqualified', 'stock', 'issued', 'cash', 'company', 'subsidiary', 'company', 'employee', 'stock', 'ownership', 'plan', 'trust', 'established', 'company', 'subsidiary', 'benefit', 'employees', 'extent', 'funded', 'company', 'subsidiary', 'b', 'designated', 'designated', 'preference', 'shares', 'pursuant', 'officer', 'certificate', 'company', 'prior', 'issuance', 'thereof', 'net', 'cash', 'proceeds', 'excluded', 'calculation', 'set', 'forth', 'clause', 'c', 'ii', 'second', 'paragraph', 'covenant', 'described', 'certain', 'covenants', 'limitation', 'restricted', 'payments', 'disinterested', 'director', 'means', 'respect', 'affiliate', 'transaction', 'member', 'board', 'directors', 'company', 'no', 'material', 'direct', 'indirect', 'financial', 'interest', 'respect', 'affiliate', 'transaction', 'member', 'board', 'directors', 'company', 'shall', 'deemed', 'not', 'financial', 'interest', 'reason', 'member', 'holding', 'capital', 'stock', 'company', 'parent', 'options', 'warrants', 'rights', 'respect', 'capital', 'stock', '210', 'disqualified', 'stock', 'means', 'respect', 'person', 'capital', 'stock', 'person', 'terms', 'terms', 'security', 'convertible', 'exchangeable', 'upon', 'happening', 'event', '1', 'matures', 'mandatorily', 'redeemable', 'cash', 'exchange', 'indebtedness', 'pursuant', 'sinking', 'fund', 'obligation', 'otherwise', '2', 'convertible', 'exchangeable', 'indebtedness', 'disqualified', 'stock', 'excluding', 'capital', 'stock', 'convertible', 'exchangeable', 'solely', 'option', 'company', 'restricted', 'subsidiary', '3', 'may', 'become', 'accordance', 'terms', 'upon', 'occurrence', 'certain', 'events', 'otherwise', 'redeemable', 'repurchasable', 'cash', 'exchange', 'indebtedness', 'option', 'holder', 'capital', 'stock', 'whole', 'part', 'case', 'prior', 'earlier', 'stated', 'maturity', 'notes', 'b', 'date', 'no', 'notes', 'outstanding', 'provided', 'however', 'portion', 'capital', 'stock', 'matures', 'mandatorily', 'redeemable', 'convertible', 'exchangeable', 'redeemable', 'option', 'holder', 'thereof', 'prior', 'date', 'deemed', 'disqualified', 'stock', 'ii', 'capital', 'stock', 'would', 'constitute', 'disqualified', 'stock', 'solely', 'holders', 'thereof', 'right', 'require', 'company', 'repurchase', 'capital', 'stock', 'upon', 'occurrence', 'change', 'control', 'asset', 'sale', 'howsoever', 'defined', 'referred', 'shall', 'not', 'constitute', 'disqualified', 'stock', 'redemption', 'repurchase', 'obligation', 'subject', 'compliance', 'relevant', 'person', 'covenant', 'described', 'certain', 'covenants', 'limitation', 'restricted', 'payments', 'dollar', 'applicable', 'premium', 'means', 'respect', 'dollar', 'note', 'greater', '1', '1', 'principal', 'amount', 'dollar', 'note', '2', 'redemption', 'date', 'excess', 'extent', 'positive', 'present', 'value', 'redemption', 'date', 'redemption', 'price', 'dollar', 'note', '2019', 'redemption', 'price', 'expressed', 'percentage', 'principal', 'amount', 'set', 'forth', 'table', 'optional', 'redemption', 'excluding', 'accrued', 'unpaid', 'interest', 'plus', 'ii', 'required', 'interest', 'payments', 'due', 'dollar', 'note', 'including', 'date', 'set', 'forth', 'clause', 'excluding', 'accrued', 'unpaid', 'interest', 'computed', 'upon', 'redemption', 'date', 'using', 'discount', 'rate', 'equal', 'applicable', 'treasury', 'rate', 'redemption', 'date', 'plus', '50', 'basis', 'points', 'b', 'outstanding', 'principal', 'amount', 'dollar', 'note', 'calculated', 'company', 'behalf', 'company', 'person', 'company', 'shall', 'designate', 'avoidance', 'doubt', 'calculation', 'dollar', 'applicable', 'premium', 'shall', 'not', 'duty', 'obligation', 'trustee', 'paying', 'agent', 'dollar', 'equivalent', 'means', 'respect', 'monetary', 'amount', 'currency', 'u', 'dollars', 'time', 'determination', 'thereof', 'company', 'amount', 'u', 'dollars', 'obtained', 'converting', 'currency', 'u', 'dollars', 'involved', 'computation', 'u', 'dollars', 'spot', 'rate', 'purchase', 'u', 'dollars', 'applicable', 'currency', 'u', 'dollars', 'published', 'financial', 'times', 'currency', 'rates', 'section', 'financial', 'times', 'no', 'longer', 'published', 'information', 'no', 'longer', 'available', 'financial', 'times', 'source', 'may', 'selected', 'good', 'faith', 'company', 'date', 'determination', 'dtc', 'means', 'depository', 'trust', 'company', 'successor', 'securities', 'clearing', 'agency', 'equity', 'offering', 'means', 'x', 'sale', 'capital', 'stock', 'company', 'disqualified', 'stock', 'offerings', 'registered', 'form', '8', 'successor', 'form', 'securities', 'act', 'similar', 'offering', 'jurisdictions', 'sale', 'capital', 'stock', 'securities', 'proceeds', 'contributed', 'equity', 'issuance', 'disqualified', 'stock', 'designated', 'preference', 'shares', 'excluded', 'contribution', 'subordinated', 'shareholder', 'funding', 'company', 'restricted', 'subsidiaries', '211', 'escrowed', 'proceeds', 'means', 'proceeds', 'offering', 'debt', 'securities', 'indebtedness', 'paid', 'escrow', 'account', 'independent', 'escrow', 'agent', 'date', 'applicable', 'offering', 'incurrence', 'pursuant', 'escrow', 'arrangements', 'permit', 'release', 'amounts', 'deposit', 'escrow', 'account', 'upon', 'satisfaction', 'certain', 'conditions', 'occurrence', 'certain', 'events', 'term', 'escrowed', 'proceeds', 'shall', 'include', 'interest', 'earned', 'amounts', 'held', 'escrow', 'euroclear', 'means', 'euroclear', 'bank', 'sa', 'nv', 'successor', 'securities', 'clearing', 'agency', 'european', 'union', 'means', 'members', 'european', 'union', 'january', '1', '2004', 'including', 'avoidance', 'doubt', 'united', 'kingdom', 'exchange', 'act', 'means', 'u', 'securities', 'exchange', 'act', '1934', 'amended', 'rules', 'regulations', 'sec', 'promulgated', 'thereunder', 'amended', 'excluded', 'contribution', 'means', 'net', 'cash', 'proceeds', 'property', 'assets', 'received', 'company', 'capital', 'contributions', 'equity', 'issuance', 'disqualified', 'stock', 'designated', 'preference', 'shares', 'company', 'issue', 'date', 'issuance', 'sale', 'restricted', 'subsidiary', 'employee', 'stock', 'ownership', 'plan', 'trust', 'established', 'company', 'subsidiary', 'company', 'benefit', 'employees', 'extent', 'funded', 'company', 'restricted', 'subsidiary', 'capital', 'stock', 'disqualified', 'stock', 'designated', 'preference', 'shares', 'company', 'case', 'extent', 'designated', 'excluded', 'contribution', 'pursuant', 'officer', 'certificate', 'company', 'existing', 'notes', 'means', '304', 'million', 'aggregate', 'principal', 'amount', 'aston', 'martin', 'capital', 'limited', '9', '25', 'senior', 'secured', 'notes', 'due', '2018', 'governed', 'indenture', 'dated', 'june', '21', '2011', 'among', 'others', 'aston', 'martin', 'holdings', 'uk', 'limited', 'guarantors', 'named', 'therein', 'deutsche', 'trustee', 'company', 'limited', 'trustee', 'existing', 'pik', 'notes', 'means', '165', '000', '000', 'initial', 'aggregate', 'principal', 'amount', 'aston', 'martin', 'holdings', 'uk', 'limited', '10', '25', 'senior', 'subordinated', 'pik', 'notes', 'due', '2018', 'governed', 'indenture', 'dated', 'march', '14', '2014', 'amended', 'supplemented', 'time', 'time', 'among', 'others', 'aston', 'martin', 'holdings', 'uk', 'limited', 'deutsche', 'trustee', 'company', 'limited', 'trustee', 'fair', 'market', 'value', 'shall', 'determined', 'good', 'faith', 'company', 'may', 'conclusively', 'established', 'means', 'officer', 'certificate', 'resolution', 'board', 'directors', 'company', 'setting', 'fair', 'market', 'value', 'determined', 'officer', 'board', 'directors', 'good', 'faith', 'fixed', 'charge', 'coverage', 'ratio', 'means', 'period', 'ratio', 'c', 'consolidated', 'ebitda', 'consolidated', 'financial', 'interest', 'expense', 'provided', 'calculating', 'fixed', 'charge', 'coverage', 'ratio', 'element', 'thereof', 'period', 'pro', 'forma', 'calculations', 'made', 'good', 'faith', 'responsible', 'financial', 'accounting', 'officer', 'company', 'including', 'pro', 'forma', 'expenses', 'orders', 'production', 'cost', 'savings', 'operating', 'expense', 'reductions', 'synergies', 'occurred', 'reasonably', 'expected', 'occur', 'within', 'next', '24', 'months', 'following', 'date', 'calculation', 'including', 'without', 'limitation', 'result', 'would', 'result', 'actions', 'taken', 'company', 'restricted', 'subsidiaries', 'including', 'without', 'limitation', 'connection', 'cost', 'reduction', 'cost', 'savings', 'plan', 'program', 'connection', 'orders', 'production', 'transaction', 'investment', 'acquisition', 'disposition', 'restructuring', 'corporate', 'reorganization', 'otherwise', 'good', 'faith', 'judgment', 'chief', 'executive', 'officer', 'chief', 'operating', 'officer', 'chief', 'financial', 'officer', 'person', 'performing', 'similarly', 'senior', 'accounting', 'role', 'company', 'regardless', 'whether', 'orders', 'production', 'cost', 'savings', 'operating', 'expense', 'reductions', 'synergies', 'could', 'reflected', 'pro', 'forma', 'financial', 'statements', 'extent', 'prepared', 'provided', 'without', 'limiting', 'application', 'previous', 'proviso', 'purposes', 'calculating', 'consolidated', 'ebitda', 'consolidated', 'financial', 'interest', 'expense', 'period', 'date', 'determination', '1', 'since', 'beginning', 'period', 'company', 'restricted', 'subsidiary', 'disposed', 'company', 'business', 'group', 'assets', 'constituting', '212', 'operating', 'unit', 'business', 'site', 'disposition', 'sale', 'transaction', 'giving', 'rise', 'need', 'calculate', 'fixed', 'charge', 'coverage', 'ratio', 'sale', 'consolidated', 'ebitda', 'period', 'reduced', 'amount', 'equal', 'consolidated', 'ebitda', 'positive', 'attributable', 'assets', 'subject', 'sale', 'period', 'increased', 'amount', 'equal', 'consolidated', 'ebitda', 'negative', 'attributable', 'thereto', 'period', 'provided', 'sale', 'constitutes', 'discontinued', 'operations', 'accordance', 'ifrs', 'consolidated', 'net', 'income', 'shall', 'reduced', 'amount', 'equal', 'consolidated', 'net', 'income', 'positive', 'attributable', 'operations', 'period', 'increased', 'amount', 'equal', 'consolidated', 'net', 'income', 'negative', 'attributable', 'thereto', 'period', 'b', 'consolidated', 'financial', 'interest', 'expense', 'period', 'shall', 'reduced', 'amount', 'equal', 'consolidated', 'financial', 'interest', 'expense', 'directly', 'attributable', 'indebtedness', 'company', 'restricted', 'subsidiary', 'repaid', 'repurchased', 'defeased', 'otherwise', 'discharged', 'respect', 'company', 'continuing', 'restricted', 'subsidiaries', 'connection', 'asset', 'disposition', 'period', 'capital', 'stock', 'restricted', 'subsidiary', 'sold', 'consolidated', 'financial', 'interest', 'expense', 'period', 'directly', 'attributable', 'indebtedness', 'restricted', 'subsidiary', 'extent', 'company', 'continuing', 'restricted', 'subsidiaries', 'no', 'longer', 'liable', 'indebtedness', 'sale', '2', 'since', 'beginning', 'period', 'company', 'restricted', 'subsidiary', 'merger', 'otherwise', 'made', 'investment', 'person', 'thereby', 'becomes', 'restricted', 'subsidiary', 'otherwise', 'acquired', 'company', 'business', 'group', 'assets', 'constituting', 'operating', 'unit', 'business', 'site', 'investment', 'acquisition', 'purchase', 'including', 'purchase', 'occurring', 'connection', 'transaction', 'causing', 'calculation', 'made', 'hereunder', 'consolidated', 'ebitda', 'consolidated', 'financial', 'interest', 'expense', 'period', 'calculated', 'giving', 'pro', 'forma', 'effect', 'thereto', 'including', 'orders', 'production', 'reasonably', 'anticipated', 'cost', 'savings', 'operating', 'expense', 'reductions', 'synergies', 'case', 'calculated', 'good', 'faith', 'reasonable', 'financial', 'accounting', 'officer', 'company', 'consistent', 'clause', '9', 'ii', 'definition', 'consolidated', 'ebitda', 'purchase', 'occurred', 'first', 'day', 'period', '3', 'since', 'beginning', 'period', 'person', 'became', 'restricted', 'subsidiary', 'merged', 'otherwise', 'combined', 'company', 'restricted', 'subsidiary', 'since', 'beginning', 'period', 'made', 'sale', 'purchase', 'would', 'required', 'adjustment', 'pursuant', 'clause', '1', '2', 'made', 'company', 'restricted', 'subsidiary', 'since', 'beginning', 'period', 'consolidated', 'ebitda', 'consolidated', 'financial', 'interest', 'expense', 'period', 'calculated', 'giving', 'pro', 'forma', 'effect', 'thereto', 'including', 'orders', 'production', 'reasonably', 'anticipated', 'cost', 'savings', 'operating', 'expense', 'reductions', 'synergies', 'case', 'calculated', 'good', 'faith', 'reasonable', 'financial', 'accounting', 'officer', 'company', 'consistent', 'clause', '9', 'ii', 'definition', 'consolidated', 'ebitda', 'sale', 'purchase', 'occurred', 'first', 'day', 'period', 'indebtedness', 'bears', 'floating', 'rate', 'interest', 'given', 'pro', 'forma', 'effect', 'interest', 'expense', 'indebtedness', 'calculated', 'rate', 'effect', 'date', 'determination', 'applicable', 'rate', 'entire', 'period', 'taking', 'account', 'hedging', 'obligation', 'applicable', 'indebtedness', 'period', 'equal', 'remaining', 'term', 'indebtedness', 'purposes', 'definition', 'calculations', 'determined', 'good', 'faith', 'responsible', 'financial', 'accounting', 'officer', 'company', 'including', 'respect', 'orders', 'production', 'cost', 'savings', 'operating', 'expense', 'reductions', 'synergies', 'calculated', 'good', 'faith', 'reasonable', 'financial', 'accounting', 'officer', 'company', 'consistent', 'clause', '9', 'ii', 'definition', 'consolidated', 'ebitda', 'though', 'full', 'effect', 'cost', 'savings', 'operating', 'expense', 'reductions', 'synergies', 'realized', 'first', 'day', 'relevant', 'period', 'shall', 'also', 'include', 'orders', 'production', 'reasonably', 'anticipated', 'full', 'run', 'rate', 'cost', 'savings', 'effect', 'calculated', 'good', 'faith', 'responsible', 'financial', 'accounting', 'officer', 'company', '213', 'consistent', 'clause', '9', 'ii', 'definition', 'consolidated', 'ebitda', 'cost', 'savings', 'programs', 'initiated', 'company', 'restricted', 'subsidiaries', 'though', 'cost', 'savings', 'programs', 'fully', 'implemented', 'first', 'day', 'relevant', 'period', 'b', 'determining', 'amount', 'indebtedness', 'outstanding', 'date', 'determination', 'pro', 'forma', 'effect', 'shall', 'given', 'incurrence', 'repayment', 'repurchase', 'defeasance', 'acquisition', 'retirement', 'discharge', 'indebtedness', 'transaction', 'occurred', 'first', 'day', 'relevant', 'period', 'calculating', 'fixed', 'charge', 'coverage', 'ratio', 'pro', 'forma', 'effect', 'not', 'given', 'indebtedness', 'incurred', 'date', 'determination', 'pursuant', 'second', 'paragraph', 'covenant', 'set', 'forth', 'limitation', 'indebtedness', 'purpose', 'calculation', 'fixed', 'charge', 'coverage', 'ratio', 'clause', '5', 'second', 'paragraph', 'ii', 'repayment', 'repurchase', 'redemption', 'defeasance', 'discharge', 'indebtedness', 'date', 'determination', 'extent', 'repayment', 'repurchase', 'redemption', 'defeasance', 'discharge', 'made', 'proceeds', 'indebtedness', 'incurred', 'pursuant', 'second', 'paragraph', 'covenant', 'limitation', 'indebtedness', 'gilt', 'rate', 'means', 'respect', 'redemption', 'date', 'yield', 'maturity', 'redemption', 'date', 'uk', 'government', 'obligations', 'fixed', 'maturity', 'compiled', 'office', 'national', 'statistics', 'published', 'recent', 'financial', 'statistics', 'become', 'publicly', 'available', 'least', 'two', 'business', 'days', 'london', 'prior', 'redemption', 'date', 'financial', 'statistics', 'not', 'published', 'available', 'publicly', 'available', 'source', 'similar', 'market', 'data', 'selected', 'company', 'good', 'faith', 'nearly', 'equal', 'period', 'redemption', 'date', '2019', 'provided', 'however', 'period', 'redemption', 'date', '2019', 'less', 'one', 'year', 'weekly', 'average', 'yields', 'actually', 'traded', 'uk', 'government', 'obligations', 'denominated', 'sterling', 'adjusted', 'fixed', 'maturity', 'one', 'year', 'shall', 'used', 'provided', 'no', 'case', 'shall', 'gilt', 'rate', 'less', 'zero', 'governmental', 'authority', 'means', 'nation', 'sovereign', 'government', 'state', 'province', 'territory', 'political', 'subdivision', 'thereof', 'entity', 'authority', 'exercising', 'executive', 'legislative', 'judicial', 'regulatory', 'self', 'regulatory', 'administrative', 'functions', 'pertaining', 'government', 'including', 'central', 'bank', 'stock', 'exchange', 'government', 'obligations', 'mean', 'direct', 'obligations', 'obligations', 'guaranteed', 'permissible', 'agency', 'instrumentality', 'government', 'payment', 'full', 'faith', 'credit', 'agency', 'instrumentality', 'government', 'pledged', 'guarantee', 'means', 'obligation', 'contingent', 'otherwise', 'person', 'directly', 'indirectly', 'guaranteeing', 'indebtedness', 'person', 'including', 'obligation', 'direct', 'indirect', 'contingent', 'otherwise', 'person', '1', 'purchase', 'pay', 'advance', 'supply', 'funds', 'purchase', 'payment', 'indebtedness', 'person', 'whether', 'arising', 'virtue', 'partnership', 'arrangements', 'agreements', 'keep', 'well', 'purchase', 'assets', 'goods', 'securities', 'services', 'take', 'pay', 'maintain', 'financial', 'statement', 'conditions', 'otherwise', '2', 'entered', 'primarily', 'purposes', 'assuring', 'manner', 'obligee', 'indebtedness', 'payment', 'thereof', 'protect', 'obligee', 'loss', 'respect', 'thereof', 'whole', 'part', 'provided', 'however', 'term', 'guarantee', 'not', 'include', 'endorsements', 'collection', 'deposit', 'ordinary', 'course', 'business', 'term', 'guarantee', 'used', 'verb', 'corresponding', 'meaning', 'guarantor', 'means', 'company', 'successor', 'company', 'restricted', 'subsidiary', 'guarantees', 'notes', 'hedging', 'obligations', 'person', 'means', 'obligations', 'person', 'pursuant', 'interest', 'rate', 'agreement', 'currency', 'agreement', 'commodity', 'hedging', 'agreement', 'hedging', 'agreement', 'holder', 'means', 'person', 'whose', 'name', 'notes', 'registered', 'registrar', 'books', 'shall', 'initially', 'cede', 'co', 'nominee', 'dtc', 'case', 'dollar', 'notes', 'respective', 'nominee', 'clearstream', 'euroclear', 'case', 'sterling', 'notes', 'holding', 'company', 'means', 'relation', 'person', 'person', 'subsidiary', '214', 'ifrs', 'means', 'international', 'financial', 'reporting', 'standards', 'formerly', 'international', 'accounting', 'standards', 'effect', 'issue', 'date', 'provided', 'date', 'issue', 'date', 'company', 'may', 'make', 'irrevocable', 'election', 'establish', 'ifrs', 'shall', 'mean', 'ifrs', 'endorsed', 'time', 'time', 'european', 'union', 'variation', 'thereof', 'company', 'restricted', 'subsidiaries', 'may', 'required', 'comply', 'company', 'shall', 'give', 'written', 'notice', 'election', 'trustee', 'notwithstanding', 'foregoing', 'respect', 'ratios', 'calculations', 'based', 'upon', 'ifrs', 'contained', 'indenture', 'lease', 'concession', 'license', 'property', 'would', 'considered', 'operating', 'lease', 'ifrs', 'issue', 'date', 'guarantee', 'given', 'company', 'restricted', 'subsidiary', 'ordinary', 'course', 'business', 'solely', 'connection', 'respect', 'obligations', 'company', 'restricted', 'subsidiary', 'operating', 'lease', 'shall', 'computed', 'accordance', 'ifrs', 'effect', 'issue', 'date', 'incur', 'means', 'issue', 'create', 'assume', 'enter', 'guarantee', 'incur', 'extend', 'otherwise', 'become', 'liable', 'provided', 'however', 'indebtedness', 'capital', 'stock', 'person', 'existing', 'time', 'person', 'becomes', 'restricted', 'subsidiary', 'whether', 'merger', 'consolidation', 'acquisition', 'otherwise', 'deemed', 'incurred', 'restricted', 'subsidiary', 'time', 'becomes', 'restricted', 'subsidiary', 'terms', 'incurred', 'incurrence', 'meanings', 'correlative', 'foregoing', 'indebtedness', 'pursuant', 'revolving', 'credit', 'similar', 'facility', 'shall', 'incurred', 'time', 'funds', 'borrowed', 'thereunder', 'indebtedness', 'means', 'respect', 'person', 'date', 'determination', 'without', 'duplication', '1', 'principal', 'indebtedness', 'person', 'borrowed', 'money', '2', 'principal', 'obligations', 'person', 'evidenced', 'bonds', 'debentures', 'notes', 'similar', 'instruments', '3', 'reimbursement', 'obligations', 'person', 'respect', 'letters', 'credit', 'bankers', 'acceptances', 'similar', 'instruments', 'amount', 'obligations', 'equal', 'time', 'aggregate', 'undrawn', 'unexpired', 'amount', 'letters', 'credit', 'instruments', 'plus', 'aggregate', 'amount', 'drawings', 'thereunder', 'reimbursed', 'except', 'extent', 'reimbursement', 'obligations', 'relate', 'trade', 'payables', 'obligations', 'satisfied', 'within', '30', 'days', 'incurrence', 'case', 'extent', 'underlying', 'obligation', 'respect', 'instrument', 'issued', 'would', 'treated', 'indebtedness', '4', 'principal', 'component', 'obligations', 'person', 'pay', 'deferred', 'unpaid', 'purchase', 'price', 'property', 'except', 'trade', 'payables', 'deferred', 'payment', 'arranged', 'primarily', 'means', 'raising', 'finance', 'purchase', 'price', 'due', 'one', 'year', 'date', 'placing', 'property', 'service', 'taking', 'final', 'delivery', 'title', 'thereto', '5', 'capitalized', 'lease', 'obligations', 'person', '6', 'principal', 'component', 'obligations', 'liquidation', 'preference', 'person', 'respect', 'disqualified', 'stock', 'respect', 'restricted', 'subsidiary', 'preferred', 'stock', 'excluding', 'case', 'accrued', 'dividends', '7', 'principal', 'component', 'indebtedness', 'persons', 'secured', 'lien', 'asset', 'person', 'whether', 'not', 'indebtedness', 'assumed', 'person', 'provided', 'however', 'amount', 'indebtedness', 'lesser', 'fair', 'market', 'value', 'asset', 'date', 'determination', 'b', 'amount', 'indebtedness', 'persons', '8', 'guarantees', 'person', 'principal', 'component', 'indebtedness', 'persons', 'extent', 'guaranteed', 'person', '9', 'extent', 'not', 'otherwise', 'included', 'definition', 'net', 'obligations', 'person', 'currency', 'agreements', 'interest', 'rate', 'agreements', 'amount', 'obligations', 'equal', 'time', 'termination', 'value', 'agreement', 'arrangement', 'giving', 'rise', 'obligation', 'would', 'payable', 'person', 'time', '215', 'amount', 'indebtedness', 'person', 'time', 'case', 'revolving', 'credit', 'similar', 'facility', 'shall', 'total', 'amounts', 'funds', 'borrowed', 'outstanding', 'amount', 'indebtedness', 'person', 'date', 'shall', 'determined', 'set', 'forth', 'otherwise', 'provided', 'indenture', 'respect', 'letters', 'credit', 'guarantees', 'indebtedness', 'specified', 'clause', '7', '8', 'shall', 'equal', 'amount', 'thereof', 'would', 'appear', 'balance', 'sheet', 'person', 'excluding', 'notes', 'thereto', 'prepared', 'basis', 'ifrs', 'notwithstanding', 'provisions', 'no', 'event', 'shall', 'following', 'constitute', 'indebtedness', '1', 'contingent', 'obligations', 'incurred', 'ordinary', 'course', 'business', 'obligations', 'respect', 'qualified', 'receivables', 'financings', 'accrued', 'liabilities', 'incurred', 'ordinary', 'course', 'business', 'not', '90', 'days', 'past', 'due', '2', 'connection', 'purchase', 'company', 'restricted', 'subsidiary', 'business', 'post', 'closing', 'payment', 'adjustments', 'seller', 'may', 'become', 'entitled', 'extent', 'payment', 'determined', 'final', 'closing', 'balance', 'sheet', 'payment', 'depends', 'performance', 'business', 'closing', 'provided', 'however', 'time', 'closing', 'amount', 'payment', 'not', 'determinable', 'extent', 'payment', 'thereafter', 'becomes', 'fixed', 'determined', 'amount', 'paid', 'within', '180', 'days', 'thereafter', '3', 'obligations', 'respect', 'workers', 'compensation', 'claims', 'early', 'retirement', 'termination', 'obligations', 'pension', 'fund', 'obligations', 'contributions', 'similar', 'claims', 'obligations', 'contributions', 'social', 'security', 'wage', 'taxes', 'tax', 'sharing', 'agreement', '4', 'subordinated', 'shareholder', 'funding', '5', 'prepayments', 'deposits', 'received', 'clients', 'customers', 'ordinary', 'course', 'business', '6', 'obligations', 'license', 'permit', 'approval', 'guarantees', 'given', 'respect', 'obligations', 'incurred', 'prior', 'issue', 'date', 'ordinary', 'course', 'business', '7', 'deferred', 'prepaid', 'revenues', '8', 'indebtedness', 'respect', 'incurrence', 'company', 'restricted', 'subsidiary', 'indebtedness', 'respect', 'standby', 'letters', 'credit', 'performance', 'bonds', 'surety', 'bonds', 'provided', 'company', 'restricted', 'subsidiary', 'ordinary', 'course', 'business', 'extent', 'letters', 'credit', 'bonds', 'not', 'drawn', 'upon', 'extent', 'drawn', 'upon', 'honored', 'accordance', 'terms', 'reimbursed', 'reimbursed', 'no', 'later', 'fifth', 'business', 'day', 'following', 'receipt', 'person', 'demand', 'reimbursement', 'following', 'payment', 'letter', 'credit', 'bond', '9', 'indebtedness', 'incurred', 'company', 'restricted', 'subsidiary', 'connection', 'transaction', 'substantially', 'concurrent', 'investment', 'made', 'company', 'restricted', 'subsidiary', 'form', 'cash', 'deposited', 'lender', 'indebtedness', 'subsidiary', 'affiliate', 'thereof', 'amount', 'equal', 'indebtedness', 'avoidance', 'doubt', 'indebtedness', 'excluded', 'pursuant', 'clause', '9', 'associated', 'cash', 'deposited', 'connection', 'therewith', 'shall', 'not', 'offset', 'fixed', 'charge', 'coverage', 'ratio', 'consolidated', 'net', 'leverage', 'ratio', '10', 'lease', 'concession', 'license', 'property', 'guarantee', 'thereof', 'would', 'considered', 'operating', 'lease', 'ifrs', 'effect', 'issue', 'date', '11', 'asset', 'retirement', 'obligations', '12', 'liability', 'taxes', 'independent', 'financial', 'advisor', 'means', 'investment', 'banking', 'accounting', 'firm', 'international', 'standing', 'third', 'party', 'appraiser', 'international', 'standing', 'provided', 'however', 'firm', 'appraiser', 'not', 'affiliate', 'company', '216', 'initial', 'investors', 'means', 'investment', 'fund', 'managed', 'advised', 'investindustrial', 'formerly', 'known', 'bi', 'invest', 'holdings', 'direct', 'indirect', 'subsidiaries', 'affiliates', 'company', 'controlled', 'directly', 'indirectly', 'investindustrial', 'formerly', 'bi', 'invest', 'holdings', 'ii', 'primewagon', 'jersey', 'limited', 'iii', 'asmar', 'limited', 'iv', 'adeem', 'automotive', 'manufacturing', 'company', 'limited', 'v', 'international', 'oasis', 'holding', 'company', 'vi', 'stehwaz', 'automotive', 'jersey', 'limited', 'vii', 'respective', 'affiliates', 'funds', 'partnerships', 'managed', 'advised', 'directly', 'indirectly', 'persons', 'described', 'vii', 'inclusive', 'respective', 'affiliates', 'solely', 'capacity', 'limited', 'partner', 'partnership', 'fund', 'initial', 'public', 'offering', 'means', 'equity', 'offering', 'common', 'stock', 'common', 'equity', 'interests', 'company', 'parent', 'successor', 'company', 'parent', 'ipo', 'entity', 'following', 'public', 'market', 'result', 'shares', 'common', 'stock', 'common', 'equity', 'interests', 'ipo', 'entity', 'offering', 'listed', 'internationally', 'recognized', 'exchange', 'traded', 'internationally', 'recognized', 'market', 'intercreditor', 'agreement', 'means', 'intercreditor', 'agreement', 'dated', 'among', 'inter', 'alios', 'issuer', 'company', 'agent', 'security', 'agent', 'amended', 'amended', 'restated', 'replaced', 'time', 'time', 'trustee', 'accede', 'issue', 'date', 'interest', 'rate', 'agreement', 'means', 'respect', 'person', 'interest', 'rate', 'protection', 'agreement', 'interest', 'rate', 'future', 'agreement', 'interest', 'rate', 'option', 'agreement', 'interest', 'rate', 'swap', 'agreement', 'interest', 'rate', 'cap', 'agreement', 'interest', 'rate', 'collar', 'agreement', 'interest', 'rate', 'hedge', 'agreement', 'similar', 'agreement', 'arrangement', 'person', 'party', 'beneficiary', 'inventory', 'funding', 'facility', 'means', 'respect', 'company', 'subsidiaries', 'one', 'debt', 'facilities', 'arrangements', 'including', 'uncommitted', 'revolving', 'facility', 'standard', 'chartered', 'bank', 'lender', 'limited', 'borrower', 'ii', 'agreements', 'relation', 'four', 'inventory', 'funding', 'arrangements', 'china', 'place', 'issue', 'date', 'banks', 'financial', 'institutions', 'providing', 'short', 'term', 'financing', 'indebtedness', 'no', 'longer', '180', 'business', 'days', 'fund', 'transit', 'inventory', 'inventory', 'held', 'sale', 'case', 'amended', 'restated', 'modified', 'renewed', 'refunded', 'replaced', 'restructured', 'refinanced', 'repaid', 'increased', 'extended', 'whole', 'part', 'time', 'time', 'case', 'including', 'agreements', 'instruments', 'documents', 'executed', 'delivered', 'pursuant', 'connection', 'foregoing', 'investment', 'means', 'respect', 'person', 'investments', 'person', 'persons', 'including', 'affiliates', 'form', 'direct', 'indirect', 'advance', 'loan', 'extensions', 'credit', 'advances', 'extensions', 'credit', 'customers', 'suppliers', 'directors', 'officers', 'employees', 'person', 'ordinary', 'course', 'business', 'excluding', 'debt', 'extension', 'credit', 'represented', 'bank', 'deposit', 'time', 'deposit', 'capital', 'contribution', 'means', 'transfer', 'cash', 'property', 'others', 'payment', 'property', 'services', 'account', 'use', 'others', 'incurrence', 'guarantee', 'obligation', 'purchase', 'acquisition', 'capital', 'stock', 'indebtedness', 'similar', 'instruments', 'issued', 'persons', 'items', 'would', 'classified', 'investments', 'balance', 'sheet', 'prepared', 'basis', 'ifrs', 'provided', 'however', 'endorsements', 'negotiable', 'instruments', 'documents', 'ordinary', 'course', 'business', 'not', 'deemed', 'investment', 'purposes', 'certain', 'covenants', 'limitation', 'restricted', 'payments', '1', 'investment', 'include', 'portion', 'proportionate', 'company', 'equity', 'interest', 'restricted', 'subsidiary', 'designated', 'unrestricted', 'subsidiary', 'fair', 'market', 'value', 'net', 'assets', 'restricted', 'subsidiary', 'time', 'restricted', 'subsidiary', 'designated', 'unrestricted', 'subsidiary', 'provided', 'however', 'upon', 'redesignation', 'subsidiary', 'restricted', 'subsidiary', 'company', 'deemed', 'continue', 'permanent', 'investment', 'unrestricted', 'subsidiary', 'amount', 'positive', 'equal', 'company', 'investment', 'subsidiary', 'time', 'redesignation', 'less', 'b', 'portion', 'proportionate', 'company', 'equity', 'interest', 'subsidiary', 'fair', 'market', 'value', 'net', 'assets', 'subsidiary', 'time', 'subsidiary', 'designated', 'restricted', 'subsidiary', '2', 'property', 'transferred', 'unrestricted', 'subsidiary', 'valued', 'fair', 'market', 'value', 'time', 'transfer', '217', '3', 'company', 'restricted', 'subsidiary', 'issues', 'sells', 'otherwise', 'disposes', 'capital', 'stock', 'person', 'restricted', 'subsidiary', 'giving', 'effect', 'thereto', 'person', 'no', 'longer', 'restricted', 'subsidiary', 'investment', 'company', 'restricted', 'subsidiary', 'person', 'remaining', 'giving', 'effect', 'thereto', 'shall', 'not', 'deemed', 'new', 'investment', 'time', 'amount', 'investment', 'outstanding', 'time', 'shall', 'original', 'cost', 'investment', 'reduced', 'company', 'option', 'dividend', 'distribution', 'interest', 'payment', 'return', 'capital', 'repayment', 'amount', 'value', 'received', 'respect', 'investment', 'investment', 'grade', 'means', 'bbb', 'higher', 'p', 'ii', 'baa3', 'higher', 'moody', 'iii', 'equivalent', 'ratings', 'p', 'moody', 'another', 'nationally', 'recognized', 'statistical', 'ratings', 'organization', 'investment', 'grade', 'securities', 'means', '1', 'securities', 'issued', 'directly', 'fully', 'guaranteed', 'insured', 'united', 'states', 'canadian', 'government', 'agency', 'instrumentality', 'thereof', 'cash', 'equivalents', '2', 'securities', 'issued', 'directly', 'fully', 'guaranteed', 'insured', 'permissible', 'jurisdiction', 'switzerland', 'norway', 'japan', 'agency', 'instrumentality', 'thereof', 'cash', 'equivalents', '3', 'debt', 'securities', 'debt', 'instruments', 'rating', 'higher', 'p', 'a3', 'higher', 'moody', 'equivalent', 'rating', 'rating', 'organization', 'no', 'rating', 'moody', 'p', 'exists', 'equivalent', 'rating', 'nationally', 'recognized', 'statistical', 'rating', 'organization', 'excluding', 'debt', 'securities', 'instruments', 'constituting', 'loans', 'advances', 'among', 'company', 'subsidiaries', '4', 'investments', 'fund', 'invests', 'exclusively', 'investments', 'type', 'described', 'clauses', '1', '2', '3', 'fund', 'may', 'also', 'hold', 'cash', 'cash', 'equivalents', 'pending', 'investment', 'distribution', 'investment', 'grade', 'status', 'shall', 'occur', 'notes', 'receive', 'following', '1', 'rating', 'bbb', 'higher', 'p', '2', 'rating', 'baa3', 'higher', 'moody', '3', 'equivalent', 'rating', 'either', 'rating', 'organization', 'no', 'rating', 'moody', 'p', 'exists', 'equivalent', 'rating', 'nationally', 'recognized', 'statistical', 'ratings', 'organization', 'ipo', 'event', 'means', 'occurrence', 'initial', 'public', 'offering', 'listing', 'ipo', 'market', 'capitalization', 'means', 'amount', 'equal', 'total', 'number', 'issued', 'outstanding', 'shares', 'common', 'stock', 'common', 'equity', 'interests', 'ipo', 'entity', 'time', 'closing', 'initial', 'public', 'offering', 'multiplied', 'ii', 'price', 'per', 'share', 'shares', 'common', 'stock', 'common', 'equity', 'interests', 'sold', 'initial', 'public', 'offering', 'irrevocable', 'repayment', 'means', 'repayment', 'repurchase', 'refinancing', 'indebtedness', 'respect', 'irrevocable', 'notice', 'repayment', 'similar', 'irrevocable', 'notice', 'delivered', 'issue', 'date', 'means', '2017', 'lien', 'means', 'mortgage', 'pledge', 'security', 'interest', 'encumbrance', 'lien', 'charge', 'kind', 'including', 'conditional', 'sale', 'title', 'retention', 'agreement', 'lease', 'nature', 'thereof', 'limited', 'condition', 'acquisition', 'means', 'acquisition', 'including', 'way', 'merger', 'amalgamation', 'consolidation', 'company', 'one', 'restricted', 'subsidiaries', 'whose', 'consummation', 'not', 'conditioned', 'upon', 'availability', 'obtaining', 'third', 'party', 'financing', 'listing', 'means', 'listing', 'part', 'share', 'capital', 'company', 'subsidiary', 'company', 'recognised', 'investment', 'exchange', 'term', 'used', 'financial', 'services', 'markets', 'act', '2000', 'sale', 'issue', 'way', 'flotation', 'public', 'offering', 'relation', 'company', 'subsidiary', 'company', 'jurisdiction', 'country', '218', 'management', 'advances', 'means', 'loans', 'advances', 'distributions', 'made', 'guarantees', 'respect', 'loans', 'advances', 'made', 'directors', 'officers', 'employees', 'consultants', 'parent', 'company', 'restricted', 'subsidiary', 'management', 'equity', 'plan', 'management', 'vehicle', '1', 'respect', 'travel', 'entertainment', 'moving', 'related', 'expenses', 'incurred', 'ordinary', 'course', 'business', 'b', 'purposes', 'funding', 'person', 'purchase', 'capital', 'stock', 'company', 'subsidiaries', 'parent', 'entitlement', 'person', 'plan', 'vehicle', 'connection', 'plan', 'upon', 'meeting', 'specified', 'exit', 'targets', 'case', 'sub', 'clause', 'b', 'approval', 'board', 'directors', 'company', '2', 'respect', 'moving', 'related', 'expenses', 'incurred', 'connection', 'closing', 'consolidation', 'facility', 'office', '3', 'not', 'exceeding', '3', 'million', 'aggregate', 'outstanding', 'time', 'management', 'investors', 'means', 'officers', 'directors', 'employees', 'members', 'management', 'consultants', 'parent', 'company', 'respective', 'subsidiaries', 'spouses', 'family', 'members', 'relatives', 'thereof', 'trust', 'partnership', 'entity', 'benefit', 'beneficial', 'owner', 'directly', 'indirectly', 'foregoing', 'heirs', 'executors', 'successors', 'legal', 'representatives', 'date', 'beneficially', 'right', 'acquire', 'directly', 'indirectly', 'capital', 'stock', 'company', 'restricted', 'subsidiary', 'parent', 'market', 'capitalization', 'means', 'amount', 'equal', 'total', 'number', 'issued', 'outstanding', 'shares', 'common', 'stock', 'common', 'equity', 'interests', 'ipo', 'entity', 'date', 'declaration', 'relevant', 'dividend', 'multiplied', 'ii', 'arithmetic', 'mean', 'closing', 'prices', 'per', 'share', 'common', 'stock', 'common', 'equity', 'interests', '30', 'consecutive', 'trading', 'days', 'immediately', 'preceding', 'date', 'declaration', 'dividend', 'moody', 'means', 'moody', 'investors', 'service', 'inc', 'successors', 'assigns', 'nationally', 'recognized', 'statistical', 'rating', 'organization', 'nationally', 'recognized', 'statistical', 'rating', 'organization', 'means', 'nationally', 'recognized', 'statistical', 'rating', 'organization', 'within', 'meaning', 'rule', '15c3', '1', 'c', '2', 'vi', 'f', 'exchange', 'act', 'net', 'available', 'cash', 'asset', 'disposition', 'means', 'cash', 'payments', 'received', 'including', 'cash', 'payments', 'received', 'way', 'deferred', 'payment', 'principal', 'pursuant', 'note', 'instalment', 'receivable', 'otherwise', 'net', 'proceeds', 'sale', 'disposition', 'securities', 'received', 'consideration', 'received', 'excluding', 'consideration', 'received', 'form', 'assumption', 'acquiring', 'person', 'indebtedness', 'obligations', 'relating', 'properties', 'assets', 'subject', 'asset', 'disposition', 'received', 'non', 'cash', 'form', 'therefrom', 'case', 'net', '1', 'legal', 'accounting', 'investment', 'banking', 'title', 'recording', 'tax', 'expenses', 'commissions', 'fees', 'expenses', 'incurred', 'taxes', 'paid', 'required', 'paid', 'accrued', 'liability', 'ifrs', 'taking', 'account', 'available', 'tax', 'credits', 'deductions', 'tax', 'sharing', 'agreements', 'consequence', 'asset', 'disposition', '2', 'payments', 'made', 'indebtedness', 'secured', 'assets', 'subject', 'asset', 'disposition', 'accordance', 'terms', 'lien', 'upon', 'assets', 'terms', 'applicable', 'law', 'required', 'repaid', 'proceeds', 'asset', 'disposition', '3', 'distributions', 'payments', 'required', 'made', 'minority', 'interest', 'holders', 'parent', 'company', 'respective', 'subsidiaries', 'subsidiaries', 'joint', 'ventures', 'result', 'asset', 'disposition', '4', 'deduction', 'appropriate', 'amounts', 'required', 'provided', 'seller', 'reserve', 'basis', 'ifrs', 'liabilities', 'associated', 'assets', 'disposed', 'asset', 'disposition', 'retained', 'company', 'restricted', 'subsidiary', 'asset', 'disposition', '219', 'net', 'cash', 'proceeds', 'respect', 'issuance', 'sale', 'capital', 'stock', 'subordinated', 'shareholder', 'funding', 'means', 'cash', 'proceeds', 'issuance', 'sale', 'net', 'attorneys', 'fees', 'accountants', 'fees', 'underwriters', 'placement', 'agents', 'fees', 'listing', 'fees', 'discounts', 'commissions', 'brokerage', 'consultant', 'fees', 'charges', 'actually', 'incurred', 'connection', 'issuance', 'sale', 'net', 'taxes', 'paid', 'payable', 'result', 'issuance', 'sale', 'taking', 'account', 'available', 'tax', 'credit', 'deductions', 'tax', 'sharing', 'arrangements', 'new', 'revolving', 'credit', 'facility', 'agreement', 'means', 'revolving', 'credit', 'facility', 'entered', 'entered', 'issue', 'date', 'among', 'inter', 'alios', 'limited', 'borrower', 'guarantor', 'issuer', 'company', 'group', 'limited', 'guarantors', 'j', 'p', 'morgan', 'limited', 'deutsche', 'bank', 'ag', 'london', 'branch', 'goldman', 'sachs', 'bank', 'usa', 'mandated', 'lead', 'arrangers', 'lenders', 'note', 'documents', 'means', 'notes', 'including', 'additional', 'notes', 'indenture', 'intercreditor', 'agreement', 'additional', 'intercreditor', 'agreement', 'security', 'documents', 'notes', 'proceeds', 'loan', 'means', 'loan', 'incurred', 'aston', 'martin', 'lagonda', 'limited', 'notes', 'proceeds', 'loan', 'agreement', 'notes', 'proceeds', 'loan', 'agreement', 'means', 'loan', 'agreement', 'dated', 'around', 'issue', 'date', 'issuer', 'aston', 'martin', 'lagonda', 'limited', 'pursuant', 'issuer', 'lend', 'proceeds', 'issuance', 'notes', 'around', 'issue', 'date', 'obligations', 'means', 'principal', 'interest', 'penalties', 'fees', 'indemnifications', 'reimbursements', 'damages', 'liabilities', 'amounts', 'payable', 'documentation', 'governing', 'indebtedness', 'offering', 'memorandum', 'means', 'offering', 'memorandum', 'relation', 'notes', 'officer', 'means', 'respect', 'person', '1', 'chairman', 'board', 'directors', 'chief', 'executive', 'officer', 'president', 'chief', 'financial', 'officer', 'vice', 'president', 'treasurer', 'director', 'managing', 'director', 'secretary', 'person', 'b', 'person', 'owned', 'managed', 'single', 'entity', 'entity', '2', 'individual', 'designated', 'officer', 'purposes', 'indenture', 'board', 'directors', 'person', 'officer', 'certificate', 'means', 'respect', 'person', 'certificate', 'signed', 'one', 'officer', 'person', 'opinion', 'counsel', 'means', 'written', 'opinion', 'legal', 'counsel', 'reasonably', 'satisfactory', 'trustee', 'counsel', 'may', 'employee', 'counsel', 'company', 'subsidiaries', 'orders', 'production', 'means', 'applicable', 'measurement', 'date', 'expected', 'consolidated', 'ebitda', 'fully', 'committed', 'orders', 'cars', 'customers', 'company', 'restricted', 'subsidiaries', 'loaded', 'onto', 'company', 'restricted', 'subsidiaries', 'internal', 'scheduling', 'system', 'dealers', 'can', 'not', 'unilaterally', 'cancel', 'less', 'expected', 'associated', 'costs', 'based', 'relevant', 'production', 'schedule', 'parent', 'means', 'person', 'company', 'time', 'becomes', 'subsidiary', 'issue', 'date', 'holding', 'companies', 'established', 'permitted', 'holder', 'purposes', 'holding', 'investment', 'parent', 'parent', 'expenses', 'means', '1', 'costs', 'including', 'professional', 'fees', 'expenses', 'incurred', 'parent', 'connection', 'reporting', 'obligations', 'otherwise', 'incurred', 'connection', 'compliance', 'applicable', 'laws', 'rules', 'regulations', 'governmental', 'regulatory', 'self', 'regulatory', 'body', 'stock', 'exchange', 'indenture', 'agreement', 'instrument', 'relating', 'indebtedness', 'company', 'restricted', 'subsidiary', 'including', 'respect', 'reports', 'filed', 'respect', 'securities', 'act', 'exchange', 'act', 'respective', 'rules', 'regulations', 'promulgated', 'thereunder', '2', 'customary', 'indemnification', 'obligations', 'parent', 'owing', 'directors', 'officers', 'employees', 'persons', 'charter', 'laws', 'pursuant', 'written', 'agreements', 'person', 'extent', 'relating', 'company', 'subsidiaries', '220', '3', 'obligations', 'parent', 'respect', 'director', 'officer', 'insurance', 'including', 'premiums', 'therefor', 'extent', 'relating', 'company', 'subsidiaries', '4', 'fees', 'expenses', 'payable', 'parent', 'connection', 'transactions', '5', 'general', 'corporate', 'overhead', 'expenses', 'including', 'professional', 'fees', 'expenses', 'operational', 'expenses', 'parent', 'related', 'ownership', 'operation', 'business', 'company', 'restricted', 'subsidiaries', 'b', 'costs', 'expenses', 'respect', 'litigation', 'dispute', 'relating', 'transactions', 'ownership', 'directly', 'indirectly', 'parent', 'related', 'ownership', 'operation', 'business', 'company', 'restricted', 'subsidiaries', '6', 'fees', 'expenses', 'costs', 'relating', 'directly', 'indirectly', 'activities', 'company', 'subsidiaries', 'parent', 'person', 'established', 'purposes', 'connection', 'transactions', 'holds', 'directly', 'indirectly', 'capital', 'stock', 'subordinated', 'shareholder', 'funding', 'company', 'amount', 'not', 'exceed', '1', 'million', 'fiscal', 'year', '7', 'expenses', 'incurred', 'parent', 'connection', 'public', 'offering', 'sale', 'capital', 'stock', 'indebtedness', 'x', 'net', 'proceeds', 'offering', 'sale', 'intended', 'received', 'contributed', 'company', 'restricted', 'subsidiary', 'pro', 'rated', 'amount', 'expenses', 'proportion', 'amount', 'net', 'proceeds', 'intended', 'received', 'contributed', 'z', 'otherwise', 'interim', 'basis', 'prior', 'completion', 'offering', 'long', 'parent', 'shall', 'cause', 'amount', 'expenses', 'repaid', 'company', 'relevant', 'restricted', 'subsidiary', 'proceeds', 'offering', 'promptly', 'completed', 'pari', 'passu', 'indebtedness', 'means', 'indebtedness', 'company', 'guarantor', 'indebtedness', 'guarantee', 'ranks', 'equally', 'right', 'payment', 'notes', 'guarantees', 'case', 'may', 'case', 'secured', 'lien', 'collateral', 'paying', 'agent', 'means', 'person', 'authorized', 'company', 'pay', 'principal', 'premium', 'interest', 'note', 'behalf', 'company', 'permissible', 'agency', 'instrumentality', 'government', 'means', 'agency', 'instrumentality', 'government', 'permissible', 'jurisdiction', 'permissible', 'jurisdiction', 'means', 'member', 'state', 'european', 'union', 'greece', 'portugal', 'italy', 'permitted', 'asset', 'swap', 'means', 'concurrent', 'purchase', 'sale', 'exchange', 'assets', 'used', 'useful', 'similar', 'business', 'combination', 'assets', 'cash', 'cash', 'equivalents', 'temporary', 'cash', 'investments', 'company', 'restricted', 'subsidiaries', 'another', 'person', 'provided', 'cash', 'cash', 'equivalents', 'received', 'excess', 'value', 'cash', 'cash', 'equivalents', 'sold', 'exchanged', 'must', 'applied', 'accordance', 'covenant', 'described', 'certain', 'covenants', 'limitation', 'sales', 'assets', 'subsidiary', 'stock', 'permitted', 'collateral', 'liens', 'means', 'v', 'liens', 'collateral', 'permitted', 'liens', 'liens', 'described', 'clauses', '1', '7', '10', '14', '15', 'extent', 'liens', 'secure', 'indebtedness', 'owing', 'restricted', 'subsidiary', 'not', 'issuer', 'guarantor', '16', '17', '25', '26', '27', '30', 'definition', 'permitted', 'liens', 'w', 'liens', 'collateral', 'secure', 'indebtedness', 'company', 'restricted', 'subsidiary', 'permitted', 'incurred', 'clauses', '1', '2', 'case', '2', 'extent', 'guarantee', 'respect', 'indebtedness', 'otherwise', 'permitted', 'secured', 'specified', 'definition', 'permitted', 'collateral', 'liens', '4', '4', 'c', 'original', 'indebtedness', 'secured', '6', '11', '15', 'second', 'paragraph', 'covenant', 'described', 'certain', 'covenants', 'limitation', 'indebtedness', 'refinancing', 'indebtedness', 'respect', 'indebtedness', 'provided', 'however', 'lien', 'not', 'give', 'entitlement', 'repaid', 'proceeds', 'enforcement', 'collateral', 'manner', 'inconsistent', 'intercreditor', 'agreement', 'additional', 'intercreditor', 'agreement', 'super', 'priority', 'ranking', 'may', 'given', 'liabilities', '221', 'respect', 'indebtedness', 'incurred', 'clause', '1', 'second', 'paragraph', 'covenant', 'described', 'limitation', 'indebtedness', 'hedging', 'obligations', 'permitted', 'clause', '6', 'second', 'paragraph', 'covenant', 'described', 'limitation', 'indebtedness', 'extent', 'hedging', 'obligations', 'relate', 'indebtedness', 'incurred', 'first', 'paragraph', 'clauses', '1', '2', 'case', '2', 'extent', 'guarantee', 'respect', 'indebtedness', 'otherwise', 'permitted', 'secured', 'specified', 'definition', 'permitted', 'collateral', 'liens', '4', '11', 'second', 'paragraph', 'covenant', 'described', 'limitation', 'indebtedness', 'x', 'liens', 'collateral', 'securing', 'indebtedness', 'incurred', 'first', 'paragraph', 'clause', '12', 'second', 'paragraph', 'certain', 'covenants', 'limitation', 'indebtedness', 'provided', 'case', 'clause', 'x', 'giving', 'effect', 'incurrence', 'date', 'consolidated', 'secured', 'net', 'leverage', 'ratio', 'shall', 'equal', 'less', '3', '5', '1', '0', 'liens', 'collateral', 'securing', 'indebtedness', 'incurred', 'clause', '5', 'second', 'paragraph', 'certain', 'covenants', 'limitation', 'indebtedness', 'provided', 'case', 'clause', 'giving', 'effect', 'acquisition', 'transaction', 'date', 'pursuant', 'indebtedness', 'incurred', 'giving', 'effect', 'incurrence', 'date', 'consolidated', 'secured', 'net', 'leverage', 'ratio', 'shall', 'equal', 'less', '3', '5', '1', '0', 'b', 'would', 'not', 'greater', 'immediately', 'prior', 'giving', 'effect', 'acquisition', 'transaction', 'incurrence', 'indebtedness', 'provided', 'parties', 'indebtedness', 'secured', 'liens', 'pursuant', 'clauses', 'w', 'x', 'hereof', 'agent', 'representative', 'trustee', 'entered', 'intercreditor', 'agreement', 'additional', 'intercreditor', 'agreement', 'z', 'liens', 'collateral', 'secure', 'indebtedness', 'basis', 'junior', 'notes', 'provided', 'case', 'clause', 'z', 'holders', 'indebtedness', 'representative', 'accede', 'intercreditor', 'agreement', 'additional', 'intercreditor', 'agreement', 'permitted', 'holders', 'means', 'collectively', '1', 'initial', 'investors', 'affiliate', 'thereof', '2', 'person', 'acting', 'underwriter', 'connection', 'public', 'private', 'offering', 'capital', 'stock', 'parent', 'company', 'acting', 'capacity', '3', 'group', 'within', 'meaning', 'section', '13', '3', 'section', '14', '2', 'exchange', 'act', 'successor', 'provision', 'foregoing', 'members', 'provided', 'case', 'group', 'without', 'giving', 'effect', 'existence', 'group', 'no', 'person', 'group', 'permitted', 'holder', 'beneficial', 'ownership', '50', 'voting', 'stock', 'company', 'direct', 'indirect', 'parent', 'companies', 'person', 'group', 'whose', 'acquisition', 'beneficial', 'ownership', 'constitutes', 'change', 'control', 'respect', 'change', 'control', 'offer', 'made', 'accordance', 'requirements', 'indenture', 'thereafter', 'together', 'affiliates', 'constitute', 'additional', 'permitted', 'holder', 'permitted', 'investment', 'means', 'case', 'company', 'restricted', 'subsidiaries', '1', 'investments', 'restricted', 'subsidiary', 'including', 'capital', 'stock', 'restricted', 'subsidiary', 'company', 'b', 'person', 'including', 'capital', 'stock', 'person', 'engaged', 'similar', 'business', 'person', 'upon', 'making', 'investment', 'become', 'restricted', 'subsidiary', '2', 'investments', 'another', 'person', 'person', 'engaged', 'similar', 'business', 'result', 'investment', 'person', 'merged', 'consolidated', 'otherwise', 'combined', 'transfers', 'conveys', 'substantially', 'assets', 'company', 'restricted', 'subsidiary', '3', 'investments', 'cash', 'cash', 'equivalents', 'temporary', 'cash', 'investments', 'investment', 'grade', 'securities', '4', 'investments', 'receivables', 'owing', 'company', 'restricted', 'subsidiary', 'created', 'acquired', 'ordinary', 'course', 'business', '5', 'investments', 'payroll', 'travel', 'similar', 'advances', 'cover', 'matters', 'expected', 'time', 'advances', 'ultimately', 'treated', 'expenses', 'accounting', 'purposes', 'made', 'ordinary', 'course', 'business', '6', 'management', 'advances', '7', 'investments', 'capital', 'stock', 'obligations', 'securities', 'received', 'settlement', 'debts', 'created', 'ordinary', 'course', 'business', 'owing', 'company', 'restricted', '222', 'subsidiary', 'result', 'foreclosure', 'perfection', 'enforcement', 'lien', 'satisfaction', 'judgments', 'pursuant', 'plan', 'reorganization', 'similar', 'arrangement', 'including', 'upon', 'bankruptcy', 'insolvency', 'debtor', '8', 'investments', 'made', 'result', 'receipt', 'non', 'cash', 'consideration', 'sale', 'disposition', 'property', 'assets', 'including', 'asset', 'disposition', 'excluding', 'permitted', 'asset', 'swap', 'case', 'made', 'compliance', 'certain', 'covenants', 'limitation', 'sales', 'assets', 'subsidiary', 'stock', '9', 'investments', 'existence', 'made', 'pursuant', 'legally', 'binding', 'commitments', 'existence', 'issue', 'date', '10', 'currency', 'agreements', 'interest', 'rate', 'agreements', 'commodity', 'hedging', 'agreements', 'related', 'hedging', 'obligations', 'transactions', 'obligations', 'incurred', 'compliance', 'certain', 'covenants', 'limitation', 'indebtedness', '11', 'investments', 'taken', 'together', 'investments', 'made', 'pursuant', 'clause', '11', 'time', 'outstanding', 'aggregate', 'amount', 'time', 'investment', 'not', 'exceed', 'greater', '25', 'million', '15', '5', 'consolidated', 'ebitda', 'provided', 'investment', 'made', 'pursuant', 'clause', 'person', 'not', 'restricted', 'subsidiary', 'person', 'subsequently', 'becomes', 'restricted', 'subsidiary', 'subsequently', 'designated', 'restricted', 'subsidiary', 'pursuant', 'covenant', 'described', 'certain', 'covenants', 'limitation', 'restricted', 'payments', 'investment', 'shall', 'thereafter', 'deemed', 'made', 'pursuant', 'clause', '1', '2', 'definition', 'permitted', 'investments', 'not', 'clause', '12', 'pledges', 'deposits', 'respect', 'leases', 'utilities', 'provided', 'third', 'parties', 'ordinary', 'course', 'business', 'liens', 'otherwise', 'described', 'definition', 'permitted', 'liens', 'made', 'connection', 'liens', 'permitted', 'covenant', 'described', 'certain', 'covenants', 'limitation', 'liens', '13', 'investment', 'extent', 'made', 'using', 'capital', 'stock', 'company', 'disqualified', 'stock', 'capital', 'stock', 'parent', 'consideration', '14', 'transaction', 'extent', 'constituting', 'investment', 'permitted', 'made', 'accordance', 'provisions', 'second', 'paragraph', 'covenant', 'described', 'certain', 'covenants', 'limitation', 'affiliate', 'transactions', 'except', 'described', 'clauses', '1', '3', '6', '8', '9', '12', 'paragraph', '15', 'investments', 'consisting', 'purchases', 'acquisitions', 'inventory', 'supplies', 'materials', 'equipment', 'licenses', 'leases', 'intellectual', 'property', 'case', 'ordinary', 'course', 'business', 'accordance', 'indenture', '16', 'guarantees', 'keepwells', 'similar', 'arrangements', 'not', 'prohibited', 'covenant', 'described', 'certain', 'covenants', 'limitation', 'indebtedness', '17', 'investments', 'notes', 'notes', 'proceeds', 'loan', 'permitted', 'liens', 'means', 'respect', 'person', '1', 'liens', 'assets', 'property', 'restricted', 'subsidiary', 'not', 'issuer', 'guarantor', 'securing', 'indebtedness', 'restricted', 'subsidiary', 'not', 'issuer', 'guarantor', '2', 'pledges', 'deposits', 'liens', 'workmen', 'compensation', 'laws', 'unemployment', 'insurance', 'laws', 'social', 'security', 'laws', 'similar', 'legislation', 'insurance', 'related', 'obligations', 'including', 'pledges', 'deposits', 'securing', 'liability', 'insurance', 'carriers', 'insurance', 'self', 'insurance', 'arrangements', 'connection', 'bids', 'tenders', 'completion', 'guarantees', 'contracts', 'borrowed', 'money', 'leases', 'secure', 'utilities', 'licenses', 'public', 'statutory', 'obligations', 'secure', 'surety', 'indemnity', 'judgment', 'appeal', 'performance', 'bonds', 'guarantees', 'government', 'contracts', 'similar', 'bonds', 'instruments', 'obligations', 'security', 'contested', 'taxes', 'import', 'customs', 'duties', 'payment', 'rent', 'obligations', 'like', 'nature', 'case', 'incurred', 'ordinary', 'course', 'business', '3', 'liens', 'imposed', 'law', 'including', 'carriers', 'warehousemen', 'mechanics', 'landlords', 'materialmen', 'repairmen', 'like', 'liens', 'case', 'sums', 'not', 'yet', '223', 'overdue', 'period', '60', 'days', 'bonded', 'contested', 'good', 'faith', 'appropriate', 'proceedings', '4', 'liens', 'taxes', 'assessments', 'governmental', 'charges', 'not', 'yet', 'delinquent', 'contested', 'good', 'faith', 'appropriate', 'proceedings', 'provided', 'appropriate', 'reserves', 'required', 'pursuant', 'ifrs', 'made', 'respect', 'thereof', '5', 'liens', 'favor', 'company', 'surety', 'performance', 'bonds', 'guarantees', 'letters', 'credit', 'bankers', 'acceptances', 'not', 'issued', 'support', 'indebtedness', 'borrowed', 'money', 'issued', 'pursuant', 'request', 'account', 'company', 'restricted', 'subsidiary', 'ordinary', 'course', 'business', '6', 'encumbrances', 'ground', 'leases', 'easements', 'including', 'reciprocal', 'easement', 'agreements', 'survey', 'exceptions', 'reservations', 'rights', 'others', 'licenses', 'rights', 'way', 'sewers', 'electric', 'lines', 'telegraph', 'telephone', 'lines', 'similar', 'purposes', 'zoning', 'building', 'codes', 'restrictions', 'including', 'minor', 'defects', 'irregularities', 'title', 'similar', 'encumbrances', 'use', 'real', 'properties', 'liens', 'incidental', 'conduct', 'business', 'company', 'restricted', 'subsidiaries', 'ownership', 'properties', 'not', 'aggregate', 'materially', 'adversely', 'affect', 'value', 'said', 'properties', 'materially', 'impair', 'use', 'operation', 'business', 'company', 'restricted', 'subsidiaries', '7', 'liens', 'assets', 'property', 'company', 'restricted', 'subsidiary', 'securing', 'hedging', 'obligations', 'permitted', 'indenture', '8', 'leases', 'licenses', 'subleases', 'sublicenses', 'assets', 'including', 'real', 'property', 'intellectual', 'property', 'rights', 'case', 'entered', 'ordinary', 'course', 'business', '9', 'liens', 'arising', 'judgments', 'decrees', 'orders', 'awards', 'not', 'giving', 'rise', 'event', 'default', 'long', 'appropriate', 'legal', 'proceedings', 'may', 'duly', 'initiated', 'review', 'judgment', 'decree', 'order', 'award', 'not', 'finally', 'terminated', 'period', 'within', 'proceedings', 'may', 'initiated', 'not', 'expired', '10', 'liens', 'assets', 'property', 'company', 'restricted', 'subsidiary', 'purpose', 'securing', 'capitalized', 'lease', 'obligations', 'purchase', 'money', 'obligations', 'securing', 'payment', 'part', 'purchase', 'price', 'securing', 'indebtedness', 'incurred', 'finance', 'refinance', 'acquisition', 'improvement', 'construction', 'assets', 'property', 'acquired', 'constructed', 'ordinary', 'course', 'business', 'provided', 'aggregate', 'principal', 'amount', 'indebtedness', 'secured', 'liens', 'otherwise', 'permitted', 'incurred', 'indenture', 'b', 'lien', 'may', 'not', 'extend', 'assets', 'property', 'company', 'restricted', 'subsidiary', 'assets', 'property', 'acquired', 'improved', 'constructed', 'leased', 'proceeds', 'indebtedness', 'improvements', 'accessions', 'assets', 'property', '11', 'liens', 'arising', 'virtue', 'statutory', 'common', 'law', 'provisions', 'relating', 'banker', 'liens', 'rights', 'set', 'similar', 'rights', 'remedies', 'deposit', 'accounts', 'funds', 'maintained', 'depositary', 'financial', 'institution', '12', 'liens', 'arising', 'uniform', 'commercial', 'code', 'financing', 'statement', 'filings', 'similar', 'filings', 'applicable', 'jurisdictions', 'regarding', 'operating', 'leases', 'entered', 'company', 'restricted', 'subsidiaries', 'ordinary', 'course', 'business', '13', 'liens', 'existing', 'issue', 'date', '14', 'liens', 'property', 'assets', 'shares', 'stock', 'person', 'time', 'person', 'becomes', 'restricted', 'subsidiary', 'time', 'company', 'restricted', 'subsidiary', 'acquires', 'property', 'assets', 'shares', 'stock', 'including', 'acquisition', 'means', 'merger', 'consolidation', 'business', 'combination', 'transaction', 'company', 'restricted', 'subsidiary', 'provided', 'however', 'liens', 'not', 'created', 'incurred', 'assumed', 'anticipation', 'connection', 'person', 'becoming', 'restricted', 'subsidiary', 'acquisition', 'property', '224', 'assets', 'stock', 'provided', 'liens', 'limited', 'part', 'property', 'assets', 'stock', 'plus', 'improvements', 'accession', 'proceeds', 'dividends', 'distributions', 'connection', 'original', 'property', 'assets', 'stock', 'secured', 'written', 'arrangements', 'liens', 'arose', 'could', 'secure', 'obligations', 'liens', 'relate', '15', 'liens', 'assets', 'property', 'company', 'restricted', 'subsidiary', 'securing', 'indebtedness', 'obligations', 'company', 'restricted', 'subsidiary', 'owing', 'company', 'another', 'restricted', 'subsidiary', 'liens', 'favor', 'company', 'restricted', 'subsidiary', 'arising', 'escrow', 'arrangement', 'relation', 'management', 'equity', 'program', 'extent', 'funded', 'management', 'advances', '16', 'liens', 'permitted', 'collateral', 'liens', 'securing', 'refinancing', 'indebtedness', 'incurred', 'refinance', 'indebtedness', 'previously', 'secured', 'permitted', 'secured', 'indenture', 'pursuant', 'clauses', '25', '30', 'definition', 'provided', 'lien', 'limited', 'part', 'property', 'assets', 'plus', 'improvements', 'accessions', 'proceeds', 'dividends', 'distributions', 'respect', 'thereof', 'secured', 'written', 'arrangements', 'original', 'lien', 'arose', 'could', 'secure', 'indebtedness', 'refinanced', 'respect', 'property', 'could', 'security', 'subject', 'permitted', 'lien', 'hereunder', '17', 'interest', 'title', 'lessor', 'capitalized', 'lease', 'obligation', 'operating', 'lease', '18', 'mortgages', 'liens', 'security', 'interests', 'restrictions', 'encumbrances', 'matters', 'record', 'placed', 'government', 'statutory', 'regulatory', 'authority', 'developer', 'landlord', 'third', 'party', 'property', 'company', 'restricted', 'subsidiary', 'easement', 'rights', 'leased', 'property', 'subordination', 'similar', 'arrangements', 'relating', 'thereto', 'b', 'condemnation', 'eminent', 'domain', 'proceedings', 'affecting', 'real', 'property', '19', 'encumbrance', 'restriction', 'including', 'put', 'call', 'arrangements', 'respect', 'capital', 'stock', 'joint', 'venture', 'similar', 'arrangement', 'pursuant', 'joint', 'venture', 'similar', 'agreement', '20', 'liens', 'property', 'assets', 'construction', 'related', 'rights', 'favor', 'contractor', 'developer', 'arising', 'progress', 'partial', 'payments', 'third', 'party', 'relating', 'property', 'assets', '21', 'liens', 'cash', 'accounts', 'securing', 'indebtedness', 'incurred', 'clause', '10', 'second', 'paragraph', 'covenant', 'described', 'certain', 'covenants', 'limitation', 'indebtedness', 'local', 'financial', 'institutions', '22', 'liens', 'escrowed', 'proceeds', 'benefit', 'related', 'holders', 'debt', 'securities', 'indebtedness', 'underwriters', 'arrangers', 'thereof', 'cash', 'set', 'aside', 'time', 'incurrence', 'indebtedness', 'government', 'securities', 'purchased', 'cash', 'either', 'case', 'extent', 'cash', 'government', 'securities', 'prefund', 'payment', 'interest', 'indebtedness', 'held', 'escrow', 'account', 'similar', 'arrangement', 'applied', 'purpose', '23', 'liens', 'securing', 'arising', 'reason', 'netting', 'set', 'arrangement', 'entered', 'ordinary', 'course', 'banking', 'trading', 'activities', 'liens', 'cash', 'accounts', 'securing', 'cash', 'pooling', 'arrangements', '24', 'liens', 'arising', 'conditional', 'sale', 'title', 'retention', 'hire', 'purchase', 'consignment', 'similar', 'arrangements', 'sale', 'goods', 'entered', 'ordinary', 'course', 'business', '25', 'liens', 'incurred', 'ordinary', 'course', 'business', 'respect', 'obligations', 'not', 'exceed', 'greater', '25', 'million', '15', '5', 'consolidated', 'ebitda', 'one', 'time', 'outstanding', '26', 'permitted', 'collateral', 'liens', '27', 'liens', 'capital', 'stock', 'securities', 'assets', 'unrestricted', 'subsidiary', 'secure', 'indebtedness', 'unrestricted', 'subsidiary', '225', '28', 'security', 'granted', 'marketable', 'securities', 'portfolio', 'described', 'clause', '9', 'definition', 'cash', 'equivalents', 'connection', 'disposal', 'thereof', 'third', 'party', '29', 'liens', 'receivables', 'assets', 'incurred', 'connection', 'qualified', 'receivables', 'financing', '30', 'liens', 'indebtedness', 'permitted', 'incurred', 'pursuant', 'clauses', '14', '15', 'second', 'paragraph', 'covenant', 'described', 'certain', 'covenants', 'limitation', 'indebtedness', '31', 'liens', 'property', 'assets', 'securing', 'inventory', 'funding', 'facility', 'permitted', 'reorganization', 'means', 'reorganization', 'transaction', 'comprising', 'incorporation', 'new', 'direct', 'parent', 'company', 'new', 'holdco', 'transfer', 'capital', 'stock', 'company', 'new', 'holdco', 'provided', '1', 'new', 'holdco', 'shall', 'person', 'organized', 'existing', 'united', 'states', 'america', 'canada', 'ii', 'permissible', 'jurisdiction', 'iii', 'switzerland', 'norway', 'japan', '2', 'new', 'holdco', 'acquire', 'capital', 'stock', 'company', 'held', 'aston', 'martin', 'holdings', 'uk', 'limited', 'shall', 'entered', 'confirmation', 'deed', 'similar', 'instrument', 'x', 'confirming', 'first', 'priority', 'pledge', 'capital', 'stock', 'company', 'formed', 'part', 'collateral', 'time', 'permitted', 'reorganization', 'favor', 'holders', 'notes', 'assuming', 'relevant', 'obligations', 'aston', 'martin', 'holdings', 'uk', 'limited', 'security', 'document', 'intercreditor', 'agreement', '3', 'company', 'provide', 'trustee', 'security', 'agent', 'officer', 'certificate', 'confirming', 'no', 'default', 'continuing', 'would', 'arise', 'result', 'permitted', 'reorganization', '4', 'issuer', 'provide', 'trustee', 'certificate', 'board', 'directors', 'new', 'holdco', 'confirms', 'solvency', 'new', 'holdco', 'giving', 'effect', 'permitted', 'reorganization', 'upon', 'permitted', 'reorganization', 'aston', 'martin', 'holdings', 'uk', 'limited', 'shall', 'released', 'obligations', 'indenture', 'security', 'documents', 'intercreditor', 'agreement', 'additional', 'intercreditor', 'agreement', 'person', 'means', 'individual', 'corporation', 'partnership', 'joint', 'venture', 'association', 'joint', 'stock', 'company', 'trust', 'unincorporated', 'organization', 'limited', 'liability', 'company', 'government', 'agency', 'political', 'subdivision', 'thereof', 'entity', 'preference', 'shares', 'means', 'preference', 'shares', 'issued', 'aston', 'martin', 'holdings', 'uk', 'limited', 'certain', 'allotted', 'april', '29', '2015', 'remaining', 'preference', 'shares', 'allotted', 'april', '15', '2016', 'preferred', 'stock', 'applied', 'capital', 'stock', 'person', 'means', 'capital', 'stock', 'class', 'classes', 'however', 'designated', 'preferred', 'payment', 'dividends', 'distribution', 'assets', 'upon', 'voluntary', 'involuntary', 'liquidation', 'dissolution', 'person', 'shares', 'capital', 'stock', 'class', 'person', 'pricing', 'date', 'means', '2017', 'respect', 'additional', 'notes', 'date', 'final', 'offering', 'memorandum', 'relating', 'offering', 'additional', 'notes', 'public', 'debt', 'means', 'indebtedness', 'consisting', 'bonds', 'debentures', 'notes', 'similar', 'debt', 'securities', 'issued', '1', 'public', 'offering', 'registered', 'securities', 'act', '2', 'private', 'placement', 'institutional', 'investors', 'underwritten', 'resale', 'accordance', 'rule', '144a', 'regulation', 'securities', 'act', 'whether', 'not', 'includes', 'registration', 'rights', 'entitling', 'holders', 'debt', 'securities', 'registration', 'thereof', 'sec', 'public', 'resale', 'public', 'market', 'means', 'time', '1', 'equity', 'offering', 'consummated', '2', 'shares', 'common', 'stock', 'common', 'equity', 'interests', 'ipo', 'entity', 'market', 'value', 'excess', '75', '0', 'million', 'date', 'equity', 'offering', 'distributed', 'pursuant', 'equity', 'offering', 'public', 'offering', 'means', 'offering', 'including', 'initial', 'public', 'offering', 'shares', 'common', 'stock', 'common', 'equity', 'interests', 'listed', 'exchange', 'publicly', 'offered', 'shall', 'include', 'offering', 'pursuant', 'rule', '144a', 'regulation', 'securities', 'act', 'professional', 'market', 'investors', 'similar', 'persons', 'purchase', 'money', 'obligations', 'means', 'indebtedness', 'incurred', 'finance', 'refinance', 'acquisition', 'leasing', 'construction', 'improvement', 'property', 'real', 'personal', 'assets', 'including', 'capital', 'stock', 'whether', 'acquired', 'direct', 'acquisition', 'property', 'assets', 'acquisition', 'capital', 'stock', 'person', 'owning', 'property', 'assets', 'otherwise', '226', 'qualified', 'receivables', 'financing', 'means', 'receivables', 'financing', 'receivables', 'subsidiary', 'meets', 'following', 'conditions', '1', 'board', 'directors', 'company', 'shall', 'determined', 'good', 'faith', 'qualified', 'receivables', 'financing', 'including', 'financing', 'terms', 'covenants', 'termination', 'events', 'provisions', 'aggregate', 'economically', 'fair', 'reasonable', 'company', 'receivables', 'subsidiary', '2', 'sales', 'accounts', 'receivable', 'related', 'assets', 'receivables', 'subsidiary', 'made', 'fair', 'market', 'value', '3', 'financing', 'terms', 'covenants', 'termination', 'events', 'provisions', 'thereof', 'shall', 'market', 'terms', 'determined', 'good', 'faith', 'company', 'may', 'include', 'standard', 'securitization', 'undertakings', 'grant', 'security', 'interest', 'accounts', 'receivable', 'company', 'restricted', 'subsidiaries', 'receivables', 'subsidiary', 'secure', 'indebtedness', 'credit', 'facility', 'indebtedness', 'respect', 'notes', 'shall', 'not', 'deemed', 'qualified', 'receivables', 'financing', 'receivables', 'assets', 'means', 'assets', 'subject', 'qualified', 'receivables', 'financing', 'receivables', 'fees', 'means', 'distributions', 'payments', 'made', 'directly', 'means', 'discounts', 'respect', 'participation', 'interest', 'issued', 'sold', 'connection', 'fees', 'paid', 'person', 'not', 'restricted', 'subsidiary', 'connection', 'receivables', 'financing', 'receivables', 'financing', 'means', 'transaction', 'series', 'transactions', 'may', 'entered', 'company', 'subsidiaries', 'pursuant', 'company', 'subsidiaries', 'may', 'sell', 'convey', 'otherwise', 'transfer', 'receivables', 'subsidiary', 'case', 'transfer', 'company', 'subsidiaries', 'b', 'person', 'case', 'transfer', 'receivables', 'subsidiary', 'may', 'grant', 'security', 'interest', 'accounts', 'receivable', 'whether', 'existing', 'arising', 'future', 'company', 'subsidiaries', 'assets', 'related', 'thereto', 'including', 'collateral', 'securing', 'accounts', 'receivable', 'contracts', 'guarantees', 'obligations', 'respect', 'accounts', 'receivable', 'proceeds', 'accounts', 'receivable', 'assets', 'customarily', 'transferred', 'respect', 'security', 'interest', 'customarily', 'granted', 'connection', 'asset', 'securitization', 'transactions', 'involving', 'accounts', 'receivable', 'hedging', 'obligations', 'entered', 'company', 'subsidiary', 'connection', 'accounts', 'receivable', 'receivables', 'repurchase', 'obligation', 'means', 'obligation', 'seller', 'receivables', 'qualified', 'receivables', 'financing', 'repurchase', 'receivables', 'arising', 'result', 'breach', 'representation', 'warranty', 'covenant', 'otherwise', 'including', 'result', 'receivable', 'portion', 'thereof', 'becoming', 'subject', 'asserted', 'defense', 'dispute', 'set', 'counterclaim', 'kind', 'result', 'action', 'taken', 'failure', 'take', 'action', 'event', 'relating', 'seller', 'receivables', 'subsidiary', 'means', 'wholly', 'owned', 'subsidiary', 'company', 'another', 'person', 'formed', 'purposes', 'engaging', 'qualified', 'receivables', 'financing', 'company', 'company', 'subsidiary', 'company', 'makes', 'investment', 'company', 'subsidiary', 'company', 'transfers', 'accounts', 'receivable', 'related', 'assets', 'engages', 'no', 'activities', 'connection', 'financing', 'accounts', 'receivable', 'company', 'subsidiaries', 'proceeds', 'thereof', 'rights', 'contractual', 'collateral', 'assets', 'relating', 'thereto', 'business', 'activities', 'incidental', 'related', 'business', 'designated', 'board', 'directors', 'company', 'provided', 'receivables', 'subsidiary', '1', 'no', 'portion', 'indebtedness', 'obligations', 'contingent', 'otherwise', 'guaranteed', 'company', 'restricted', 'subsidiary', 'excluding', 'guarantees', 'obligations', 'principal', 'interest', 'indebtedness', 'pursuant', 'standard', 'securitization', 'undertakings', 'ii', 'subject', 'terms', 'substantially', 'equivalent', 'effect', 'guarantee', 'losses', 'securitized', 'sold', 'receivables', 'company', 'restricted', 'subsidiary', 'iii', 'recourse', 'obligates', 'company', 'restricted', 'subsidiary', 'way', 'pursuant', 'standard', 'securitization', 'undertakings', 'iv', 'subjects', 'property', 'asset', 'company', 'restricted', 'subsidiary', 'directly', 'indirectly', 'contingently', 'otherwise', 'satisfaction', 'thereof', 'pursuant', 'standard', 'securitization', 'undertakings', '227', '2', 'neither', 'company', 'nor', 'restricted', 'subsidiary', 'contract', 'agreement', 'arrangement', 'understanding', 'terms', 'company', 'reasonably', 'believes', 'no', 'less', 'favorable', 'company', 'restricted', 'subsidiary', 'might', 'obtained', 'time', 'persons', 'not', 'affiliates', 'company', '3', 'neither', 'company', 'nor', 'restricted', 'subsidiary', 'obligation', 'maintain', 'preserve', 'entity', 'financial', 'condition', 'cause', 'entity', 'achieve', 'certain', 'levels', 'operating', 'results', 'designation', 'board', 'directors', 'company', 'shall', 'evidenced', 'trustee', 'filing', 'trustee', 'copy', 'resolution', 'board', 'directors', 'company', 'giving', 'effect', 'designation', 'officer', 'certificate', 'certifying', 'designation', 'complied', 'foregoing', 'conditions', 'refinance', 'means', 'refinance', 'refund', 'replace', 'renew', 'repay', 'modify', 'restate', 'defer', 'substitute', 'supplement', 'reissue', 'resell', 'extend', 'increase', 'including', 'pursuant', 'defeasance', 'discharge', 'mechanism', 'terms', 'refinances', 'refinanced', 'refinancing', 'used', 'purpose', 'indenture', 'shall', 'correlative', 'meaning', 'refinancing', 'indebtedness', 'means', 'indebtedness', 'incurred', 'refund', 'refinance', 'replace', 'exchange', 'renew', 'repay', 'extend', 'including', 'pursuant', 'defeasance', 'discharge', 'mechanism', 'indebtedness', 'existing', 'date', 'indenture', 'incurred', 'compliance', 'indenture', 'including', 'indebtedness', 'company', 'refinances', 'indebtedness', 'restricted', 'subsidiary', 'indebtedness', 'restricted', 'subsidiary', 'refinances', 'indebtedness', 'company', 'another', 'restricted', 'subsidiary', 'including', 'indebtedness', 'refinances', 'refinancing', 'indebtedness', 'provided', 'however', '1', 'indebtedness', 'refinanced', 'constitutes', 'subordinated', 'indebtedness', 'refinancing', 'indebtedness', 'final', 'stated', 'maturity', 'time', 'refinancing', 'indebtedness', 'incurred', 'later', 'final', 'stated', 'maturity', 'indebtedness', 'refinanced', 'shorter', 'notes', '2', 'refinancing', 'indebtedness', 'incurred', 'aggregate', 'principal', 'amount', 'issued', 'original', 'issue', 'discount', 'aggregate', 'issue', 'price', 'equal', 'less', 'sum', 'aggregate', 'principal', 'amount', 'issued', 'original', 'issue', 'discount', 'aggregate', 'accreted', 'value', 'outstanding', 'indebtedness', 'refinanced', 'plus', 'without', 'duplication', 'additional', 'indebtedness', 'incurred', 'pay', 'interest', 'premiums', 'required', 'instruments', 'governing', 'existing', 'indebtedness', 'tender', 'premiums', 'costs', 'expenses', 'fees', 'incurred', 'connection', 'therewith', '3', 'indebtedness', 'refinanced', 'expressly', 'subordinated', 'notes', 'guarantees', 'refinancing', 'indebtedness', 'subordinated', 'notes', 'guarantees', 'terms', 'least', 'favorable', 'holders', 'contained', 'documentation', 'governing', 'indebtedness', 'refinanced', 'provided', 'however', 'refinancing', 'indebtedness', 'shall', 'not', 'include', 'indebtedness', 'company', 'restricted', 'subsidiary', 'refinances', 'indebtedness', 'unrestricted', 'subsidiary', 'refinancing', 'indebtedness', 'respect', 'credit', 'facility', 'indebtedness', 'may', 'incurred', 'time', 'time', 'termination', 'discharge', 'repayment', 'credit', 'facility', 'indebtedness', 'related', 'taxes', 'means', '1', 'taxes', 'x', 'taxes', 'measured', 'net', 'gross', 'income', 'withholding', 'imposed', 'payments', 'made', 'parent', 'required', 'paid', 'provided', 'taxes', 'fact', 'paid', 'parent', 'virtue', 'organized', 'capital', 'stock', 'outstanding', 'not', 'virtue', 'owning', 'stock', 'equity', 'interests', 'corporation', 'entity', 'directly', 'indirectly', 'company', 'company', 'subsidiaries', 'b', 'issuing', 'holding', 'subordinated', 'shareholder', 'funding', '228', '2', 'c', 'holding', 'company', 'parent', 'directly', 'indirectly', 'company', 'company', 'subsidiaries', 'receiving', 'dividends', 'distributions', 'respect', 'capital', 'stock', 'directly', 'indirectly', 'company', 'company', 'subsidiaries', 'e', 'made', 'payment', 'respect', 'items', 'company', 'permitted', 'make', 'payments', 'parent', 'pursuant', 'certain', 'covenants', 'limitation', 'restricted', 'payments', 'without', 'duplication', 'clause', '1', 'long', 'company', 'member', 'group', 'filing', 'consolidated', 'combined', 'tax', 'return', 'parent', 'taxes', 'measured', 'income', 'parent', 'liable', 'amount', 'not', 'exceed', 'respect', 'taxes', 'amount', 'taxes', 'company', 'subsidiaries', 'would', 'required', 'pay', 'separate', 'company', 'basis', 'consolidated', 'basis', 'company', 'subsidiaries', 'paid', 'tax', 'consolidated', 'combined', 'group', 'affiliated', 'unitary', 'basis', 'behalf', 'affiliated', 'group', 'consisting', 'company', 'subsidiaries', 'responsible', 'officer', 'used', 'respect', 'trustee', 'means', 'officer', 'within', 'corporate', 'trust', 'administration', 'trustee', 'successor', 'group', 'trustee', 'including', 'vice', 'president', 'assistant', 'vice', 'president', 'assistant', 'treasurer', 'officer', 'trustee', 'customarily', 'performing', 'functions', 'similar', 'performed', 'designated', 'officers', 'also', 'means', 'respect', 'particular', 'corporate', 'trust', 'matter', 'officer', 'matter', 'referred', 'knowledge', 'familiarity', 'particular', 'subject', 'restricted', 'investment', 'means', 'investment', 'permitted', 'investment', 'restricted', 'subsidiary', 'means', 'subsidiary', 'company', 'unrestricted', 'subsidiary', 'reversion', 'date', 'means', 'notes', 'achieved', 'investment', 'grade', 'status', 'date', 'notes', 'shall', 'cease', 'investment', 'grade', 'status', 'p', 'means', 'standard', 'poor', 'investors', 'ratings', 'services', 'successors', 'assigns', 'nationally', 'recognized', 'statistical', 'rating', 'organization', 'sec', 'means', 'u', 'securities', 'exchange', 'commission', 'successor', 'thereto', 'secured', 'indebtedness', 'means', 'respect', 'person', 'date', 'determination', 'indebtedness', 'borrowed', 'money', 'secured', 'first', 'priority', 'lien', 'collateral', 'b', 'incurred', 'restricted', 'subsidiary', 'not', 'guarantor', 'case', 'b', 'incurred', 'first', 'paragraph', 'covenant', 'described', 'certain', 'covenants', 'limitation', 'indebtedness', 'clauses', '1', '4', '5', '11', '12', '15', 'second', 'paragraph', 'covenant', 'described', 'certain', 'covenants', 'limitation', 'indebtedness', 'case', 'clause', '4', 'extent', 'indebtedness', 'constitutes', 'indebtedness', 'notes', 'excluding', 'additional', 'notes', 'refinancing', 'indebtedness', 'respect', 'thereof', 'securities', 'act', 'means', 'u', 'securities', 'act', '1933', 'amended', 'rules', 'regulations', 'sec', 'promulgated', 'thereunder', 'amended', 'security', 'documents', 'means', 'security', 'interest', 'agreements', 'pledge', 'agreements', 'security', 'assignments', 'debentures', 'instrument', 'document', 'creating', 'security', 'interests', 'collateral', 'may', 'amended', 'supplemented', 'otherwise', 'modified', 'time', 'time', 'senior', 'finance', 'documents', 'means', 'new', 'revolving', 'credit', 'facility', 'agreement', 'documents', 'defined', 'designated', 'senior', 'finance', 'documents', 'pursuant', 'new', 'revolving', 'credit', 'facility', 'agreement', 'senior', 'management', 'means', 'officers', 'directors', 'members', 'senior', 'management', 'company', 'subsidiaries', 'date', 'beneficially', 'right', 'acquire', 'directly', 'indirectly', 'capital', 'stock', 'company', 'parent', '229', 'significant', 'subsidiary', 'means', 'restricted', 'subsidiary', 'meets', 'following', 'conditions', '1', 'company', 'restricted', 'subsidiaries', 'investments', 'advances', 'restricted', 'subsidiary', 'exceed', '10', 'total', 'assets', 'company', 'restricted', 'subsidiaries', 'consolidated', 'basis', 'end', 'recently', 'completed', 'fiscal', 'year', '2', 'company', 'restricted', 'subsidiaries', 'proportionate', 'share', 'total', 'assets', 'intercompany', 'eliminations', 'restricted', 'subsidiary', 'exceeds', '10', 'total', 'assets', 'company', 'restricted', 'subsidiaries', 'consolidated', 'basis', 'end', 'recently', 'completed', 'fiscal', 'year', '3', 'company', 'restricted', 'subsidiaries', 'equity', 'income', 'continuing', 'operations', 'income', 'taxes', 'extraordinary', 'items', 'cumulative', 'effect', 'change', 'accounting', 'principle', 'restricted', 'subsidiary', 'exceeds', '10', 'income', 'company', 'restricted', 'subsidiaries', 'consolidated', 'basis', 'recently', 'completed', 'fiscal', 'year', 'similar', 'business', 'means', 'businesses', 'services', 'activities', 'engaged', 'company', 'subsidiaries', 'associates', 'issue', 'date', 'b', 'design', 'manufacture', 'including', 'component', 'parts', 'automobiles', 'luxury', 'products', 'c', 'businesses', 'services', 'activities', 'engaged', 'company', 'subsidiaries', 'associates', 'related', 'complementary', 'incidental', 'ancillary', 'similar', 'foregoing', 'extensions', 'developments', 'thereof', 'standard', 'securitization', 'undertakings', 'means', 'representations', 'warranties', 'covenants', 'indemnities', 'guarantees', 'performance', 'entered', 'company', 'subsidiary', 'company', 'company', 'determined', 'good', 'faith', 'customary', 'receivables', 'financing', 'including', 'relating', 'servicing', 'assets', 'receivables', 'subsidiary', 'understood', 'receivables', 'repurchase', 'obligation', 'shall', 'deemed', 'standard', 'securitization', 'undertaking', 'stated', 'maturity', 'means', 'respect', 'security', 'date', 'specified', 'security', 'fixed', 'date', 'payment', 'principal', 'security', 'due', 'payable', 'including', 'pursuant', 'mandatory', 'redemption', 'provision', 'shall', 'not', 'include', 'contingent', 'obligations', 'repay', 'redeem', 'repurchase', 'principal', 'prior', 'date', 'originally', 'scheduled', 'payment', 'thereof', 'sterling', 'applicable', 'premium', 'means', 'respect', 'sterling', 'note', 'greater', '1', '1', 'principal', 'amount', 'sterling', 'note', '2', 'redemption', 'date', 'excess', 'extent', 'positive', 'present', 'value', 'redemption', 'date', 'redemption', 'price', 'sterling', 'note', '2019', 'redemption', 'price', 'expressed', 'percentage', 'principal', 'amount', 'set', 'forth', 'table', 'optional', 'redemption', 'excluding', 'accrued', 'unpaid', 'interest', 'plus', 'ii', 'required', 'interest', 'payments', 'due', 'sterling', 'note', 'including', 'date', 'set', 'forth', 'clause', 'excluding', 'accrued', 'unpaid', 'interest', 'computed', 'upon', 'redemption', 'date', 'using', 'discount', 'rate', 'equal', 'applicable', 'gilt', 'rate', 'redemption', 'date', 'plus', '50', 'basis', 'points', 'b', 'outstanding', 'principal', 'amount', 'sterling', 'note', 'calculated', 'company', 'behalf', 'company', 'person', 'company', 'shall', 'designate', 'avoidance', 'doubt', 'calculation', 'sterling', 'applicable', 'premium', 'shall', 'not', 'duty', 'obligation', 'trustee', 'paying', 'agent', 'sterling', 'equivalent', 'means', 'respect', 'monetary', 'amount', 'currency', 'sterling', 'time', 'determination', 'thereof', 'company', 'trustee', 'amount', 'sterling', 'obtained', 'converting', 'currency', 'sterling', 'involved', 'computation', 'sterling', 'spot', 'rate', 'purchase', 'sterling', 'applicable', 'currency', 'sterling', 'published', 'financial', 'times', 'currency', 'rates', 'section', 'financial', 'times', 'no', 'longer', 'published', 'information', 'no', 'longer', 'available', 'financial', 'times', 'source', 'may', 'selected', 'good', 'faith', 'company', 'date', 'determination', '230', 'subordinated', 'indebtedness', 'means', 'respect', 'person', 'indebtedness', 'whether', 'outstanding', 'issue', 'date', 'thereafter', 'incurred', 'expressly', 'subordinated', 'right', 'payment', 'notes', 'guarantees', 'pursuant', 'written', 'agreement', 'subordinated', 'shareholder', 'funding', 'means', 'collectively', 'funds', 'provided', 'company', 'parent', 'exchange', 'pursuant', 'security', 'instrument', 'agreement', 'capital', 'stock', 'case', 'issued', 'held', 'parent', 'permitted', 'holder', 'together', 'security', 'instrument', 'agreement', 'security', 'instrument', 'capital', 'stock', 'issued', 'payment', 'obligation', 'subordinated', 'shareholder', 'funding', 'provided', 'however', 'subordinated', 'shareholder', 'funding', '1', 'not', 'mature', 'require', 'amortization', 'redemption', 'repayment', 'principal', 'sinking', 'fund', 'payment', 'prior', 'first', 'anniversary', 'stated', 'maturity', 'notes', 'conversion', 'exchange', 'funding', 'capital', 'stock', 'disqualified', 'stock', 'company', 'funding', 'meeting', 'requirements', 'definition', '2', 'not', 'require', 'prior', 'first', 'anniversary', 'stated', 'maturity', 'notes', 'payment', 'cash', 'interest', 'cash', 'withholding', 'amounts', 'cash', 'gross', 'ups', 'similar', 'cash', 'amounts', '3', 'contains', 'no', 'change', 'control', 'similar', 'provisions', 'not', 'accelerate', 'no', 'right', 'declare', 'default', 'event', 'default', 'take', 'enforcement', 'action', 'otherwise', 'require', 'cash', 'payment', 'case', 'prior', 'first', 'anniversary', 'stated', 'maturity', 'notes', '4', 'not', 'provide', 'require', 'security', 'interest', 'encumbrance', 'asset', 'company', 'subsidiaries', '5', 'pursuant', 'terms', 'intercreditor', 'agreement', 'additional', 'intercreditor', 'agreement', 'another', 'intercreditor', 'agreement', 'fully', 'subordinated', 'junior', 'right', 'payment', 'notes', 'pursuant', 'subordination', 'payment', 'blockage', 'enforcement', 'limitation', 'terms', 'customary', 'material', 'respects', 'similar', 'funding', 'no', 'less', 'favorable', 'material', 'respect', 'holders', 'notes', 'contained', 'intercreditor', 'agreement', 'effect', 'issue', 'date', 'respect', 'shareholder', 'liabilities', 'defined', 'therein', 'subsidiary', 'means', 'respect', 'person', '1', 'corporation', 'association', 'business', 'entity', 'partnership', 'joint', 'venture', 'limited', 'liability', 'company', 'similar', 'entity', '50', 'total', 'voting', 'power', 'shares', 'capital', 'stock', 'entitled', 'without', 'regard', 'occurrence', 'contingency', 'vote', 'election', 'directors', 'managers', 'trustees', 'thereof', 'time', 'determination', 'owned', 'controlled', 'directly', 'indirectly', 'person', 'one', 'subsidiaries', 'person', 'combination', 'thereof', '2', 'partnership', 'joint', 'venture', 'limited', 'liability', 'company', 'similar', 'entity', '50', 'capital', 'accounts', 'distribution', 'rights', 'total', 'equity', 'voting', 'interests', 'general', 'limited', 'partnership', 'interests', 'applicable', 'owned', 'controlled', 'directly', 'indirectly', 'person', 'one', 'subsidiaries', 'person', 'combination', 'thereof', 'whether', 'form', 'membership', 'general', 'special', 'limited', 'partnership', 'interests', 'otherwise', 'b', 'person', 'subsidiary', 'person', 'controlling', 'general', 'partner', 'otherwise', 'controls', 'entity', 'successor', 'parent', 'respect', 'person', 'means', 'person', '50', 'total', 'voting', 'power', 'voting', 'stock', 'time', 'first', 'person', 'becomes', 'subsidiary', 'person', 'beneficially', 'owned', 'defined', 'one', 'persons', 'beneficially', 'owned', 'defined', '50', 'total', 'voting', 'power', 'voting', 'stock', 'first', 'person', 'immediately', 'prior', 'first', 'person', 'becoming', 'subsidiary', '231', 'person', 'purposes', 'hereof', 'beneficially', 'meaning', 'correlative', 'term', 'beneficial', 'owner', 'term', 'defined', 'rules', '13d', '3', '13d', '5', 'exchange', 'act', 'effect', 'issue', 'date', 'taxes', 'means', 'present', 'future', 'taxes', 'levies', 'imposts', 'deductions', 'charges', 'duties', 'withholdings', 'charges', 'similar', 'nature', 'including', 'interest', 'penalties', 'liabilities', 'respect', 'thereto', 'imposed', 'government', 'taxing', 'authority', 'tax', 'sharing', 'agreement', 'means', 'group', 'relief', 'tax', 'sharing', 'profit', 'loss', 'pooling', 'similar', 'agreement', 'customary', 'arm', 'length', 'terms', 'entered', 'parent', 'unrestricted', 'subsidiary', 'may', 'amended', 'supplemented', 'waived', 'otherwise', 'modified', 'time', 'time', 'accordance', 'terms', 'thereof', 'indenture', 'temporary', 'cash', 'investments', 'means', 'following', '1', '2', 'investment', 'direct', 'obligations', 'obligations', 'guaranteed', 'united', 'states', 'america', 'canada', 'ii', 'permissible', 'jurisdiction', 'iii', 'switzerland', 'norway', 'japan', 'iv', 'country', 'whose', 'currency', 'funds', 'held', 'specifically', 'pending', 'application', 'making', 'investment', 'capital', 'expenditure', 'company', 'restricted', 'subsidiary', 'country', 'funds', 'v', 'agency', 'instrumentality', 'country', 'member', 'state', 'b', 'direct', 'obligations', 'country', 'recognized', 'united', 'states', 'america', 'rated', 'least', 'p', '1', 'moody', 'either', 'case', 'equivalent', 'rating', 'organization', 'no', 'rating', 'p', 'moody', 'exists', 'equivalent', 'rating', 'nationally', 'recognized', 'statistical', 'rating', 'organization', 'overnight', 'bank', 'deposits', 'investments', 'time', 'deposit', 'accounts', 'certificates', 'deposit', 'bankers', 'acceptances', 'money', 'market', 'deposits', 'respect', 'foreign', 'banks', 'similar', 'instruments', 'maturing', 'not', 'one', 'year', 'date', 'acquisition', 'thereof', 'issued', 'lender', 'new', 'revolving', 'credit', 'facility', 'agreement', 'b', 'institution', 'authorized', 'operate', 'bank', 'countries', 'member', 'states', 'referred', 'subclause', '1', 'c', 'bank', 'trust', 'company', 'organized', 'laws', 'country', 'member', 'state', 'political', 'subdivision', 'thereof', 'case', 'capital', 'surplus', 'aggregating', 'excess', '250', 'million', 'foreign', 'currency', 'equivalent', 'thereof', 'whose', 'long', 'term', 'debt', 'rated', 'least', 'p', '2', 'moody', 'either', 'case', 'equivalent', 'rating', 'organization', 'no', 'rating', 'p', 'moody', 'exists', 'equivalent', 'rating', 'nationally', 'recognized', 'statistical', 'rating', 'organization', 'time', 'investment', 'made', '3', 'repurchase', 'obligations', 'term', 'not', '30', 'days', 'underlying', 'securities', 'types', 'described', 'clause', '1', '2', 'entered', 'person', 'meeting', 'qualifications', 'described', 'clause', '2', '4', 'investments', 'commercial', 'paper', 'maturing', 'not', '270', 'days', 'date', 'acquisition', 'issued', 'person', 'company', 'subsidiaries', 'rating', 'time', 'investment', 'therein', 'made', 'p', '2', 'higher', 'according', 'moody', '2', 'higher', 'according', 'p', 'either', 'case', 'equivalent', 'rating', 'organization', 'no', 'rating', 'p', 'moody', 'exists', 'equivalent', 'rating', 'nationally', 'recognized', 'statistical', 'rating', 'organization', '5', 'investments', 'securities', 'maturing', 'not', 'one', 'year', 'date', 'acquisition', 'issued', 'fully', 'guaranteed', 'state', 'commonwealth', 'territory', 'united', 'states', 'america', 'canada', 'permissible', 'jurisdiction', 'switzerland', 'norway', 'japan', 'political', 'subdivision', 'taxing', 'authority', 'state', 'commonwealth', 'territory', 'country', 'member', 'state', 'rated', 'least', 'bbb', 'p', '232', 'baa3', 'moody', 'either', 'case', 'equivalent', 'rating', 'organization', 'no', 'rating', 'p', 'moody', 'exists', 'equivalent', 'rating', 'nationally', 'recognized', 'statistical', 'rating', 'organization', '6', 'bills', 'exchange', 'issued', 'united', 'states', 'canada', 'permissible', 'jurisdiction', 'switzerland', 'norway', 'japan', 'eligible', 'rediscount', 'relevant', 'central', 'bank', 'accepted', 'bank', 'dematerialized', 'equivalent', '7', 'money', 'market', 'deposit', 'accounts', 'issued', 'offered', 'commercial', 'bank', 'organized', 'laws', 'country', 'member', 'organization', 'economic', 'co', 'operation', 'development', 'case', 'capital', 'surplus', 'excess', '250', 'million', 'foreign', 'currency', 'equivalent', 'thereof', 'whose', 'long', 'term', 'debt', 'rated', 'least', 'p', 'a2', 'moody', 'either', 'case', 'equivalent', 'rating', 'organization', 'no', 'rating', 'p', 'moody', 'exists', 'equivalent', 'rating', 'nationally', 'recognized', 'statistical', 'rating', 'organization', 'time', 'investment', 'made', '8', 'investment', 'funds', 'investing', '95', 'assets', 'securities', 'type', 'described', 'clauses', '1', '7', 'funds', 'may', 'also', 'hold', 'reasonable', 'amounts', 'cash', 'pending', 'investment', 'distribution', '9', 'investments', 'money', 'market', 'funds', 'complying', 'risk', 'limiting', 'conditions', 'rule', '2a', '7', 'successor', 'rule', 'sec', 'u', 'investment', 'company', 'act', '1940', 'amended', 'total', 'assets', 'means', 'consolidated', 'total', 'assets', 'company', 'restricted', 'subsidiaries', 'accordance', 'ifrs', 'shown', 'recent', 'balance', 'sheet', 'person', 'transactions', 'means', 'issuance', 'notes', 'ii', 'entrance', 'security', 'documents', 'iii', 'contribution', 'issuer', 'proceeds', 'notes', 'subordinated', 'intercompany', 'loan', 'aston', 'martin', 'lagonda', 'limited', 'pursuant', 'notes', 'proceeds', 'loan', 'turn', 'use', 'funds', 'received', 'redeem', 'existing', 'notes', 'behalf', 'aston', 'martin', 'capital', 'limited', 'b', 'redeem', 'existing', 'pik', 'notes', 'behalf', 'aston', 'martin', 'holdings', 'uk', 'limited', 'c', 'pay', 'commissions', 'fees', 'expenses', 'associated', 'transactions', 'well', 'fee', 'expected', 'paid', 'holders', 'preference', 'shares', 'relating', 'certain', 'proposed', 'amendments', 'terms', 'preference', 'shares', 'general', 'corporate', 'purposes', 'including', 'working', 'capital', 'iv', 'entrance', 'new', 'revolving', 'credit', 'facility', 'agreement', 'v', 'contribution', 'immediately', 'following', 'repayment', 'existing', 'notes', 'aston', 'martin', 'holdings', 'uk', 'limited', 'entire', 'share', 'capital', 'aston', 'martin', 'capital', 'limited', 'company', 'exchange', 'shares', 'company', 'turn', 'contribute', 'entire', 'share', 'capital', 'aston', 'martin', 'capital', 'limited', 'issuer', 'exchange', 'shares', 'issuer', 'vi', 'payment', 'incurrence', 'fees', 'expenses', 'charges', 'associated', 'foregoing', 'treasury', 'rate', 'means', 'yield', 'maturity', 'time', 'computation', 'united', 'states', 'treasury', 'securities', 'constant', 'maturity', 'compiled', 'published', 'recent', 'federal', 'reserve', 'statistical', 'release', 'h', '15', '519', 'become', 'publicly', 'available', 'least', 'two', 'business', 'days', 'not', 'five', 'business', 'days', 'prior', 'redemption', 'date', 'statistical', 'release', 'not', 'published', 'available', 'publicly', 'available', 'source', 'similar', 'market', 'data', 'selected', 'issuer', 'good', 'faith', 'nearly', 'equal', 'period', 'redemption', 'date', '2019', 'provided', 'however', 'period', 'redemption', 'date', '2019', 'not', 'equal', 'constant', 'maturity', 'united', 'states', 'treasury', 'security', 'weekly', 'average', 'yield', 'given', 'treasury', 'rate', 'shall', 'obtained', 'linear', 'interpolation', 'calculated', 'nearest', 'one', 'twelfth', 'year', 'weekly', 'average', 'yields', 'united', 'states', 'treasury', 'securities', 'yields', 'given', 'except', 'period', 'redemption', 'date', '2019', 'less', 'one', 'year', 'weekly', 'average', 'yield', 'actually', 'traded', 'united', 'states', 'treasury', 'securities', 'adjusted', 'constant', 'maturity', 'one', 'year', 'shall', 'used', 'provided', 'no', 'case', 'shall', 'treasury', 'rate', 'less', 'zero', 'trust', 'indenture', 'act', 'means', 'trust', 'indenture', 'act', '1939', 'amended', 'uk', 'gaap', 'means', 'generally', 'accepted', 'accounting', 'principles', 'united', 'kingdom', 'effect', 'time', 'time', 'uniform', 'commercial', 'code', 'means', 'new', 'york', 'uniform', 'commercial', 'code', '233', 'unrestricted', 'subsidiary', 'means', '1', 'subsidiary', 'company', 'time', 'determination', 'unrestricted', 'subsidiary', 'designated', 'board', 'directors', 'company', 'manner', 'provided', '2', 'subsidiary', 'unrestricted', 'subsidiary', 'board', 'directors', 'company', 'may', 'designate', 'subsidiary', 'company', 'including', 'newly', 'acquired', 'newly', 'formed', 'subsidiary', 'person', 'becoming', 'subsidiary', 'merger', 'consolidation', 'business', 'combination', 'transaction', 'investment', 'therein', 'not', 'including', 'issuer', 'unrestricted', 'subsidiary', '1', 'subsidiary', 'subsidiaries', 'not', 'capital', 'stock', 'indebtedness', 'hold', 'lien', 'property', 'company', 'subsidiary', 'company', 'not', 'subsidiary', 'subsidiary', 'designated', 'otherwise', 'unrestricted', 'subsidiary', '2', 'designation', 'investment', 'company', 'subsidiary', 'complies', 'certain', 'covenants', 'limitation', 'restricted', 'payments', 'designation', 'board', 'directors', 'company', 'shall', 'evidenced', 'trustee', 'filing', 'trustee', 'resolution', 'board', 'directors', 'company', 'giving', 'effect', 'designation', 'officer', 'certificate', 'certifying', 'designation', 'complies', 'foregoing', 'conditions', 'board', 'directors', 'company', 'may', 'designate', 'unrestricted', 'subsidiary', 'restricted', 'subsidiary', 'provided', 'immediately', 'giving', 'effect', 'designation', '1', 'no', 'default', 'event', 'default', 'would', 'result', 'therefrom', '2', 'x', 'company', 'could', 'incur', 'least', '1', '00', 'additional', 'indebtedness', 'pursuant', 'first', 'paragraph', 'limitation', 'indebtedness', 'covenant', 'fixed', 'charge', 'coverage', 'ratio', 'would', 'not', 'less', 'immediately', 'prior', 'giving', 'effect', 'designation', 'case', 'pro', 'forma', 'basis', 'taking', 'account', 'designation', 'designation', 'board', 'directors', 'company', 'shall', 'evidenced', 'trustee', 'promptly', 'filing', 'trustee', 'copy', 'resolution', 'board', 'directors', 'giving', 'effect', 'designation', 'officer', 'certificate', 'certifying', 'designation', 'complied', 'foregoing', 'provisions', 'voting', 'stock', 'person', 'means', 'classes', 'capital', 'stock', 'person', 'outstanding', 'normally', 'entitled', 'vote', 'election', 'directors', 'wholly', 'owned', 'subsidiary', 'means', 'restricted', 'subsidiary', 'voting', 'stock', 'directors', 'qualifying', 'shares', 'shares', 'required', 'applicable', 'law', 'regulation', 'held', 'person', 'company', 'another', 'wholly', 'owned', 'subsidiary', 'owned', 'company', 'another', 'wholly', 'owned', 'subsidiary', '234', 'book', 'entry', 'delivery', 'form', 'general', 'series', 'notes', 'sold', 'outside', 'united', 'states', 'pursuant', 'regulation', 'initially', 'represented', 'one', 'global', 'notes', 'registered', 'form', 'without', 'interest', 'coupons', 'attached', 'collectively', 'regulation', 'global', 'notes', 'regulation', 'global', 'notes', 'representing', 'dollar', 'notes', 'dollar', 'regulation', 'global', 'notes', 'deposited', 'upon', 'issuance', 'custodian', 'depository', 'trust', 'company', 'dtc', 'registered', 'name', 'cede', 'co', 'nominee', 'dtc', 'regulation', 'global', 'notes', 'representing', 'sterling', 'notes', 'sterling', 'regulation', 'global', 'notes', 'deposited', 'upon', 'issuance', 'common', 'depositary', 'registered', 'name', 'nominee', 'common', 'depositary', 'accounts', 'euroclear', 'clearstream', 'series', 'notes', 'sold', 'within', 'united', 'states', 'qualified', 'institutional', 'buyers', 'pursuant', 'rule', '144a', 'initially', 'represented', 'one', 'global', 'notes', 'registered', 'form', 'without', 'interest', 'coupons', 'attached', 'collectively', 'rule', '144a', 'global', 'notes', 'together', 'regulation', 'global', 'notes', 'global', 'notes', 'rule', '144a', 'global', 'notes', 'representing', 'dollar', 'notes', 'dollar', '144a', 'global', 'notes', 'together', 'dollar', 'regulation', 'global', 'notes', 'dollar', 'global', 'notes', 'deposited', 'upon', 'issuance', 'custodian', 'dtc', 'registered', 'name', 'cede', 'co', 'nominee', 'dtc', 'rule', '144a', 'global', 'notes', 'representing', 'sterling', 'notes', 'sterling', '144a', 'global', 'notes', 'together', 'sterling', 'regulation', 'global', 'notes', 'sterling', 'global', 'notes', 'deposited', 'upon', 'issuance', 'common', 'depositary', 'registered', 'name', 'nominee', 'common', 'depositary', 'accounts', 'euroclear', 'clearstream', 'ownership', 'interests', 'dollar', 'global', 'notes', 'dollar', 'book', 'entry', 'interests', 'ownership', 'interests', 'sterling', 'global', 'notes', 'sterling', 'book', 'entry', 'interests', 'together', 'dollar', 'book', 'entry', 'interests', 'book', 'entry', 'interests', 'limited', 'persons', 'accounts', 'dtc', 'euroclear', 'clearstream', 'respectively', 'persons', 'hold', 'interests', 'participants', 'book', 'entry', 'interests', 'shown', 'transfers', 'thereof', 'effected', 'records', 'maintained', 'book', 'entry', 'form', 'dtc', 'euroclear', 'clearstream', 'applicable', 'participants', 'clearstream', 'euroclear', 'direct', 'indirect', 'participants', 'respectively', 'dtc', 'accordingly', 'persons', 'accounts', 'clearstream', 'euroclear', 'participants', 'clearstream', 'euroclear', 'may', 'bookentry', 'interests', 'book', 'entry', 'interests', 'dollar', 'global', 'notes', 'issued', 'denominations', '200', '000', 'integral', 'multiples', '1', '000', 'excess', 'thereof', 'book', 'entry', 'interests', 'sterling', 'global', 'notes', 'issued', 'denominations', '100', '000', 'integral', 'multiples', '1', '000', 'excess', 'thereof', 'book', 'entry', 'interests', 'not', 'held', 'definitive', 'form', 'instead', 'dtc', 'euroclear', 'clearstream', 'applicable', 'credit', 'respective', 'book', 'entry', 'registration', 'transfer', 'systems', 'account', 'participant', 'interest', 'beneficially', 'owned', 'participant', 'laws', 'jurisdictions', 'including', 'certain', 'states', 'united', 'states', 'may', 'require', 'certain', 'purchasers', 'securities', 'take', 'physical', 'delivery', 'securities', 'definitive', 'form', 'foregoing', 'limitations', 'may', 'impair', 'ability', 'transfer', 'pledge', 'book', 'entry', 'interests', 'addition', 'notes', 'global', 'form', 'holders', 'book', 'entry', 'interests', 'not', 'notes', 'registered', 'names', 'not', 'receive', 'physical', 'delivery', 'notes', 'certificated', 'form', 'not', 'considered', 'registered', 'owners', 'holders', 'notes', 'purpose', 'long', 'notes', 'held', 'global', 'form', 'dtc', 'euroclear', 'clearstream', 'applicable', 'respective', 'nominees', 'considered', 'sole', 'holders', 'global', 'notes', 'purposes', 'indenture', 'participants', 'must', 'rely', 'procedures', 'dtc', 'euroclear', 'clearstream', 'applicable', 'indirect', 'participants', 'must', 'rely', 'procedures', 'dtc', 'euroclear', 'clearstream', 'applicable', 'participants', 'bookentry', 'interests', 'order', 'transfer', 'interests', 'exercise', 'rights', 'holders', 'indenture', 'none', 'issuer', 'trustee', 'paying', 'agents', 'transfer', 'agents', 'registrar', 'indenture', 'respective', 'agents', 'responsibility', 'liable', 'aspect', 'records', 'relating', 'book', 'entry', 'interests', '235', 'issuance', 'definitive', 'registered', 'notes', 'terms', 'indenture', 'owners', 'book', 'entry', 'interests', 'receive', 'definitive', 'notes', 'registered', 'form', 'definitive', 'registered', 'notes', 'dtc', 'euroclear', 'clearstream', 'applicable', 'notifies', 'issuer', 'unwilling', 'unable', 'continue', 'act', 'depositary', 'successor', 'depositary', 'not', 'appointed', 'issuer', 'within', '120', 'days', 'owner', 'book', 'entry', 'interest', 'requests', 'exchange', 'writing', 'delivered', 'dtc', 'euroclear', 'clearstream', 'following', 'event', 'default', 'indenture', 'event', 'registrar', 'issue', 'definitive', 'registered', 'notes', 'registered', 'name', 'names', 'issued', 'approved', 'denominations', 'requested', 'behalf', 'dtc', 'euroclear', 'clearstream', 'applicable', 'issuer', 'applicable', 'accordance', 'respective', 'customary', 'procedures', 'based', 'upon', 'directions', 'received', 'participants', 'reflecting', 'beneficial', 'ownership', 'book', 'entry', 'interests', 'definitive', 'registered', 'notes', 'bear', 'restrictive', 'legend', 'referred', 'transfer', 'restrictions', 'unless', 'legend', 'not', 'required', 'indenture', 'applicable', 'law', 'issuer', 'not', 'required', 'register', 'transfer', 'exchange', 'definitive', 'registered', 'notes', 'period', '15', 'calendar', 'days', 'preceding', 'record', 'date', 'payment', 'interest', 'notes', 'ii', 'date', 'fixed', 'redemption', 'notes', 'iii', 'date', 'fixed', 'selection', 'notes', 'redeemed', 'part', 'also', 'issuer', 'not', 'required', 'register', 'transfer', 'exchange', 'notes', 'selected', 'redemption', 'event', 'transfer', 'definitive', 'registered', 'note', 'trustee', 'may', 'require', 'holder', 'among', 'things', 'furnish', 'appropriate', 'endorsements', 'transfer', 'documents', 'described', 'indenture', 'issuer', 'may', 'require', 'holder', 'pay', 'taxes', 'fees', 'required', 'law', 'permitted', 'indenture', 'notes', 'definitive', 'registered', 'notes', 'issued', 'holder', 'thereof', 'claims', 'definitive', 'registered', 'note', 'lost', 'destroyed', 'wrongfully', 'taken', 'definitive', 'registered', 'note', 'mutilated', 'surrendered', 'registrar', 'trustee', 'issuer', 'issuer', 'issue', 'trustee', 'authenticate', 'replacement', 'definitive', 'registered', 'note', 'trustee', 'issuer', 'requirements', 'met', 'issuer', 'trustee', 'may', 'require', 'holder', 'requesting', 'replacement', 'definitive', 'registered', 'note', 'furnish', 'indemnity', 'bond', 'sufficient', 'judgment', 'protect', 'issuer', 'trustee', 'paying', 'agents', 'appointed', 'pursuant', 'indenture', 'loss', 'may', 'suffer', 'definitive', 'registered', 'note', 'replaced', 'issuer', 'may', 'charge', 'expenses', 'incurred', 'replacing', 'definitive', 'registered', 'note', 'case', 'mutilated', 'destroyed', 'lost', 'stolen', 'definitive', 'registered', 'note', 'become', 'become', 'due', 'payable', 'redeemed', 'purchased', 'issuer', 'pursuant', 'provisions', 'indenture', 'issuer', 'discretion', 'may', 'instead', 'issuing', 'new', 'definitive', 'registered', 'note', 'pay', 'redeem', 'purchase', 'definitive', 'registered', 'note', 'case', 'may', 'definitive', 'registered', 'notes', 'may', 'transferred', 'exchanged', 'transferor', 'first', 'delivers', 'trustee', 'written', 'certification', 'form', 'provided', 'indenture', 'effect', 'transfer', 'comply', 'transfer', 'restrictions', 'applicable', 'notes', 'see', 'transfer', 'restrictions', 'redemption', 'global', 'notes', 'event', 'global', 'note', 'portion', 'thereof', 'redeemed', 'dtc', 'euroclear', 'clearstream', 'respective', 'nominees', 'applicable', 'distribute', 'amount', 'received', 'respect', 'global', 'note', 'redeemed', 'holders', 'book', 'entry', 'interests', 'global', 'note', 'amount', 'received', 'respect', 'redemption', 'global', 'note', 'redemption', 'price', 'payable', 'connection', 'redemption', 'book', 'entry', 'interests', 'equal', 'amount', 'received', 'dtc', 'euroclear', 'clearstream', 'applicable', 'connection', 'redemption', 'global', 'note', 'portion', 'thereof', 'issuer', 'understands', 'existing', 'practices', 'dtc', 'euroclear', 'clearstream', 'fewer', 'notes', 'redeemed', 'time', 'dtc', 'euroclear', 'clearstream', 'credit', 'respective', 'participants', 'accounts', 'proportionate', 'basis', 'adjustments', 'prevent', 'fractions', 'lot', '236', 'basis', 'deem', 'fair', 'appropriate', 'provided', 'however', 'no', 'book', 'entry', 'interest', 'less', '200', '000', 'principal', 'amount', 'case', 'dollar', 'book', 'entry', 'interest', '100', '000', 'principal', 'amount', 'case', 'sterling', 'book', 'entry', 'interest', 'may', 'redeemed', 'part', 'payments', 'global', 'notes', 'issuer', 'make', 'payments', 'amounts', 'owing', 'respect', 'global', 'notes', 'including', 'principal', 'premium', 'interest', 'additional', 'interest', 'additional', 'amounts', 'relevant', 'paying', 'agent', 'relevant', 'paying', 'agent', 'turn', 'make', 'payments', 'dtc', 'nominee', 'case', 'dollar', 'global', 'notes', 'common', 'depositary', 'euroclear', 'clearstream', 'case', 'sterling', 'global', 'notes', 'distribute', 'payments', 'participants', 'accordance', 'respective', 'procedures', 'issuer', 'make', 'payments', 'amounts', 'without', 'deduction', 'withholding', 'account', 'present', 'future', 'taxes', 'duties', 'assessments', 'governmental', 'charges', 'whatever', 'nature', 'except', 'may', 'required', 'law', 'described', 'description', 'notes', 'withholding', 'taxes', 'deduction', 'withholding', 'required', 'made', 'applicable', 'law', 'regulation', 'otherwise', 'described', 'description', 'notes', 'withholding', 'taxes', 'extent', 'described', 'description', 'notes', 'withholding', 'taxes', 'issuer', 'pay', 'additional', 'amounts', 'may', 'necessary', 'order', 'net', 'amounts', 'received', 'holder', 'global', 'notes', 'owner', 'book', 'entry', 'interests', 'deduction', 'withholding', 'equal', 'net', 'amounts', 'holder', 'owner', 'would', 'otherwise', 'received', 'respect', 'global', 'note', 'bookentry', 'interest', 'case', 'may', 'absent', 'withholding', 'deduction', 'issuer', 'expects', 'standing', 'customer', 'instructions', 'customary', 'practices', 'govern', 'payments', 'participants', 'owners', 'book', 'entry', 'interests', 'held', 'participants', 'terms', 'indenture', 'issuer', 'trustee', 'treat', 'registered', 'holders', 'global', 'notes', 'e', 'dtc', 'euroclear', 'clearstream', 'respective', 'nominees', 'owners', 'thereof', 'purpose', 'receiving', 'payments', 'purposes', 'consequently', 'none', 'issuer', 'trustee', 'respective', 'agents', 'responsibility', 'liability', 'aspect', 'records', 'dtc', 'euroclear', 'clearstream', 'participant', 'indirect', 'participant', 'relating', 'payments', 'made', 'account', 'book', 'entry', 'interest', 'payments', 'made', 'dtc', 'euroclear', 'clearstream', 'participant', 'indirect', 'participant', 'maintaining', 'supervising', 'reviewing', 'records', 'dtc', 'euroclear', 'clearstream', 'participant', 'indirect', 'participant', 'relating', 'payments', 'made', 'account', 'book', 'entry', 'interest', 'dtc', 'euroclear', 'clearstream', 'participant', 'indirect', 'participant', 'payments', 'participants', 'owners', 'book', 'entry', 'interests', 'held', 'participants', 'responsibility', 'participants', 'case', 'securities', 'held', 'accounts', 'customers', 'registered', 'street', 'name', 'currency', 'payment', 'global', 'notes', 'principal', 'premium', 'interest', 'amounts', 'payable', 'respect', 'dollar', 'global', 'notes', 'paid', 'holders', 'interests', 'notes', 'dtc', 'u', 'dollars', 'principal', 'premium', 'interest', 'amounts', 'payable', 'respect', 'sterling', 'global', 'notes', 'paid', 'holders', 'interests', 'notes', 'euroclear', 'clearstream', 'euro', 'payments', 'subject', 'cases', 'fiscal', 'laws', 'regulations', 'including', 'regulations', 'applicable', 'clearing', 'system', 'applicable', 'thereto', 'none', 'issuer', 'trustee', 'initial', 'purchasers', 'respective', 'agents', 'liable', 'holder', 'global', 'note', 'person', 'commissions', 'costs', 'losses', 'expenses', 'relation', 'resulting', 'currency', 'conversion', 'rounding', 'effected', 'connection', 'payment', 'holders', 'may', 'subject', 'foreign', 'exchange', 'risks', 'may', 'economic', 'tax', 'consequences', 'action', 'owners', 'book', 'entry', 'interests', 'dtc', 'euroclear', 'clearstream', 'advised', 'issuer', 'take', 'action', 'permitted', 'taken', 'holder', 'notes', 'direction', 'one', 'participants', 'whose', '237', 'account', 'book', 'entry', 'interests', 'global', 'notes', 'credited', 'respect', 'portion', 'aggregate', 'principal', 'amount', 'notes', 'participant', 'participants', 'given', 'direction', 'dtc', 'euroclear', 'clearstream', 'not', 'exercise', 'discretion', 'granting', 'consents', 'waivers', 'taking', 'action', 'respect', 'global', 'notes', 'nevertheless', 'event', 'default', 'notes', 'dtc', 'euroclear', 'clearstream', 'reserves', 'right', 'exchange', 'global', 'notes', 'definitive', 'registered', 'notes', 'certificated', 'form', 'distribute', 'definitive', 'registered', 'notes', 'respective', 'participants', 'transfers', 'transfers', 'participants', 'dtc', 'done', 'accordance', 'dtc', 'rules', 'settled', 'immediately', 'available', 'funds', 'transfers', 'participants', 'euroclear', 'clearstream', 'effected', 'accordance', 'euroclear', 'clearstream', 'rules', 'settled', 'immediately', 'available', 'funds', 'holder', 'requires', 'physical', 'delivery', 'definitive', 'registered', 'notes', 'reason', 'including', 'sell', 'notes', 'persons', 'states', 'require', 'physical', 'delivery', 'securities', 'pledge', 'securities', 'holder', 'must', 'transfer', 'interest', 'global', 'notes', 'accordance', 'normal', 'procedures', 'dtc', 'euroclear', 'clearstream', 'applicable', 'accordance', 'provisions', 'indenture', 'rule', '144a', 'global', 'notes', 'bear', 'legend', 'effect', 'set', 'forth', 'transfer', 'restrictions', 'book', 'entry', 'interests', 'global', 'notes', 'subject', 'restrictions', 'transfer', 'discussed', 'transfer', 'restrictions', 'beneficial', 'interests', 'rule', '144a', 'global', 'note', 'may', 'transferred', 'person', 'takes', 'delivery', 'form', 'beneficial', 'interest', 'regulation', 'global', 'note', 'denominated', 'currency', 'upon', 'receipt', 'trustee', 'written', 'certification', 'form', 'provided', 'indenture', 'transferor', 'effect', 'transfer', 'made', 'accordance', 'regulation', 'exemption', 'available', 'u', 'securities', 'act', 'prior', '40', 'days', 'date', 'initial', 'issuance', 'notes', 'ownership', 'interests', 'regulation', 'global', 'notes', 'limited', 'persons', 'accounts', 'dtc', 'euroclear', 'clearstream', 'persons', 'hold', 'interests', 'dtc', 'euroclear', 'clearstream', 'sale', 'transfer', 'interests', 'u', 'persons', 'not', 'permitted', 'unless', 'resale', 'transfer', 'made', 'pursuant', 'rule', '144a', 'beneficial', 'interests', 'regulation', 'global', 'note', 'may', 'transferred', 'person', 'takes', 'delivery', 'form', 'beneficial', 'interest', 'rule', '144a', 'global', 'note', 'denominated', 'currency', 'upon', 'delivery', 'transferor', 'written', 'certification', 'form', 'provided', 'indenture', 'effect', 'transfer', 'made', 'person', 'transferor', 'reasonably', 'believes', 'qualified', 'institutional', 'buyer', 'within', 'meaning', 'rule', '144a', 'transaction', 'meeting', 'requirements', 'rule', '144a', 'accordance', 'applicable', 'securities', 'laws', 'state', 'united', 'states', 'jurisdiction', 'paragraph', 'refers', 'transfers', 'exchanges', 'respect', 'dollar', 'global', 'notes', 'transfers', 'involving', 'exchange', 'dollar', 'book', 'entry', 'interest', 'regulation', 'global', 'note', 'dollar', 'book', 'entry', 'interest', '144a', 'global', 'note', 'done', 'dtc', 'means', 'instruction', 'originating', 'trustee', 'dtc', 'deposit', 'withdrawal', 'custodian', 'system', 'accordingly', 'connection', 'transfer', 'appropriate', 'adjustments', 'made', 'reflect', 'decrease', 'principal', 'amount', 'relevant', 'regulation', 'global', 'note', 'corresponding', 'increase', 'principal', 'amount', 'corresponding', '144a', 'global', 'note', 'policies', 'practices', 'dtc', 'may', 'prohibit', 'transfers', 'unrestricted', 'book', 'entry', 'interests', 'regulation', 'global', 'note', 'prior', 'expiration', '40', 'days', 'date', 'issuance', 'notes', 'book', 'entry', 'interest', 'one', 'global', 'notes', 'transferred', 'person', 'takes', 'delivery', 'form', 'book', 'entry', 'interest', 'global', 'note', 'upon', 'transfer', 'cease', 'book', 'entry', 'interest', 'first', 'mentioned', 'global', 'note', 'become', 'book', 'entry', 'interest', 'global', 'note', 'accordingly', 'thereafter', 'subject', 'applicable', 'transfer', 'restrictions', 'procedures', 'applicable', 'book', 'entry', 'interests', 'global', 'note', 'long', 'remains', 'book', 'entry', 'interest', 'subject', 'foregoing', 'set', 'forth', 'transfer', 'restrictions', 'book', 'entry', 'interests', 'may', 'transferred', 'exchanged', 'described', 'description', 'notes', 'transfer', '238', 'exchange', 'book', 'entry', 'interest', 'one', 'global', 'notes', 'transferred', 'person', 'takes', 'delivery', 'form', 'book', 'entry', 'interest', 'global', 'note', 'denomination', 'upon', 'transfer', 'cease', 'book', 'entry', 'interest', 'first', 'mentioned', 'global', 'note', 'become', 'book', 'entry', 'interest', 'global', 'note', 'accordingly', 'thereafter', 'subject', 'transfer', 'restrictions', 'procedures', 'applicable', 'book', 'entry', 'interests', 'global', 'note', 'long', 'remains', 'book', 'entry', 'interest', 'definitive', 'registered', 'notes', 'may', 'transferred', 'exchanged', 'book', 'entry', 'interests', 'global', 'note', 'described', 'description', 'notes', 'transfer', 'exchange', 'required', 'transferor', 'first', 'delivers', 'trustee', 'written', 'certificate', 'form', 'provided', 'indenture', 'effect', 'transfer', 'comply', 'appropriate', 'transfer', 'restrictions', 'applicable', 'notes', 'see', 'transfer', 'restrictions', 'information', 'concerning', 'dtc', 'euroclear', 'clearstream', 'book', 'entry', 'interests', 'subject', 'operations', 'procedures', 'dtc', 'euroclear', 'clearstream', 'applicable', 'issuer', 'provides', 'following', 'summaries', 'operations', 'procedures', 'solely', 'convenience', 'investors', 'operations', 'procedures', 'settlement', 'system', 'controlled', 'settlement', 'system', 'may', 'changed', 'time', 'neither', 'issuer', 'nor', 'initial', 'purchasers', 'responsible', 'operations', 'procedures', 'dtc', 'advised', 'issuer', 'limited', 'purpose', 'trust', 'company', 'organized', 'new', 'york', 'banking', 'law', 'banking', 'organization', 'within', 'meaning', 'new', 'york', 'banking', 'law', 'member', 'federal', 'reserve', 'system', 'clearing', 'corporation', 'within', 'meaning', 'new', 'york', 'uniform', 'commercial', 'code', 'clearing', 'agency', 'registered', 'pursuant', 'provisions', 'section', '17a', 'u', 'exchange', 'act', 'dtc', 'holds', 'provides', 'asset', 'servicing', 'issues', 'u', 'non', 'u', 'equity', 'issues', 'corporate', 'municipal', 'debt', 'issues', 'money', 'market', 'instruments', 'dtc', 'direct', 'participants', 'deposit', 'dtc', 'dtc', 'also', 'facilitates', 'post', 'trade', 'settlement', 'among', 'direct', 'participants', 'sales', 'securities', 'transactions', 'deposited', 'securities', 'electronic', 'computerized', 'book', 'entry', 'transfers', 'pledges', 'direct', 'participants', 'accounts', 'dtc', 'wholly', 'owned', 'subsidiary', 'depository', 'trust', 'clearing', 'corporation', 'dtcc', 'dtcc', 'holding', 'company', 'dtc', 'national', 'securities', 'clearing', 'corporation', 'fixed', 'income', 'clearing', 'corporation', 'registered', 'clearing', 'agencies', 'dtcc', 'owned', 'users', 'regulated', 'subsidiaries', 'access', 'dtc', 'system', 'also', 'available', 'others', 'u', 'non', 'u', 'securities', 'brokers', 'dealers', 'banks', 'trust', 'companies', 'clearing', 'corporations', 'clear', 'maintain', 'custodial', 'relationship', 'direct', 'participant', 'either', 'directly', 'indirectly', 'euroclear', 'clearstream', 'hold', 'securities', 'participating', 'organizations', 'also', 'facilitate', 'clearance', 'settlement', 'securities', 'transactions', 'respective', 'participants', 'electronic', 'book', 'entry', 'changes', 'accounts', 'participants', 'euroclear', 'clearstream', 'provide', 'various', 'services', 'participants', 'including', 'safekeeping', 'administration', 'clearance', 'settlement', 'lending', 'borrowing', 'internationally', 'traded', 'securities', 'euroclear', 'clearstream', 'interface', 'domestic', 'securities', 'markets', 'euroclear', 'clearstream', 'participants', 'financial', 'institutions', 'underwriters', 'securities', 'brokers', 'dealers', 'banks', 'trust', 'companies', 'certain', 'organizations', 'indirect', 'access', 'euroclear', 'clearstream', 'also', 'available', 'others', 'banks', 'brokers', 'dealers', 'trust', 'companies', 'clear', 'maintain', 'custodial', 'relationship', 'euroclear', 'clearstream', 'participant', 'either', 'directly', 'indirectly', 'dtc', 'euroclear', 'clearstream', 'act', 'behalf', 'participants', 'turn', 'act', 'behalf', 'indirect', 'participants', 'certain', 'banks', 'ability', 'owner', 'beneficial', 'interest', 'pledge', 'interest', 'persons', 'entities', 'not', 'participate', 'dtc', 'euroclear', 'clearstream', 'systems', 'otherwise', 'take', 'actions', 'respect', 'interest', 'may', 'limited', 'lack', 'definite', 'certificate', 'interest', 'laws', 'jurisdictions', 'require', 'certain', 'persons', 'take', 'physical', 'delivery', 'securities', 'definitive', 'form', 'consequently', 'ability', 'transfer', 'beneficial', 'interests', 'persons', 'may', 'limited', 'addition', 'owners', 'beneficial', 'interests', 'dtc', 'euroclear', 'clearstream', 'systems', 'receive', 'distributions', 'attributable', '144a', 'global', 'notes', 'dtc', 'euroclear', 'clearstream', 'participants', '239', 'global', 'clearance', 'settlement', 'book', 'entry', 'system', 'application', 'made', 'listing', 'permission', 'deal', 'notes', 'official', 'list', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'issuer', 'expects', 'bookentry', 'interests', 'trade', 'participants', 'dtc', 'euroclear', 'clearstream', 'applicable', 'settle', 'day', 'funds', 'since', 'sale', 'determines', 'place', 'delivery', 'important', 'establish', 'time', 'trading', 'book', 'entry', 'interests', 'purchaser', 'seller', 'accounts', 'located', 'ensure', 'settlement', 'made', 'desired', 'value', 'date', 'issuer', 'expects', 'secondary', 'trading', 'certificated', 'notes', 'also', 'settled', 'immediately', 'available', 'funds', 'euroclear', 'participants', 'clearstream', 'participants', 'may', 'not', 'deliver', 'instructions', 'directly', 'common', 'depositary', 'although', 'dtc', 'euroclear', 'clearstream', 'expected', 'follow', 'foregoing', 'procedures', 'order', 'facilitate', 'transfers', 'interests', 'global', 'notes', 'among', 'participants', 'dtc', 'euroclear', 'clearstream', 'case', 'may', 'no', 'obligation', 'perform', 'continue', 'perform', 'procedures', 'procedures', 'may', 'discontinued', 'modified', 'time', 'none', 'issuer', 'holdings', 'trustee', 'paying', 'agents', 'transfer', 'agents', 'registrar', 'responsibility', 'performance', 'dtc', 'euroclear', 'clearstream', 'respective', 'participants', 'indirect', 'participants', 'respective', 'obligations', 'rules', 'procedures', 'governing', 'operations', '240', 'certain', 'tax', 'considerations', 'certain', 'united', 'kingdom', 'tax', 'consequences', 'following', 'general', 'description', 'certain', 'uk', 'tax', 'consequences', 'relating', 'notes', 'based', 'current', 'uk', 'tax', 'law', 'hm', 'revenue', 'customs', 'hmrc', 'published', 'practice', 'may', 'subject', 'change', 'possibly', 'retrospective', 'effect', 'not', 'purport', 'complete', 'analysis', 'uk', 'tax', 'considerations', 'relating', 'notes', 'relates', 'persons', 'absolute', 'beneficial', 'owners', 'notes', 'hold', 'notes', 'capital', 'investment', 'not', 'deal', 'certain', 'classes', 'persons', 'brokers', 'dealers', 'securities', 'persons', 'connected', 'issuer', 'special', 'rules', 'may', 'apply', 'subject', 'tax', 'jurisdiction', 'united', 'kingdom', 'doubt', 'tax', 'position', 'consult', 'appropriate', 'professional', 'adviser', 'interest', 'notes', 'payment', 'interest', 'notes', 'provided', 'interest', 'notes', 'not', 'uk', 'source', 'interest', 'notes', 'may', 'payable', 'without', 'withholding', 'deduction', 'account', 'uk', 'income', 'tax', 'source', 'payment', 'complex', 'matter', 'necessary', 'regard', 'case', 'law', 'hmrc', 'published', 'practice', 'case', 'law', 'established', 'determining', 'source', 'interest', 'relevant', 'factors', 'must', 'taken', 'account', 'hmrc', 'consider', 'important', 'factor', 'deciding', 'whether', 'interest', 'uk', 'source', 'residence', 'debtor', 'location', 'debtor', 'assets', 'interest', 'notes', 'uk', 'source', 'uk', 'interest', 'payable', 'without', 'withholding', 'deduction', 'account', 'uk', 'income', 'tax', 'provided', 'notes', 'remain', 'listed', 'recognised', 'stock', 'exchange', 'within', 'meaning', 'section', '1005', 'income', 'tax', 'act', '2007', 'ita', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'recognised', 'stock', 'exchange', 'purposes', 'securities', 'notes', 'treated', 'listed', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'included', 'official', 'list', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'admitted', 'trading', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'uk', 'interest', 'notes', 'may', 'also', 'paid', 'without', 'withholding', 'deduction', 'account', 'uk', 'income', 'tax', 'issuer', 'reasonably', 'believes', 'person', 'interest', 'notes', 'paid', 'reasonably', 'believes', 'time', 'payment', 'made', 'person', 'beneficially', 'entitled', 'interest', 'uk', 'resident', 'company', 'non', 'uk', 'resident', 'company', 'carries', 'trade', 'united', 'kingdom', 'permanent', 'establishment', 'payment', 'one', 'non', 'uk', 'resident', 'company', 'required', 'bring', 'account', 'calculating', 'profits', 'subject', 'uk', 'corporation', 'tax', 'b', 'person', 'payment', 'made', 'one', 'classes', 'bodies', 'persons', 'meets', 'relevant', 'conditions', 'set', 'sections', '935', '937', 'ita', 'provided', 'either', 'case', 'hmrc', 'not', 'given', 'direction', 'effect', 'payment', 'may', 'not', 'made', 'without', 'withholding', 'deduction', 'cases', 'amount', 'must', 'withheld', 'payments', 'uk', 'interest', 'notes', 'account', 'uk', 'income', 'tax', 'basic', 'rate', 'currently', '20', 'subject', 'direction', 'contrary', 'hmrc', 'applicable', 'double', 'taxation', 'treaty', 'provision', 'information', 'hmrc', 'powers', 'obtain', 'information', 'documents', 'relating', 'notes', 'including', 'relation', 'issues', 'transactions', 'notes', 'interest', 'payments', 'treated', 'interest', 'payments', 'derived', 'notes', 'may', 'include', 'details', 'beneficial', 'owners', 'notes', 'persons', 'notes', 'held', 'persons', 'payments', 'derived', 'notes', 'may', 'paid', 'information', 'may', 'obtained', 'range', 'persons', 'including', 'persons', 'effect', 'party', 'transactions', 'behalf', 'others', 'registrars', 'administrators', 'transactions', 'registered', 'holders', 'notes', 'persons', 'make', 'receive', 'entitled', 'receive', 'payments', 'derived', 'notes', 'persons', 'interest', 'payments', 'treated', 'interest', 'paid', 'credited', 'information', 'obtained', 'hmrc', 'may', 'certain', 'circumstances', 'exchanged', 'hmrc', 'tax', 'authorities', 'jurisdictions', '241', 'uk', 'tax', 'issues', 'interest', 'notes', 'constitutes', 'uk', 'source', 'income', 'tax', 'purposes', 'may', 'subject', 'uk', 'tax', 'way', 'assessment', 'including', 'self', 'assessment', 'even', 'paid', 'without', 'withholding', 'deduction', 'however', 'uk', 'interest', 'received', 'without', 'withholding', 'deduction', 'account', 'uk', 'income', 'tax', 'not', 'chargeable', 'uk', 'tax', 'hands', 'holder', 'notes', 'certain', 'trustees', 'not', 'resident', 'tax', 'purposes', 'united', 'kingdom', 'unless', 'holder', 'notes', 'company', 'carries', 'trade', 'united', 'kingdom', 'permanent', 'establishment', 'united', 'kingdom', 'not', 'company', 'carries', 'trade', 'profession', 'vocation', 'united', 'kingdom', 'branch', 'agency', 'b', 'uk', 'interest', 'received', 'connection', 'notes', 'attributable', 'permanent', 'establishment', 'branch', 'agency', 'exemptions', 'uk', 'interest', 'received', 'certain', 'categories', 'agent', 'brokers', 'investment', 'managers', 'provisions', 'applicable', 'double', 'taxation', 'treaty', 'may', 'also', 'relevant', 'holders', 'notes', 'certain', 'jersey', 'tax', 'consequences', 'following', 'summary', 'anticipated', 'treatment', 'issuer', 'holders', 'notes', 'residents', 'jersey', 'based', 'jersey', 'taxation', 'law', 'practice', 'understood', 'apply', 'date', 'document', 'subject', 'changes', 'taxation', 'law', 'practice', 'not', 'constitute', 'legal', 'tax', 'advice', 'not', 'address', 'aspects', 'jersey', 'tax', 'law', 'practice', 'prospective', 'investors', 'notes', 'consult', 'professional', 'advisers', 'implications', 'acquiring', 'buying', 'selling', 'otherwise', 'disposing', 'notes', 'laws', 'jurisdiction', 'may', 'liable', 'taxation', 'taxation', 'company', 'issuer', 'not', 'regarded', 'resident', 'tax', 'purposes', 'jersey', 'therefore', 'issuer', 'not', 'liable', 'jersey', 'income', 'tax', 'jersey', 'source', 'income', 'except', 'income', 'exempted', 'income', 'tax', 'pursuant', 'income', 'tax', 'jersey', 'law', '1961', 'amended', 'payments', 'respect', 'notes', 'may', 'paid', 'issuer', 'without', 'withholding', 'deduction', 'account', 'jersey', 'income', 'tax', 'holders', 'notes', 'residents', 'jersey', 'not', 'subject', 'tax', 'jersey', 'respect', 'holding', 'sale', 'disposition', 'notes', 'stamp', 'duty', 'jersey', 'no', 'stamp', 'duty', 'levied', 'issue', 'transfer', 'notes', 'except', 'stamp', 'duty', 'payable', 'jersey', 'grants', 'probate', 'letters', 'administration', 'generally', 'required', 'transfer', 'notes', 'death', 'holder', 'notes', 'notes', 'situated', 'jersey', 'case', 'grant', 'probate', 'letters', 'administration', 'stamp', 'duty', 'levied', 'according', 'size', 'estate', 'wherever', 'situated', 'respect', 'holder', 'notes', 'domiciled', 'jersey', 'situated', 'jersey', 'respect', 'holder', 'notes', 'domiciled', 'outside', 'jersey', 'payable', 'sliding', 'scale', 'rate', '0', '75', 'estate', 'duty', 'capped', '100', '000', 'notes', 'registered', 'form', 'register', 'not', 'maintained', 'jersey', 'notes', 'not', 'considered', 'situated', 'jersey', 'purposes', 'jersey', 'not', 'otherwise', 'levy', 'taxes', 'upon', 'capital', 'inheritances', 'capital', 'gains', 'gifts', 'nor', 'estate', 'duties', 'doubt', 'tax', 'position', 'consult', 'professional', 'tax', 'adviser', 'certain', 'united', 'states', 'federal', 'tax', 'consequences', 'following', 'summary', 'certain', 'united', 'states', 'federal', 'income', 'tax', 'consequences', 'purchase', 'ownership', 'disposition', 'notes', 'summary', 'deals', 'notes', 'held', 'capital', 'assets', 'within', 'meaning', 'section', '1221', 'internal', 'revenue', 'code', '1986', 'amended', 'code', 'u', 'holders', 'defined', 'purchase', 'notes', 'cash', 'pursuant', 'offering', 'issue', 'price', 'first', 'price', 'substantial', 'amount', 'notes', 'applicable', 'series', 'sold', 'money', 'investors', 'excluding', 'sales', 'bond', 'houses', 'brokers', 'similar', 'persons', 'organizations', 'acting', 'capacity', 'underwriter', 'placement', 'agent', 'wholesaler', '242', 'used', 'herein', 'u', 'holder', 'means', 'beneficial', 'owner', 'notes', 'united', 'states', 'federal', 'income', 'tax', 'purposes', 'following', 'individual', 'citizen', 'resident', 'united', 'states', 'corporation', 'entity', 'treated', 'corporation', 'united', 'states', 'federal', 'income', 'tax', 'purposes', 'created', 'organized', 'laws', 'united', 'states', 'state', 'thereof', 'district', 'columbia', 'estate', 'income', 'subject', 'united', 'states', 'federal', 'income', 'taxation', 'regardless', 'source', 'trust', 'subject', 'primary', 'supervision', 'court', 'within', 'united', 'states', 'one', 'united', 'states', 'persons', 'authority', 'control', 'substantial', 'decisions', 'trust', 'ii', 'valid', 'election', 'effect', 'applicable', 'united', 'states', 'treasury', 'regulations', 'treated', 'united', 'states', 'person', 'entity', 'arrangement', 'classified', 'partnership', 'united', 'states', 'federal', 'income', 'tax', 'purposes', 'holds', 'notes', 'tax', 'treatment', 'partner', 'generally', 'depend', 'upon', 'status', 'partner', 'activities', 'partnership', 'partnership', 'partner', 'partnership', 'considering', 'investment', 'notes', 'consult', 'tax', 'advisors', 'summary', 'not', 'represent', 'detailed', 'description', 'united', 'states', 'federal', 'income', 'tax', 'consequences', 'applicable', 'person', 'subject', 'special', 'tax', 'treatment', 'united', 'states', 'federal', 'income', 'tax', 'laws', 'including', 'without', 'limitation', 'dealer', 'securities', 'currencies', 'financial', 'institution', 'regulated', 'investment', 'company', 'real', 'estate', 'investment', 'trust', 'tax', 'exempt', 'organization', 'insurance', 'company', 'person', 'holding', 'notes', 'part', 'hedging', 'integrated', 'conversion', 'constructive', 'sale', 'transaction', 'straddle', 'trader', 'securities', 'elected', 'mark', 'market', 'method', 'accounting', 'securities', 'person', 'liable', 'alternative', 'minimum', 'tax', 'partnership', 'pass', 'entity', 'investor', 'entity', 'person', 'whose', 'functional', 'currency', 'not', 'u', 'dollar', 'united', 'states', 'expatriate', 'summary', 'based', 'code', 'united', 'states', 'treasury', 'regulations', 'administrative', 'rulings', 'judicial', 'decisions', 'date', 'hereof', 'authorities', 'may', 'changed', 'possibly', 'retroactive', 'basis', 'result', 'united', 'states', 'federal', 'income', 'tax', 'consequences', 'different', 'summarized', 'not', 'not', 'seek', 'rulings', 'internal', 'revenue', 'service', 'irs', 'regarding', 'matters', 'discussed', 'no', 'assurance', 'irs', 'not', 'take', 'positions', 'concerning', 'tax', 'consequences', 'purchase', 'ownership', 'disposition', 'notes', 'different', 'discussed', 'summary', 'not', 'represent', 'detailed', 'description', 'united', 'states', 'federal', 'income', 'tax', 'consequences', 'light', 'particular', 'circumstances', 'not', 'address', 'medicare', 'contribution', 'tax', 'net', 'investment', 'income', 'effects', 'state', 'local', 'non', 'united', 'states', 'tax', 'laws', 'not', 'intended', 'not', 'construed', 'legal', 'tax', 'advice', 'particular', 'purchaser', 'notes', 'considering', 'purchase', 'notes', 'consult', 'tax', 'advisors', 'concerning', 'particular', 'united', 'states', 'federal', 'income', 'tax', 'consequences', 'purchase', 'ownership', 'disposition', 'notes', 'well', 'consequences', 'arising', 'united', 'states', 'federal', 'tax', 'laws', 'laws', 'taxing', 'jurisdiction', '243', 'payments', 'stated', 'interest', 'stated', 'interest', 'note', 'including', 'additional', 'amounts', 'paid', 'respect', 'withholding', 'taxes', 'without', 'reduction', 'amounts', 'withheld', 'generally', 'taxable', 'foreign', 'source', 'ordinary', 'income', 'time', 'paid', 'accrued', 'accordance', 'method', 'accounting', 'united', 'states', 'federal', 'income', 'tax', 'purposes', 'interest', 'sterling', 'notes', 'payable', 'pounds', 'sterling', 'use', 'cash', 'basis', 'method', 'accounting', 'united', 'states', 'federal', 'income', 'tax', 'purposes', 'required', 'include', 'income', 'foreign', 'source', 'ordinary', 'income', 'u', 'dollar', 'value', 'amount', 'interest', 'received', 'sterling', 'notes', 'determined', 'translating', 'pounds', 'sterling', 'received', 'spot', 'rate', 'date', 'payment', 'received', 'regardless', 'whether', 'payment', 'fact', 'converted', 'u', 'dollars', 'not', 'recognize', 'exchange', 'gain', 'loss', 'respect', 'receipt', 'payment', 'exchange', 'gain', 'loss', 'realized', 'disposition', 'pounds', 'sterling', 'received', 'use', 'accrual', 'method', 'accounting', 'united', 'states', 'federal', 'income', 'tax', 'purposes', 'may', 'determine', 'amount', 'income', 'recognized', 'respect', 'interest', 'sterling', 'notes', 'accordance', 'either', 'two', 'methods', 'first', 'method', 'required', 'include', 'income', 'foreign', 'source', 'ordinary', 'income', 'taxable', 'year', 'u', 'dollar', 'value', 'interest', 'accrued', 'sterling', 'notes', 'held', 'year', 'determined', 'translating', 'interest', 'average', 'rate', 'exchange', 'period', 'periods', 'portions', 'thereof', 'interest', 'accrued', 'second', 'method', 'may', 'elect', 'translate', 'interest', 'income', 'spot', 'rate', 'last', 'day', 'accrual', 'period', 'last', 'day', 'taxable', 'year', 'accrual', 'period', 'straddles', 'taxable', 'year', 'date', 'interest', 'payment', 'received', 'date', 'within', 'five', 'business', 'days', 'end', 'accrual', 'period', 'elect', 'use', 'second', 'method', 'election', 'must', 'consistently', 'applied', 'debt', 'instruments', 'year', 'year', 'changed', 'consent', 'irs', 'addition', 'use', 'accrual', 'method', 'accounting', 'upon', 'receipt', 'interest', 'payment', 'sterling', 'note', 'including', 'upon', 'sale', 'sterling', 'note', 'receipt', 'proceeds', 'include', 'amounts', 'attributable', 'accrued', 'interest', 'previously', 'included', 'income', 'recognize', 'united', 'states', 'source', 'ordinary', 'gain', 'loss', 'generally', 'not', 'treated', 'adjustment', 'interest', 'income', 'expense', 'amount', 'equal', 'difference', 'u', 'dollar', 'value', 'payment', 'determined', 'translating', 'pounds', 'sterling', 'received', 'spot', 'rate', 'date', 'payment', 'received', 'u', 'dollar', 'value', 'interest', 'income', 'previously', 'included', 'income', 'respect', 'payment', 'original', 'issue', 'discount', 'note', 'issue', 'price', 'defined', 'less', 'stated', 'principal', 'amount', 'generally', 'treated', 'issued', 'oid', 'united', 'states', 'federal', 'income', 'tax', 'purposes', 'amount', 'equal', 'difference', 'difference', 'least', '0', '25', 'stated', 'principal', 'amount', 'multiplied', 'number', 'complete', 'years', 'maturity', 'note', 'issued', 'oid', 'generally', 'must', 'include', 'oid', 'gross', 'income', 'foreign', 'source', 'ordinary', 'income', 'constant', 'yield', 'maturity', 'basis', 'advance', 'receipt', 'cash', 'payment', 'thereof', 'regardless', 'regular', 'method', 'accounting', 'united', 'states', 'federal', 'income', 'tax', 'purposes', 'amount', 'oid', 'must', 'include', 'income', 'taxable', 'year', 'respect', 'note', 'generally', 'equal', 'sum', 'daily', 'portions', 'oid', 'respect', 'note', 'day', 'taxable', 'year', 'held', 'note', 'accrued', 'oid', 'daily', 'portion', 'determined', 'allocating', 'day', 'accrual', 'period', 'pro', 'rata', 'portion', 'oid', 'allocable', 'accrual', 'period', 'accrual', 'period', 'may', 'length', 'may', 'vary', 'length', 'term', 'note', 'provided', 'accrual', 'period', 'no', 'longer', 'one', 'year', 'scheduled', 'payment', 'principal', 'interest', 'occurs', 'first', 'day', 'final', 'day', 'accrual', 'period', 'amount', 'oid', 'allocable', 'accrual', 'period', 'final', 'accrual', 'period', 'amount', 'equal', 'excess', 'note', 'adjusted', 'issue', 'price', 'beginning', 'accrual', 'period', 'multiplied', 'yield', 'maturity', 'determined', 'basis', 'compounding', 'close', 'accrual', 'period', 'properly', 'adjusted', 'length', 'accrual', 'period', '244', 'stated', 'interest', 'allocable', 'accrual', 'period', 'oid', 'allocable', 'final', 'accrual', 'period', 'difference', 'stated', 'principal', 'amount', 'adjusted', 'issue', 'price', 'beginning', 'final', 'accrual', 'period', 'special', 'rules', 'apply', 'calculating', 'oid', 'initial', 'short', 'accrual', 'period', 'adjusted', 'issue', 'price', 'note', 'beginning', 'accrual', 'period', 'equal', 'issue', 'price', 'increased', 'accrued', 'oid', 'prior', 'accrual', 'period', 'rules', 'generally', 'include', 'income', 'increasingly', 'greater', 'amounts', 'oid', 'successive', 'accrual', 'periods', 'oid', 'sterling', 'notes', 'determined', 'accrual', 'period', 'pounds', 'sterling', 'translated', 'u', 'dollars', 'manner', 'stated', 'interest', 'income', 'accrued', 'holder', 'accrual', 'basis', 'described', 'payments', 'stated', 'interest', 'recognize', 'exchange', 'gain', 'loss', 'oid', 'paid', 'including', 'upon', 'sale', 'taxable', 'disposition', 'sterling', 'note', 'receipt', 'amounts', 'attributable', 'oid', 'previously', 'included', 'income', 'extent', 'difference', 'u', 'dollar', 'value', 'payment', 'determined', 'translating', 'pounds', 'sterling', 'received', 'spot', 'rate', 'date', 'payment', 'received', 'u', 'dollar', 'value', 'accrued', 'oid', 'determined', 'manner', 'accrued', 'interest', 'exchange', 'gain', 'loss', 'generally', 'treated', 'united', 'states', 'source', 'ordinary', 'income', 'loss', 'generally', 'not', 'treated', 'adjustment', 'interest', 'income', 'expense', 'rules', 'governing', 'oid', 'complex', 'urged', 'consult', 'tax', 'advisors', 'regarding', 'application', 'rules', 'light', 'particular', 'circumstances', 'sale', 'exchange', 'retirement', 'redemption', 'taxable', 'disposition', 'notes', 'upon', 'sale', 'exchange', 'retirement', 'redemption', 'taxable', 'disposition', 'note', 'generally', 'recognize', 'gain', 'loss', 'equal', 'difference', 'amount', 'realized', 'upon', 'sale', 'exchange', 'retirement', 'redemption', 'taxable', 'disposition', 'less', 'amount', 'attributable', 'accrued', 'unpaid', 'interest', 'taxable', 'interest', 'income', 'discussed', 'payments', 'interest', 'adjusted', 'tax', 'basis', 'note', 'adjusted', 'tax', 'basis', 'note', 'generally', 'u', 'dollar', 'cost', 'note', 'increased', 'oid', 'previously', 'included', 'income', 'purchased', 'sterling', 'note', 'pounds', 'sterling', 'u', 'dollar', 'cost', 'generally', 'u', 'dollar', 'value', 'pounds', 'sterling', 'paid', 'sterling', 'note', 'determined', 'spot', 'rate', 'date', 'purchase', 'sterling', 'note', 'sold', 'exchanged', 'retired', 'otherwise', 'disposed', 'taxable', 'transaction', 'pounds', 'sterling', 'amount', 'realized', 'generally', 'based', 'spot', 'rate', 'effect', 'date', 'sale', 'exchange', 'retirement', 'taxable', 'disposition', 'however', 'cash', 'method', 'taxpayer', 'sterling', 'notes', 'traded', 'established', 'securities', 'market', 'united', 'states', 'federal', 'income', 'tax', 'purposes', 'pounds', 'sterling', 'paid', 'received', 'translated', 'u', 'dollars', 'spot', 'rate', 'settlement', 'date', 'purchase', 'sale', 'use', 'accrual', 'method', 'accounting', 'united', 'states', 'federal', 'income', 'tax', 'purposes', 'may', 'elect', 'treatment', 'respect', 'purchase', 'sale', 'sterling', 'notes', 'traded', 'established', 'securities', 'market', 'provided', 'election', 'applied', 'consistently', 'debt', 'instruments', 'held', 'year', 'year', 'election', 'can', 'not', 'changed', 'without', 'consent', 'irs', 'accrual', 'basis', 'taxpayer', 'not', 'make', 'special', 'settlement', 'date', 'election', 'recognize', 'foreign', 'currency', 'exchange', 'gain', 'loss', 'extent', 'exchange', 'rate', 'fluctuations', 'sale', 'date', 'settlement', 'date', 'except', 'respect', 'gain', 'loss', 'attributable', 'changes', 'exchange', 'rates', 'discussed', 'gain', 'loss', 'recognize', 'generally', 'capital', 'gain', 'loss', 'generally', 'longterm', 'capital', 'gain', 'loss', 'held', 'note', 'one', 'year', 'long', 'term', 'capital', 'gains', 'non', 'corporate', 'u', 'holders', 'including', 'individuals', 'eligible', 'reduced', 'rates', 'taxation', 'deductibility', 'capital', 'losses', 'subject', 'limitations', 'gain', 'loss', 'recognize', 'generally', 'treated', 'united', 'states', 'source', 'gain', 'loss', 'portion', 'gain', 'loss', 'respect', 'principal', 'amount', 'sterling', 'note', 'may', 'treated', 'exchange', 'gain', 'loss', 'exchange', 'gain', 'loss', 'generally', 'treated', 'united', 'states', 'source', 'ordinary', 'income', 'loss', 'purposes', 'principal', 'amount', 'sterling', 'note', 'purchase', 'price', 'sterling', 'note', 'calculated', 'pounds', 'sterling', 'date', 'purchase', 'amount', 'exchange', 'gain', 'loss', 'recognized', 'equal', 'difference', 'u', 'dollar', 'value', 'principal', 'amount', 'determined', 'spot', 'rate', 'date', 'sale', 'exchange', 'retirement', 'taxable', 'disposition', 'sterling', 'note', 'ii', 'u', 'dollar', 'value', 'principal', 'amount', 'determined', 'spot', 'rate', 'date', 'purchased', 'sterling', 'note', 'possibly', 'case', 'cash', 'basis', 'electing', 'accrual', 'basis', 'taxpayers', 'settlement', 'dates', 'purchase', 'taxable', 'disposition', 'sterling', 'note', 'treated', '245', 'traded', 'established', 'securities', 'market', 'u', 'federal', 'income', 'tax', 'purposes', 'amount', 'exchange', 'gain', 'loss', 'realized', 'disposition', 'sterling', 'note', 'respect', 'principal', 'accrued', 'interest', 'oid', 'limited', 'amount', 'overall', 'gain', 'loss', 'realized', 'disposition', 'sterling', 'note', 'disposition', 'pounds', 'sterling', 'tax', 'basis', 'pounds', 'sterling', 'received', 'interest', 'sterling', 'note', 'sale', 'exchange', 'retirement', 'taxable', 'disposition', 'sterling', 'note', 'u', 'dollar', 'value', 'thereof', 'spot', 'rate', 'effect', 'date', 'pounds', 'sterling', 'received', 'gain', 'loss', 'recognized', 'sale', 'exchange', 'disposition', 'pounds', 'sterling', 'generally', 'treated', 'united', 'states', 'source', 'ordinary', 'income', 'loss', 'tax', 'return', 'disclosure', 'requirements', 'united', 'states', 'treasury', 'regulations', 'issued', 'code', 'meant', 'require', 'reporting', 'certain', 'tax', 'shelter', 'transactions', 'could', 'interpreted', 'cover', 'transactions', 'generally', 'not', 'regarded', 'tax', 'shelters', 'including', 'certain', 'foreign', 'currency', 'transactions', 'united', 'states', 'treasury', 'regulations', 'certain', 'transactions', 'required', 'reported', 'irs', 'including', 'certain', 'circumstances', 'receipt', 'accrual', 'interest', 'sale', 'exchange', 'retirement', 'taxable', 'disposition', 'sterling', 'note', 'pounds', 'sterling', 'received', 'respect', 'sterling', 'note', 'extent', 'receipt', 'accrual', 'sale', 'exchange', 'retirement', 'taxable', 'disposition', 'results', 'tax', 'loss', 'excess', 'threshold', 'amount', 'considering', 'purchase', 'sterling', 'note', 'consult', 'tax', 'advisors', 'determine', 'tax', 'return', 'obligations', 'respect', 'investment', 'sterling', 'notes', 'including', 'requirement', 'file', 'irs', 'form', '8886', 'reportable', 'transaction', 'disclosure', 'statement', 'certain', 'u', 'holders', 'required', 'report', 'information', 'relating', 'interest', 'notes', 'subject', 'certain', 'exceptions', 'including', 'exception', 'notes', 'held', 'accounts', 'maintained', 'certain', 'financial', 'institutions', 'attaching', 'complete', 'irs', 'form', '8938', 'statement', 'specified', 'foreign', 'financial', 'assets', 'tax', 'return', 'year', 'hold', 'interest', 'notes', 'urged', 'consult', 'tax', 'advisors', 'regarding', 'information', 'reporting', 'requirements', 'relating', 'ownership', 'notes', 'backup', 'withholding', 'information', 'reporting', 'generally', 'information', 'reporting', 'apply', 'payments', 'interest', 'accruals', 'oid', 'proceeds', 'sale', 'disposition', 'including', 'retirement', 'redemption', 'note', 'paid', 'unless', 'exempt', 'recipient', 'additionally', 'fail', 'provide', 'taxpayer', 'identification', 'number', 'certification', 'not', 'subject', 'backup', 'withholding', 'may', 'subject', 'backup', 'withholding', 'payments', 'proceeds', 'backup', 'withholding', 'not', 'additional', 'tax', 'amounts', 'withheld', 'backup', 'withholding', 'rules', 'allowed', 'refund', 'credit', 'united', 'states', 'federal', 'income', 'tax', 'liability', 'provided', 'required', 'information', 'timely', 'furnished', 'irs', '246', 'certain', 'insolvency', 'local', 'law', 'limitations', 'set', 'summary', 'certain', 'limitations', 'enforceability', 'guarantees', 'security', 'interests', 'relating', 'notes', 'certain', 'insolvency', 'law', 'considerations', 'jurisdictions', 'issuer', 'guarantors', 'providers', 'security', 'date', 'hereof', 'organized', 'incorporated', 'summary', 'bankruptcy', 'insolvency', 'proceedings', 'similar', 'event', 'could', 'initiated', 'jurisdictions', 'jurisdiction', 'organization', 'incorporation', 'future', 'guarantor', 'notes', 'application', 'various', 'laws', 'multiple', 'jurisdictions', 'could', 'trigger', 'disputes', 'jurisdictions', 'law', 'apply', 'could', 'adversely', 'affect', 'ability', 'enforce', 'rights', 'collect', 'payment', 'full', 'notes', 'guarantees', 'security', 'securing', 'notes', 'jersey', 'insolvency', 'issuer', 'capital', 'incorporated', 'laws', 'jersey', 'consequently', 'event', 'insolvency', 'issuer', 'capital', 'insolvency', 'proceedings', 'may', 'initiated', 'jersey', 'two', 'principal', 'regimes', 'corporate', 'insolvency', 'jersey', 'sastre', 'winding', 'including', 'equitable', 'winding', 'creditors', 'winding', 'principal', 'type', 'insolvency', 'procedure', 'available', 'creditors', 'jersey', 'law', 'application', 'act', 'royal', 'court', 'jersey', 'bankruptcy', 'sastre', 'jersey', 'law', '1990', 'amended', 'jersey', 'bankruptcy', 'law', 'declaring', 'property', 'debtor', 'en', 'sastre', 'declaration', 'declaration', 'sastre', 'title', 'possession', 'property', 'debtor', 'vest', 'automatically', 'viscount', 'official', 'royal', 'court', 'viscount', 'effect', 'date', 'declaration', 'creditor', 'no', 'remedy', 'property', 'person', 'debtor', 'may', 'not', 'commence', 'except', 'consent', 'viscount', 'royal', 'court', 'continue', 'legal', 'proceedings', 'recover', 'debt', 'effect', 'date', 'declaration', 'secured', 'party', 'may', 'however', 'without', 'consent', 'viscount', 'without', 'order', 'court', 'exercise', 'power', 'enforcement', 'may', 'part', '7', 'enforcement', 'security', 'interests', 'security', 'interests', 'jersey', 'law', '2012', '2012', 'law', 'extent', 'proceeds', 'enforcement', 'insufficient', 'discharge', 'liabilities', 'owed', 'secured', 'party', 'no', 'remedy', 'property', 'person', 'debtor', 'may', 'not', 'commence', 'legal', 'proceedings', 'except', 'consent', 'viscount', 'royal', 'court', 'continue', 'legal', 'proceedings', 'recover', 'balance', 'debt', 'additionally', 'shareholders', 'jersey', 'company', 'not', 'creditors', 'instigate', 'winding', 'insolvent', 'company', 'known', 'creditors', 'winding', 'pursuant', 'chapter', '4', 'part', '21', 'companies', 'jersey', 'law', '1991', 'amended', 'jersey', 'companies', 'law', 'creditors', 'winding', 'liquidator', 'nominated', 'shareholders', 'creditors', 'may', 'approve', 'liquidator', 'apply', 'appoint', 'different', 'liquidator', 'liquidator', 'stand', 'shoes', 'directors', 'administer', 'winding', 'gather', 'assets', 'make', 'appropriate', 'disposals', 'assets', 'settle', 'claims', 'distribute', 'assets', 'appropriate', 'commencement', 'winding', 'no', 'action', 'taken', 'continued', 'company', 'except', 'leave', 'court', 'shareholders', 'must', 'give', 'creditors', '14', 'days', 'notice', 'meeting', 'commence', 'creditors', 'winding', 'commencement', 'creditors', 'winding', 'secured', 'party', 'may', 'however', 'without', 'sanction', 'liquidator', 'without', 'order', 'court', 'exercise', 'power', 'enforcement', 'may', 'part', '7', 'enforcement', 'security', 'interests', '2012', 'law', 'extent', 'proceeds', 'enforcement', 'insufficient', 'discharge', 'liabilities', 'owed', 'secured', 'party', 'no', 'remedy', 'company', 'without', 'leave', 'court', 'corporate', 'state', 'capacity', 'company', 'continues', 'end', 'winding', 'procedure', 'company', 'dissolved', 'jersey', 'companies', 'law', 'requires', 'creditor', 'company', 'subject', 'appeal', 'bound', 'arrangement', 'entered', 'company', 'creditors', 'immediately', 'course', 'winding', 'among', 'things', 'three', 'quarters', 'number', 'value', 'creditors', 'acceded', 'arrangement', 'transactions', 'undervalue', 'article', '17', 'jersey', 'bankruptcy', 'law', 'article', '176', 'jersey', 'companies', 'law', 'court', 'may', 'application', 'viscount', 'case', 'company', 'whose', 'property', 'declared', 'en', 'sastre', 'liquidator', 'case', 'creditors', 'winding', 'procedure', '247', 'instigated', 'shareholders', 'not', 'creditors', 'set', 'aside', 'transaction', 'including', 'guarantee', 'security', 'interest', 'entered', 'company', 'person', 'party', 'undervalue', 'five', 'year', 'look', 'back', 'period', 'date', 'commencement', 'winding', 'declaration', 'sastre', 'transactions', 'susceptible', 'examination', 'pursuant', 'rule', 'relevant', 'time', 'jersey', 'bankruptcy', 'law', 'jersey', 'companies', 'law', 'contain', 'detailed', 'provisions', 'including', 'without', 'limitation', 'define', 'constitutes', 'transaction', 'undervalue', 'operation', 'relevant', 'time', 'effect', 'entering', 'transaction', 'person', 'connected', 'company', 'associate', 'company', 'preferences', 'article', '17a', 'jersey', 'bankruptcy', 'law', 'article', '176a', 'jersey', 'companies', 'law', 'court', 'may', 'application', 'viscount', 'case', 'company', 'whose', 'property', 'declared', 'en', 'sastre', 'liquidator', 'case', 'creditors', 'winding', 'set', 'aside', 'preference', 'including', 'guarantee', 'security', 'interest', 'given', 'company', 'person', 'party', '12', 'month', 'look', 'back', 'period', 'date', 'commencement', 'winding', 'declaration', 'sastre', 'transactions', 'susceptible', 'examination', 'pursuant', 'rule', 'relevant', 'time', 'jersey', 'bankruptcy', 'law', 'jersey', 'companies', 'law', 'contain', 'detailed', 'provisions', 'including', 'without', 'limitation', 'define', 'constitutes', 'preference', 'operation', 'relevant', 'time', 'effect', 'entering', 'preference', 'person', 'connected', 'company', 'associate', 'company', 'extortionate', 'transactions', 'onerous', 'property', 'disclaimer', 'customary', 'law', 'fraudulent', 'dispositions', 'article', '17c', 'jersey', 'bankruptcy', 'law', 'article', '179', 'jersey', 'companies', 'law', 'court', 'may', 'application', 'viscount', 'case', 'company', 'whose', 'property', 'declared', 'en', 'sastre', 'liquidator', 'case', 'creditors', 'winding', 'set', 'aside', 'transaction', 'providing', 'credit', 'debtor', 'company', 'extortionate', 'three', 'year', 'look', 'back', 'period', 'date', 'commencement', 'winding', 'declaration', 'sastre', 'transactions', 'susceptible', 'examination', 'pursuant', 'rule', 'jersey', 'bankruptcy', 'law', 'jersey', 'companies', 'law', 'contain', 'detailed', 'provisions', 'including', 'without', 'limitation', 'define', 'constitutes', 'transaction', 'extortionate', 'article', '15', 'jersey', 'bankruptcy', 'law', 'viscount', 'may', 'within', 'six', 'months', 'following', 'date', 'declaration', 'sastre', 'article', '171', 'jersey', 'companies', 'law', 'liquidator', 'may', 'within', 'six', 'months', 'following', 'commencement', 'creditors', 'winding', 'disclaim', 'onerous', 'property', 'company', 'onerous', 'property', 'defined', 'include', 'moveable', 'property', 'contract', 'lease', 'immoveable', 'property', 'situated', 'outside', 'jersey', 'unsaleable', 'not', 'readily', 'saleable', 'might', 'give', 'rise', 'liability', 'pay', 'money', 'perform', 'onerous', 'act', 'includes', 'unprofitable', 'contract', 'disclaimer', 'operates', 'determine', 'date', 'made', 'rights', 'interests', 'liabilities', 'company', 'debtor', 'respect', 'property', 'disclaimed', 'discharge', 'company', 'viscount', 'liability', 'respect', 'property', 'date', 'commencement', 'creditors', 'winding', 'date', 'declaration', 'shall', 'not', 'except', 'far', 'necessary', 'purpose', 'releasing', 'company', 'debtor', 'liability', 'affect', 'rights', 'liabilities', 'person', 'person', 'sustaining', 'loss', 'damage', 'result', 'disclaimer', 'deemed', 'creditor', 'company', 'extent', 'loss', 'damage', 'shall', 'standing', 'creditor', 'sastre', 'creditors', 'winding', 'jersey', 'bankruptcy', 'law', 'jersey', 'companies', 'law', 'contain', 'detailed', 'provisions', 'including', 'without', 'limitation', 'relation', 'power', 'disclaim', 'onerous', 'property', 'addition', 'jersey', 'statutory', 'provisions', 'referred', 'certain', 'principles', 'jersey', 'customary', 'law', 'example', 'pauline', 'action', 'dispositions', 'assets', 'intention', 'defeating', 'creditors', 'claims', 'may', 'set', 'aside', 'enforcement', 'security', 'security', 'insolvency', 'laws', 'jersey', 'person', 'incorporated', 'resident', 'domiciled', 'jersey', 'deemed', 'capacity', 'grant', 'security', 'governed', 'foreign', 'law', 'property', 'situated', 'outside', 'jersey', '248', 'extent', 'floating', 'charge', 'security', 'interest', 'governed', 'foreign', 'law', 'expressed', 'apply', 'asset', 'property', 'undertaking', 'person', 'incorporated', 'resident', 'domiciled', 'jersey', 'floating', 'charge', 'security', 'interest', 'not', 'likely', 'held', 'valid', 'enforceable', 'jersey', 'courts', 'respect', 'jersey', 'situs', 'assets', 'insolvency', 'act', '1986', 'either', 'originally', 'enacted', 'amended', 'including', 'provisions', 'enterprise', 'act', '2002', 'not', 'apply', 'jersey', 'receivers', 'administrative', 'receivers', 'administrators', 'not', 'part', 'laws', 'jersey', 'accordingly', 'jersey', 'courts', 'may', 'not', 'recognize', 'powers', 'administrator', 'administrative', 'receiver', 'receiver', 'appointed', 'respect', 'jersey', 'situs', 'assets', 'royal', 'court', 'inherent', 'jurisdiction', 'may', 'however', 'article', '49', '1', 'jersey', 'bankruptcy', 'law', 'assist', 'courts', 'prescribed', 'countries', 'territories', 'applying', 'general', 'principles', 'comity', 'assist', 'courts', 'jurisdictions', 'matters', 'relating', 'insolvency', 'person', 'extent', 'royal', 'court', 'thinks', 'fit', 'royal', 'court', 'may', 'regard', 'uncitral', 'model', 'law', 'even', 'though', 'model', 'law', 'not', 'unlikely', 'implemented', 'separate', 'law', 'jersey', 'insolvency', 'proceedings', 'commenced', 'another', 'jurisdiction', 'relation', 'company', 'nature', 'extent', 'cooperation', 'jersey', 'likely', 'depend', 'nature', 'requesting', 'country', 'insolvency', 'regime', 'case', 'statutory', 'non', 'statutory', 'requests', 'assistance', 'noted', 'uncitral', 'provisions', 'not', 'automatically', 'followed', 'matter', 'discretion', 'royal', 'court', 'court', 'position', 'may', 'also', 'not', 'accordance', 'eu', 'insolvency', 'regulation', 'jersey', 'not', 'form', 'part', 'european', 'community', 'purposes', 'implementation', 'directions', 'accordingly', 'eu', 'insolvency', 'regulation', 'not', 'apply', 'matter', 'jersey', 'domestic', 'law', 'thus', 'automatic', 'test', 'center', 'main', 'interests', 'not', 'apply', 'enforcement', 'security', 'interest', 'jersey', 'company', 'may', 'limited', 'bankruptcy', 'insolvency', 'liquidation', 'dissolution', 'organization', 'laws', 'general', 'application', 'relating', 'affecting', 'rights', 'creditors', 'laws', 'relation', 'transactions', 'undervalue', 'preference', 'extortionate', 'credit', 'transactions', 'disclaimer', 'onerous', 'property', 'fraudulent', 'dispositions', 'also', 'apply', 'jersey', 'jersey', 'law', 'security', 'jersey', 'situs', 'assets', 'created', 'accordance', 'provisions', 'jersey', 'law', 'jersey', 'situs', 'assets', 'issuer', 'company', 'secured', 'pursuant', 'jersey', 'law', 'governed', 'security', 'interest', 'agreements', '2012', 'law', 'provides', 'secured', 'party', 'may', 'enforce', 'security', 'intangible', 'movable', 'assets', 'way', 'sale', 'appropriation', 'collateral', 'proceeds', 'addition', 'secured', 'party', 'may', 'take', 'certain', 'ancillary', 'actions', 'including', 'bespoke', 'enforcement', 'powers', 'included', 'security', 'agreement', 'extent', 'not', 'conflict', '2012', 'law', 'one', 'enforcement', 'option', 'taken', 'taking', 'one', 'enforcement', 'options', 'specified', 'not', 'preclude', 'exercise', 'rights', 'secured', 'party', 'power', 'enforcement', 'exercisable', 'event', 'default', 'occurred', 'written', 'notice', 'specifying', 'event', 'default', 'served', 'grantor', 'secured', 'party', 'enforcement', 'way', 'sale', 'appropriation', 'secured', 'party', 'must', 'give', 'grantor', '14', 'days', 'prior', 'written', 'notice', 'importantly', 'grantor', 'may', 'agree', 'writing', 'waive', 'right', 'notice', 'appropriation', 'sale', 'usual', 'include', 'waiver', 'security', 'agreement', 'secured', 'party', 'obliged', 'sale', 'appropriation', 'give', 'least', '14', 'days', 'prior', 'written', 'notice', 'person', '21', 'days', 'sale', 'appropriation', 'registered', 'security', 'interest', 'collateral', 'ii', 'person', 'grantor', 'interest', 'collateral', 'not', 'less', '21', 'days', 'sale', 'appropriation', 'given', 'secured', 'party', 'notice', 'interest', 'unless', 'case', 'secured', 'party', 'person', 'otherwise', 'agreed', 'writing', 'specific', 'carve', 'outs', 'obligation', 'give', 'notice', 'sale', 'exercising', 'power', 'enforcement', 'appropriation', 'sale', 'secured', 'party', 'must', 'take', 'commercially', 'reasonable', 'steps', 'determine', 'case', 'sale', 'obtain', 'fair', 'market', 'value', 'collateral', 'time', 'relevant', 'appropriation', 'sale', 'ii', 'act', 'commercially', 'reasonable', 'manner', 'relation', 'appropriation', 'sale', 'iii', 'case', 'sale', 'enter', 'agreement', 'relation', 'sale', 'commercially', 'reasonable', 'terms', 'duty', 'secured', 'party', 'owed', 'grantor', 'also', 'person', 'secured', 'party', 'required', 'give', 'notice', 'sale', 'appropriation', 'whether', 'not', '249', 'agreed', 'writing', 'waive', 'notice', 'requirements', 'exercising', 'powers', 'enforcement', 'secured', 'party', 'appropriates', 'sells', 'collateral', 'must', 'within', '14', 'days', 'day', 'collateral', 'appropriated', 'sold', 'give', 'certain', 'persons', 'grantor', 'subject', 'waived', 'requirement', 'person', 'registered', 'subordinate', 'security', 'interest', 'certain', 'persons', 'claiming', 'interest', 'collateral', 'written', 'statement', 'account', 'setting', 'certain', 'information', 'relation', 'appropriation', 'sale', 'secured', 'party', 'sold', 'appropriated', 'collateral', 'net', 'value', 'proceeds', 'appropriation', 'sale', 'appropriate', 'collateral', 'exceeds', 'amount', 'debt', 'owed', 'secured', 'party', 'secured', 'party', 'shall', 'pay', 'amount', 'resulting', 'surplus', 'following', 'order', 'payment', 'due', 'order', 'priority', 'person', 'subordinate', 'security', 'interest', 'collateral', 'registered', 'financing', 'statement', 'security', 'interest', 'registration', 'remained', 'effective', 'immediately', 'appropriation', 'sale', 'ii', 'payment', 'person', 'grantor', 'given', 'secured', 'party', 'notice', 'person', 'claims', 'interest', 'collateral', 'respect', 'secured', 'party', 'satisfied', 'person', 'legally', 'enforceable', 'interest', 'collateral', 'iii', 'balance', 'payment', 'relevant', 'debtor', 'grantor', 'alternatively', 'secured', 'party', 'may', 'discharge', 'obligation', 'respect', 'surplus', 'paying', 'amount', 'royal', 'court', 'surplus', 'may', 'paid', 'order', 'court', 'application', 'person', 'entitled', 'surplus', 'european', 'union', 'guarantors', 'organized', 'incorporated', 'laws', 'eu', 'member', 'states', 'pursuant', 'council', 'regulation', 'ec', 'no', '1346', '2000', 'insolvency', 'proceedings', 'eu', 'insolvency', 'regulation', 'court', 'shall', 'jurisdiction', 'open', 'insolvency', 'proceedings', 'relation', 'company', 'court', 'eu', 'member', 'state', 'denmark', 'company', 'concerned', 'center', 'main', 'interest', 'term', 'used', 'article', '3', '1', 'eu', 'insolvency', 'regulation', 'determination', 'company', 'center', 'main', 'interest', 'question', 'fact', 'courts', 'different', 'eu', 'member', 'states', 'may', 'differing', 'even', 'conflicting', 'views', 'term', 'center', 'main', 'interest', 'not', 'static', 'concept', 'although', 'rebuttable', 'presumption', 'article', '3', '1', 'eu', 'insolvency', 'regulation', 'company', 'center', 'main', 'interests', 'eu', 'member', 'state', 'registered', 'office', 'preamble', '13', 'eu', 'insolvency', 'regulation', 'states', 'center', 'main', 'interests', 'debtor', 'correspond', 'place', 'debtor', 'conducts', 'administration', 'interests', 'regular', 'basis', 'therefore', 'ascertainable', 'third', 'parties', 'respect', 'factors', 'board', 'meetings', 'held', 'location', 'company', 'conducts', 'majority', 'business', 'perception', 'company', 'creditors', 'regards', 'center', 'company', 'business', 'operations', 'may', 'relevant', 'determination', 'place', 'company', 'center', 'main', 'interests', 'center', 'main', 'interest', 'company', 'remain', 'located', 'state', 'registered', 'office', 'main', 'insolvency', 'proceedings', 'respect', 'company', 'eu', 'insolvency', 'regulation', 'would', 'commenced', 'jurisdiction', 'accordingly', 'court', 'jurisdiction', 'would', 'entitled', 'commence', 'types', 'insolvency', 'proceedings', 'referred', 'annex', 'eu', 'insolvency', 'regulation', 'proceedings', 'governed', 'lex', 'fori', 'concursus', 'e', 'local', 'laws', 'court', 'opening', 'main', 'insolvency', 'proceedings', 'insolvency', 'proceedings', 'opened', 'one', 'eu', 'member', 'state', 'eu', 'insolvency', 'regulation', 'recognized', 'automatically', 'eu', 'member', 'states', 'denmark', 'center', 'main', 'interests', 'debtor', 'one', 'eu', 'member', 'state', 'denmark', 'article', '3', '2', 'eu', 'insolvency', 'regulation', 'courts', 'another', 'eu', 'member', 'state', 'denmark', 'jurisdiction', 'open', 'territorial', 'proceedings', 'event', 'debtor', 'establishment', 'territory', 'eu', 'member', 'state', 'main', 'insolvency', 'proceedings', 'opened', 'court', 'eu', 'member', 'state', 'center', 'main', 'interest', 'debtor', 'situated', 'outstanding', 'territorial', 'proceedings', 'entitled', 'secondary', 'proceedings', 'winding', 'proceedings', 'no', 'main', 'insolvency', 'proceedings', 'outstanding', 'territorial', 'proceedings', 'could', 'still', 'opened', 'another', 'eu', 'member', 'state', 'except', 'denmark', 'certain', 'circumstances', 'set', 'forth', 'article', '3', '4', 'eu', 'insolvency', 'regulation', 'effects', 'territorial', 'proceedings', 'restricted', 'assets', 'debtor', 'situated', 'territory', 'eu', 'member', 'state', 'company', 'not', '250', 'establishment', 'eu', 'member', 'state', 'no', 'court', 'eu', 'member', 'state', 'jurisdiction', 'open', 'territorial', 'proceedings', 'respect', 'company', 'eu', 'insolvency', 'regulation', 'event', 'one', 'issuer', 'guarantors', 'subsidiaries', 'experience', 'financial', 'difficulty', 'not', 'possible', 'predict', 'certainty', 'jurisdiction', 'jurisdictions', 'insolvency', 'similar', 'proceedings', 'would', 'commenced', 'outcome', 'proceedings', 'applicable', 'insolvency', 'laws', 'may', 'affect', 'enforceability', 'obligations', 'security', 'issuer', 'english', 'guarantors', 'england', 'wales', 'guarantors', 'companies', 'incorporated', 'laws', 'england', 'wales', 'therefore', 'main', 'insolvency', 'proceedings', 'respect', 'guarantor', 'would', 'likely', 'commenced', 'england', 'conducted', 'accordance', 'requirements', 'english', 'insolvency', 'laws', 'however', 'pursuant', 'eu', 'insolvency', 'regulation', 'english', 'company', 'conducts', 'business', 'another', 'member', 'state', 'european', 'union', 'jurisdiction', 'english', 'courts', 'may', 'limited', 'company', 'center', 'main', 'interests', 'found', 'another', 'member', 'state', 'see', 'european', 'union', 'number', 'factors', 'taken', 'account', 'ascertain', 'center', 'main', 'interests', 'center', 'main', 'interests', 'correspond', 'place', 'company', 'conducts', 'administration', 'interests', 'regular', 'basis', 'therefore', 'ascertainable', 'third', 'parties', 'place', 'registered', 'office', 'company', 'presumed', 'center', 'main', 'interests', 'absence', 'proof', 'contrary', 'point', 'issue', 'falls', 'determined', 'time', 'relevant', 'insolvency', 'proceedings', 'opened', 'fixed', 'floating', 'charges', 'number', 'ways', 'fixed', 'charge', 'security', 'advantage', 'floating', 'charge', 'security', 'administrator', 'appointed', 'charging', 'company', 'convert', 'floating', 'charge', 'assets', 'cash', 'use', 'cash', 'use', 'cash', 'subject', 'floating', 'charge', 'meet', 'administration', 'expenses', 'include', 'costs', 'continuing', 'operate', 'charging', 'company', 'business', 'administration', 'priority', 'claims', 'floating', 'charge', 'holder', 'b', 'fixed', 'charge', 'even', 'created', 'date', 'floating', 'charge', 'may', 'priority', 'floating', 'charge', 'charged', 'assets', 'provided', 'fixed', 'charge', 'holder', 'no', 'notice', 'restrictions', 'c', 'general', 'costs', 'expenses', 'including', 'liquidator', 'remuneration', 'properly', 'incurred', 'winding', 'payable', 'company', 'assets', 'including', 'assets', 'subject', 'floating', 'charge', 'priority', 'floating', 'charge', 'claims', 'floating', 'charge', 'security', 'crystallizes', 'company', 'entitled', 'deal', 'assets', 'subject', 'floating', 'charge', 'security', 'ordinary', 'course', 'business', 'meaning', 'assets', 'effectively', 'disposed', 'charging', 'company', 'give', 'third', 'party', 'good', 'title', 'assets', 'free', 'floating', 'charge', 'e', 'floating', 'charge', 'security', 'subject', 'certain', 'challenges', 'english', 'insolvency', 'law', 'see', 'administration', 'floating', 'charges', 'grant', 'floating', 'charge', 'f', 'floating', 'charge', 'security', 'subject', 'claims', 'preferential', 'creditors', 'occupational', 'pension', 'scheme', 'contributions', 'salaries', 'owed', 'employees', 'ring', 'fencing', 'see', 'administration', 'floating', 'charges', 'english', 'law', 'possibility', 'court', 'could', 'recharacterize', 'fixed', 'security', 'interests', 'purported', 'created', 'security', 'document', 'floating', 'charges', 'description', 'given', 'security', 'interests', 'parties', 'not', 'determinative', 'whether', 'security', 'interests', 'labeled', 'fixed', 'upheld', 'fixed', 'security', 'interests', 'rather', 'floating', 'security', 'interests', 'depend', 'among', 'things', 'whether', 'chargee', 'requisite', 'degree', 'control', 'relevant', 'chargor', 'ability', 'deal', 'relevant', 'assets', 'proceeds', 'thereof', 'whether', 'control', 'exercised', 'chargee', 'practice', 'chargor', 'free', 'deal', 'secured', 'assets', 'without', 'consent', 'chargee', 'prior', 'crystallization', 'court', 'likely', 'hold', 'security', 'interest', 'question', 'constitutes', 'floating', 'charge', 'notwithstanding', 'may', 'described', 'fixed', 'charge', 'security', 'documents', 'administration', 'floating', 'charges', 'relevant', 'english', 'insolvency', 'statute', 'empowers', 'english', 'courts', 'make', 'administration', 'order', 'respect', 'english', 'company', 'certain', 'circumstances', 'administrator', 'also', '251', 'appointed', 'court', 'company', 'directors', 'holder', 'qualifying', 'floating', 'charge', 'different', 'procedures', 'apply', 'according', 'identity', 'appointor', 'administration', 'general', 'no', 'proceedings', 'legal', 'process', 'may', 'commenced', 'continued', 'company', 'administration', 'security', 'enforced', 'company', 'property', 'except', 'leave', 'court', 'consent', 'administrator', 'certain', 'creditors', 'company', 'administration', 'may', 'able', 'realize', 'security', 'company', 'property', 'notwithstanding', 'statutory', 'moratorium', 'virtue', 'disapplication', 'administration', 'moratorium', 'relation', 'security', 'financial', 'collateral', 'agreement', 'generally', 'cash', 'financial', 'instruments', 'shares', 'bonds', 'tradable', 'capital', 'market', 'debt', 'instruments', 'credit', 'claims', 'financial', 'collateral', 'arrangements', 'no', '2', 'regulations', '2003', 'amended', 'english', 'obligor', 'enter', 'administration', 'likely', 'security', 'granted', 'guarantee', 'granted', 'may', 'not', 'enforced', 'administration', 'addition', 'limited', 'circumstances', 'no', 'administrative', 'receiver', 'appointed', 'secured', 'creditor', 'preference', 'administrator', 'already', 'appointed', 'receiver', 'must', 'resign', 'requested', 'administrator', 'company', 'already', 'administration', 'no', 'receiver', 'may', 'appointed', 'order', 'empower', 'security', 'agent', 'appoint', 'administrative', 'receiver', 'administrator', 'company', 'floating', 'charge', 'granted', 'relevant', 'english', 'obligor', 'must', 'constitute', 'qualifying', 'floating', 'charge', 'purposes', 'english', 'insolvency', 'law', 'case', 'ability', 'appoint', 'administrative', 'receiver', 'qualifying', 'floating', 'charge', 'must', 'unless', 'security', 'document', 'pre', 'dates', 'september', '15', '2003', 'fall', 'within', 'one', 'exceptions', 'united', 'kingdom', 'insolvency', 'act', '1986', 'amended', 'prohibition', 'appointment', 'administrative', 'receivers', 'order', 'constitute', 'qualifying', 'floating', 'charge', 'floating', 'charge', 'must', 'created', 'instrument', 'states', 'relevant', 'statutory', 'provision', 'applies', 'b', 'purports', 'empower', 'holder', 'appoint', 'administrator', 'company', 'c', 'purports', 'empower', 'holder', 'appoint', 'administrative', 'receiver', 'within', 'meaning', 'given', 'section', '29', '2', 'united', 'kingdom', 'insolvency', 'act', '1986', 'amended', 'security', 'agent', 'holder', 'qualifying', 'floating', 'charge', 'floating', 'charge', 'security', 'together', 'necessary', 'fixed', 'charge', 'security', 'interests', 'relate', 'whole', 'substantially', 'whole', 'relevant', 'english', 'obligor', 'property', 'least', 'one', 'security', 'interest', 'qualifying', 'floating', 'charge', 'relevant', 'exception', 'prohibition', 'appointment', 'administrative', 'receiver', 'exception', 'relating', 'capital', 'market', 'arrangements', 'defined', 'united', 'kingdom', 'insolvency', 'act', '1986', 'amended', 'apply', 'english', 'obligor', 'creates', 'debt', 'least', '50', '000', '000', 'relevant', 'company', 'life', 'arrangement', 'arrangement', 'involves', 'issue', 'capital', 'markets', 'investment', 'defined', 'united', 'kingdom', 'insolvency', 'act', '1986', 'amended', 'generally', 'rated', 'listed', 'traded', 'debt', 'instrument', 'administrator', 'receiver', 'including', 'administrative', 'receiver', 'liquidator', 'company', 'required', 'ring', 'fence', 'certain', 'percentage', 'proceeds', 'enforcement', 'floating', 'charge', 'security', 'making', 'full', 'provision', 'preferential', 'creditors', 'expenses', 'floating', 'charge', 'realizations', 'benefit', 'unsecured', 'creditors', 'current', 'law', 'applies', '50', 'first', '10', '000', 'floating', 'charge', 'realizations', '20', 'remainder', '10', '000', 'maximum', 'aggregate', 'cap', '600', '000', 'whether', 'assets', 'subject', 'floating', 'charges', 'security', 'constitute', 'substantially', 'whole', 'relevant', 'english', 'obligor', 'assets', 'time', 'floating', 'charges', 'enforced', 'question', 'fact', 'time', 'circumstances', 'english', 'insolvency', 'law', 'granting', 'english', 'company', 'security', 'guarantees', 'challenged', 'cases', 'arise', 'company', 'placed', 'administration', 'liquidation', 'within', 'specified', 'period', 'set', 'detail', 'granting', 'guarantee', 'security', 'therefore', 'specified', 'period', 'administrator', 'liquidator', 'appointed', 'english', 'company', 'may', 'challenge', 'validity', 'guarantee', 'security', 'given', 'company', 'following', 'potential', 'grounds', 'challenge', 'may', 'apply', 'english', 'law', 'guarantees', 'security', 'interests', 'transaction', 'undervalue', 'english', 'insolvency', 'law', 'liquidator', 'administrator', 'english', 'company', 'could', 'apply', 'court', 'order', 'set', 'aside', 'creation', 'security', 'interest', 'guarantee', '252', 'liquidator', 'administrator', 'believes', 'creation', 'security', 'interest', 'guarantee', 'constituted', 'transaction', 'undervalue', 'transaction', 'undervalue', 'time', 'transaction', 'consequence', 'transaction', 'english', 'company', 'becomes', 'unable', 'pay', 'debts', 'defined', 'united', 'kingdom', 'insolvency', 'act', '1986', 'amended', 'english', 'company', 'enters', 'liquidation', 'administration', 'proceedings', 'within', 'period', 'two', 'years', 'date', 'english', 'company', 'grants', 'security', 'interest', 'guarantee', 'transaction', 'might', 'transaction', 'undervalue', 'company', 'makes', 'gift', 'person', 'company', 'receives', 'no', 'consideration', 'company', 'receives', 'consideration', 'significantly', 'less', 'value', 'money', 'money', 'worth', 'consideration', 'given', 'company', 'however', 'court', 'not', 'make', 'order', 'satisfied', 'company', 'entered', 'transaction', 'good', 'faith', 'purpose', 'carrying', 'business', 'time', 'reasonable', 'grounds', 'believing', 'transaction', 'would', 'benefit', 'court', 'determines', 'transaction', 'transaction', 'undervalue', 'court', 'make', 'order', 'thinks', 'fit', 'restore', 'position', 'would', 'transaction', 'not', 'entered', 'proceedings', 'administrator', 'liquidator', 'demonstrate', 'english', 'company', 'insolvent', 'unless', 'beneficiary', 'transaction', 'connected', 'person', 'defined', 'united', 'kingdom', 'insolvency', 'act', '1986', 'amended', 'case', 'presumption', 'insolvency', 'connected', 'person', 'must', 'demonstrate', 'solvency', 'english', 'company', 'proceedings', 'preference', 'english', 'insolvency', 'law', 'liquidator', 'administrator', 'english', 'company', 'could', 'apply', 'court', 'order', 'set', 'aside', 'creation', 'security', 'interest', 'guarantee', 'liquidator', 'administrator', 'believes', 'creation', 'security', 'interest', 'guarantee', 'constituted', 'preference', 'preference', 'time', 'transaction', 'entered', 'english', 'company', 'unable', 'pay', 'debts', 'defined', 'united', 'kingdom', 'insolvency', 'act', '1986', 'amended', 'english', 'company', 'becomes', 'unable', 'pay', 'debts', 'defined', 'united', 'kingdom', 'insolvency', 'act', '1986', 'amended', 'consequence', 'entry', 'transaction', 'english', 'company', 'enters', 'liquidation', 'administration', 'proceedings', 'within', 'period', 'six', 'months', 'beneficiary', 'security', 'guarantee', 'not', 'connected', 'person', 'two', 'years', 'beneficiary', 'connected', 'person', 'date', 'english', 'company', 'takes', 'decision', 'grant', 'security', 'interest', 'guarantee', 'transaction', 'constitute', 'preference', 'effect', 'putting', 'creditor', 'english', 'company', 'surety', 'guarantor', 'company', 'debts', 'liabilities', 'better', 'position', 'event', 'company', 'going', 'insolvent', 'liquidation', 'creditor', 'guarantor', 'surety', 'would', 'otherwise', 'transaction', 'not', 'entered', 'court', 'determines', 'transaction', 'constituted', 'preference', 'court', 'wide', 'powers', 'restoring', 'position', 'would', 'preference', 'not', 'given', 'could', 'case', 'include', 'reducing', 'payments', 'notes', 'guarantees', 'however', 'court', 'must', 'shown', 'deciding', 'give', 'preference', 'english', 'company', 'influenced', 'desire', 'produce', 'preferential', 'effect', 'proceedings', 'administrator', 'liquidator', 'demonstrate', 'english', 'company', 'insolvent', 'relevant', 'time', 'company', 'influenced', 'desire', 'produce', 'preferential', 'effect', 'unless', 'beneficiary', 'transaction', 'connected', 'person', 'case', 'presumption', 'insolvency', 'company', 'influenced', 'desire', 'produce', 'preferential', 'effect', 'connected', 'person', 'must', 'demonstrate', 'proceedings', 'no', 'influence', 'transaction', 'defrauding', 'creditors', 'english', 'insolvency', 'law', 'shown', 'transaction', 'undervalue', 'made', 'purposes', 'putting', 'assets', 'beyond', 'reach', 'person', 'making', 'may', 'make', 'claim', 'company', 'otherwise', 'prejudicing', 'interests', 'person', 'relation', 'claim', 'person', 'making', 'may', 'make', 'transaction', 'may', 'set', 'aside', 'court', 'transaction', 'defrauding', 'creditors', 'application', 'court', 'order', 'set', 'aside', 'transaction', 'may', 'made', 'administrator', 'liquidator', 'subject', 'certain', 'conditions', 'united', 'kingdom', 'financial', 'conduct', 'authority', 'april', '1', '2013', 'assumed', 'corporate', 'identity', 'united', 'kingdom', 'financial', 'services', 'authority', 'united', 'kingdom', 'pensions', 'regulator', 'addition', 'person', 'capable', 'prejudiced', '253', 'transaction', 'may', 'leave', 'court', 'case', 'company', 'administration', 'liquidation', 'also', 'bring', 'application', 'set', 'aside', 'transaction', 'no', 'time', 'limit', 'english', 'insolvency', 'legislation', 'within', 'challenge', 'must', 'made', 'relevant', 'company', 'not', 'need', 'insolvent', 'time', 'transaction', 'court', 'determines', 'transaction', 'transaction', 'defrauding', 'creditors', 'court', 'make', 'orders', 'thinks', 'fit', 'restore', 'position', 'would', 'transaction', 'not', 'entered', 'protect', 'interests', 'victims', 'transaction', 'relevant', 'court', 'order', 'may', 'affect', 'property', 'impose', 'obligation', 'person', 'whether', 'not', 'person', 'transaction', 'entered', 'however', 'order', 'not', 'prejudice', 'interest', 'property', 'acquired', 'person', 'debtor', 'company', 'good', 'faith', 'value', 'without', 'notice', 'relevant', 'circumstances', 'not', 'require', 'person', 'received', 'benefit', 'transaction', 'good', 'faith', 'value', 'without', 'notice', 'relevant', 'circumstances', 'pay', 'sum', 'unless', 'person', 'party', 'transaction', 'grant', 'floating', 'charge', 'english', 'insolvency', 'law', 'english', 'obligor', 'unable', 'pay', 'debts', 'time', 'result', 'granting', 'floating', 'charge', 'floating', 'charge', 'granted', 'within', 'specified', 'period', 'referred', 'floating', 'charge', 'avoided', 'except', 'extent', 'value', 'money', 'paid', 'goods', 'services', 'supplied', 'discharge', 'reduction', 'debt', 'relevant', 'english', 'obligor', 'time', 'creation', 'floating', 'charge', 'plus', 'certain', 'interest', 'requirement', 'english', 'obligor', 'insolvent', 'time', 'result', 'granting', 'floating', 'charge', 'not', 'apply', 'floating', 'charge', 'granted', 'connected', 'person', 'floating', 'charge', 'granted', 'connected', 'person', 'floating', 'charge', 'granted', 'within', 'specified', 'period', 'referred', 'floating', 'charge', 'invalid', 'except', 'extent', 'value', 'money', 'paid', 'goods', 'services', 'supplied', 'discharge', 'reduction', 'debt', 'relevant', 'english', 'obligor', 'time', 'creation', 'floating', 'charge', 'plus', 'certain', 'interest', 'whether', 'relevant', 'english', 'obligor', 'solvent', 'insolvent', 'time', 'grant', 'granting', 'floating', 'charge', 'challenged', 'relevant', 'english', 'obligor', 'enters', 'liquidation', 'administration', 'proceedings', 'within', 'period', 'one', 'year', 'beneficiary', 'not', 'connected', 'person', 'two', 'years', 'beneficiary', 'connected', 'person', 'date', 'relevant', 'english', 'obligor', 'grants', 'floating', 'charge', 'however', 'floating', 'charge', 'qualifies', 'security', 'financial', 'collateral', 'agreement', 'financial', 'collateral', 'arrangements', 'no', '2', 'regulations', '2003', 'amended', 'floating', 'charge', 'not', 'subject', 'challenge', 'described', 'paragraph', '254', 'transfer', 'restrictions', 'prospective', 'purchaser', 'notes', 'advised', 'consult', 'legal', 'counsel', 'prior', 'making', 'offer', 'resale', 'pledge', 'transfer', 'notes', 'offered', 'hereby', 'notes', 'not', 'registered', 'u', 'securities', 'act', 'applicable', 'securities', 'laws', 'may', 'not', 'offered', 'sold', 'delivered', 'united', 'states', 'account', 'benefit', 'u', 'person', 'except', 'pursuant', 'effective', 'registration', 'statement', 'transaction', 'not', 'subject', 'registration', 'requirements', 'u', 'securities', 'act', 'accordance', 'applicable', 'exemption', 'registration', 'requirements', 'laws', 'accordingly', 'notes', 'offered', 'sold', 'qualified', 'institutional', 'buyers', 'private', 'sale', 'exempt', 'registration', 'requirements', 'u', 'securities', 'act', 'pursuant', 'rule', '144a', 'applicable', 'securities', 'laws', 'ii', 'non', 'u', 'persons', 'offshore', 'transactions', 'outside', 'united', 'states', 'compliance', 'regulation', 'addition', '40', 'days', 'later', 'commencement', 'offering', 'notes', 'issue', 'date', 'offer', 'sale', 'notes', 'within', 'united', 'states', 'dealer', 'whether', 'not', 'participating', 'offering', 'notes', 'may', 'violate', 'registration', 'requirements', 'u', 'securities', 'act', 'offer', 'sale', 'made', 'otherwise', 'pursuant', 'rule', '144a', 'use', 'terms', 'offshore', 'transaction', 'u', 'person', 'united', 'states', 'meanings', 'given', 'regulation', 'purchase', 'notes', 'subject', 'restrictions', 'transfer', 'summarized', 'purchasing', 'notes', 'purchaser', 'deemed', 'made', 'following', 'acknowledgements', 'representations', 'agreements', 'us', 'initial', 'purchasers', '1', 'purchaser', 'understands', 'acknowledges', 'notes', 'not', 'registered', 'u', 'securities', 'act', 'securities', 'laws', 'offered', 'resale', 'transactions', 'not', 'require', 'registration', 'u', 'securities', 'act', 'securities', 'laws', 'unless', 'registered', 'notes', 'may', 'not', 'offered', 'sold', 'otherwise', 'transferred', 'except', 'exemption', 'transaction', 'not', 'subject', 'registration', 'requirements', 'u', 'securities', 'act', 'applicable', 'securities', 'laws', 'case', 'compliance', 'conditions', 'transfer', 'set', 'forth', 'paragraph', '3', '2', 'purchaser', 'not', 'affiliate', 'defined', 'rule', '144', 'purchaser', 'not', 'acting', 'behalf', 'either', 'purchaser', 'qualified', 'institutional', 'buyer', 'defined', 'rule', '144a', 'aware', 'sale', 'made', 'reliance', 'rule', '144a', 'purchasing', 'notes', 'account', 'account', 'another', 'qualified', 'institutional', 'buyer', 'purchaser', 'not', 'u', 'person', 'defined', 'regulation', 'nor', 'acquiring', 'notes', 'account', 'benefit', 'u', 'person', 'acquiring', 'notes', 'offshore', 'transaction', 'outside', 'united', 'states', 'pursuant', 'regulation', '3', 'purchaser', 'represents', 'purchasing', 'notes', 'account', 'one', 'investor', 'accounts', 'acting', 'fiduciary', 'agent', 'case', 'not', 'view', 'offer', 'sale', 'connection', 'distribution', 'notes', 'violation', 'u', 'securities', 'act', 'subject', 'requirement', 'law', 'disposition', 'property', 'property', 'investor', 'account', 'accounts', 'times', 'within', 'control', 'subject', 'ability', 'resell', 'notes', 'pursuant', 'rule', '144a', 'available', 'exemption', 'registration', 'u', 'securities', 'act', 'purchaser', 'agrees', 'behalf', 'behalf', 'investor', 'account', 'purchasing', 'notes', 'subsequent', 'holder', 'notes', 'acceptance', 'notes', 'agree', 'end', 'resale', 'restriction', 'period', 'defined', 'notes', 'may', 'offered', 'sold', 'otherwise', 'transferred', 'issuer', 'b', 'registration', 'statement', 'declared', 'effective', 'u', 'securities', 'act', 'c', 'long', 'notes', 'eligible', 'resale', 'rule', '144a', 'person', 'seller', 'reasonably', 'believes', 'qualified', 'institutional', 'buyer', 'purchasing', 'account', 'account', 'another', '255', 'qualified', 'institutional', 'buyer', 'notice', 'given', 'transfer', 'made', 'reliance', 'rule', '144a', 'offers', 'sales', 'non', 'u', 'persons', 'occur', 'outside', 'united', 'states', 'within', 'meaning', 'regulation', 'e', 'available', 'exemption', 'registration', 'requirements', 'u', 'securities', 'act', 'case', 'compliance', 'applicable', 'state', 'securities', 'laws', 'subject', 'cases', 'requirement', 'law', 'disposition', 'seller', 'property', 'property', 'investor', 'account', 'accounts', 'times', 'within', 'seller', 'account', 'control', 'purchaser', 'also', 'acknowledges', 'restrictions', 'resale', 'apply', 'date', 'one', 'year', 'case', 'rule', '144a', 'notes', '40', 'days', 'case', 'regulation', 'notes', 'later', 'closing', 'date', 'last', 'date', 'affiliates', 'owner', 'notes', 'predecessor', 'notes', 'resale', 'restriction', 'period', 'not', 'apply', 'applicable', 'resale', 'restriction', 'period', 'ends', 'ii', 'trustee', 'reserve', 'right', 'require', 'connection', 'offer', 'sale', 'transfer', 'notes', 'x', 'clause', 'e', 'delivery', 'opinion', 'counsel', 'certifications', 'information', 'satisfactory', 'us', 'trustee', 'clauses', 'e', 'delivery', 'completed', 'certificate', 'transfer', 'form', 'appearing', 'reverse', 'side', 'security', 'transferor', 'trustee', 'iii', 'note', 'contain', 'legend', 'substantially', 'following', 'effect', 'security', 'not', 'registered', 'united', 'states', 'securities', 'act', '1933', 'amended', 'securities', 'act', 'securities', 'laws', 'state', 'jurisdiction', 'neither', 'security', 'nor', 'interest', 'participation', 'herein', 'may', 'reoffered', 'sold', 'assigned', 'transferred', 'pledged', 'encumbered', 'otherwise', 'disposed', 'absence', 'registration', 'unless', 'transaction', 'exempt', 'not', 'subject', 'registration', 'holder', 'security', 'acceptance', 'hereof', 'agrees', 'behalf', 'behalf', 'investor', 'account', 'purchased', 'securities', 'offer', 'sell', 'otherwise', 'transfer', 'security', 'prior', 'date', 'resale', 'restriction', 'termination', 'date', 'case', 'rule', '144a', 'notes', 'one', 'year', 'later', 'original', 'issue', 'date', 'hereof', 'last', 'date', 'issuer', 'affiliate', 'issuer', 'owner', 'security', 'predecessor', 'security', 'case', 'regulation', 'notes', '40', 'days', 'later', 'original', 'issue', 'date', 'hereof', 'date', 'security', 'predecessor', 'security', 'first', 'offered', 'persons', 'distributors', 'defined', 'rule', '902', 'regulation', 'reliance', 'regulation', 'later', 'last', 'date', 'upon', 'additional', 'notes', 'defined', 'indenture', 'issued', 'issuer', 'b', 'pursuant', 'registration', 'statement', 'declared', 'effective', 'securities', 'act', 'c', 'long', 'securities', 'eligible', 'resale', 'pursuant', 'rule', '144a', 'securities', 'act', 'person', 'reasonably', 'believes', 'qualified', 'institutional', 'buyer', 'defined', 'rule', '144a', 'securities', 'act', 'purchases', 'account', 'account', 'qualified', 'institutional', 'buyer', 'notice', 'given', 'transfer', 'made', 'reliance', 'rule', '144a', 'pursuant', 'offers', 'sales', 'non', 'u', 'persons', 'occur', 'outside', 'united', 'states', 'within', 'meaning', 'regulation', 'securities', 'act', 'e', 'pursuant', 'another', 'available', 'exemption', 'registration', 'requirements', 'securities', 'act', 'subject', 'issuer', 'trustee', 'right', 'prior', 'offer', 'sale', 'transfer', 'pursuant', 'clause', 'e', 'require', 'delivery', 'opinion', 'counsel', 'certification', 'information', '256', 'satisfactory', 'ii', 'foregoing', 'cases', 'require', 'certificate', 'transfer', 'form', 'appearing', 'reverse', 'note', 'completed', 'delivered', 'transferor', 'trustee', 'legend', 'removed', 'upon', 'request', 'holder', 'resale', 'restriction', 'termination', 'date', 'case', 'regulation', 'notes', 'acquisition', 'hereof', 'holder', 'hereof', 'represents', 'not', 'u', 'person', 'nor', 'purchasing', 'account', 'u', 'person', 'acquiring', 'security', 'offshore', 'transaction', 'accordance', 'regulation', 'securities', 'act', 'case', 'rule', '144a', 'notes', 'acquisition', 'hereof', 'holder', 'hereof', 'represents', 'qualified', 'institutional', 'buyer', 'defined', 'rule', '144a', 'u', 'securities', 'act', 'note', 'issued', 'oid', 'contain', 'legend', 'substantially', 'following', 'effect', 'note', 'issued', 'original', 'issue', 'discount', 'purposes', 'section', '1271', 'et', 'seq', 'internal', 'revenue', 'code', 'holder', 'may', 'obtain', 'issue', 'price', 'amount', 'original', 'issue', 'discount', 'issue', 'date', 'yield', 'maturity', 'note', 'submitting', 'written', 'request', 'information', 'following', 'address', 'banbury', 'road', 'gaydon', 'warwick', 'cv35', '0db', 'united', 'kingdom', 'attention', 'general', 'counsel', 'note', 'also', 'contain', 'legend', 'substantially', 'following', 'effect', 'acceptance', 'note', 'holder', 'deemed', 'represented', 'warranted', 'either', 'no', 'portion', 'assets', 'used', 'holder', 'acquire', 'hold', 'notes', 'constitutes', 'assets', 'employee', 'benefit', 'plan', 'subject', 'title', 'employee', 'retirement', 'income', 'security', 'act', '1974', 'amended', 'erisa', 'plan', 'individual', 'retirement', 'account', 'arrangement', 'subject', 'section', '4975', 'internal', 'revenue', 'code', '1986', 'amended', 'code', 'provisions', 'federal', 'state', 'local', 'non', 'u', 'laws', 'rules', 'regulations', 'similar', 'provisions', 'erisa', 'code', 'similar', 'laws', 'entity', 'whose', 'underlying', 'assets', 'considered', 'include', 'plan', 'assets', 'plan', 'account', 'arrangement', 'b', 'purchase', 'holding', 'notes', 'holder', 'not', 'constitute', 'non', 'exempt', 'prohibited', 'transaction', 'section', '406', 'erisa', 'section', '4975', 'code', 'similar', 'violation', 'applicable', 'similar', 'laws', 'iv', 'purchaser', 'agrees', 'give', 'person', 'transfers', 'notes', 'notice', 'restrictions', 'transfer', 'notes', 'v', 'purchaser', 'acknowledges', 'transfer', 'agent', 'not', 'required', 'accept', 'registration', 'transfer', 'notes', 'except', 'upon', 'presentation', 'evidence', 'satisfactory', 'issuer', 'trustee', 'restrictions', 'set', 'forth', 'therein', 'complied', 'vi', 'purchaser', 'received', 'copy', 'offering', 'memorandum', 'relating', 'offering', 'notes', 'acknowledges', 'neither', 'nor', 'initial', 'purchasers', 'person', 'representing', 'us', 'initial', 'purchasers', 'made', 'representation', 'respect', 'us', 'offering', 'sale', 'notes', 'information', 'contained', 'offering', 'memorandum', 'b', 'access', 'financial', 'information', 'offered', 'opportunity', 'ask', 'questions', 'us', 'received', 'answers', 'thereto', 'deemed', 'necessary', 'connection', 'decision', 'purchase', 'notes', 'vii', 'purchaser', 'understands', 'initial', 'purchasers', 'others', 'rely', 'upon', 'truth', 'accuracy', 'foregoing', 'representations', 'acknowledgements', 'agreements', 'agrees', 'representations', '257', 'acknowledgements', 'deemed', 'made', 'purchase', 'notes', 'no', 'longer', 'accurate', 'purchaser', 'shall', 'promptly', 'notify', 'us', 'initial', 'purchasers', 'purchaser', 'acquiring', 'notes', 'fiduciary', 'agent', 'one', 'investor', 'accounts', 'represents', 'sole', 'investment', 'discretion', 'respect', 'account', 'full', 'power', 'make', 'foregoing', 'representations', 'acknowledgements', 'agreements', 'behalf', 'account', 'viii', 'purchaser', 'able', 'fend', 'transactions', 'contemplated', 'offering', 'memorandum', 'b', 'knowledge', 'experience', 'financial', 'business', 'matters', 'capable', 'evaluating', 'merits', 'risks', 'prospective', 'investment', 'notes', 'c', 'ability', 'bear', 'economic', 'risks', 'prospective', 'investment', 'afford', 'complete', 'loss', 'investment', 'ix', 'either', 'no', 'portion', 'assets', 'used', 'purchaser', 'transferee', 'acquire', 'hold', 'notes', 'constitutes', 'assets', 'plan', 'governmental', 'church', 'plan', 'subject', 'similar', 'law', 'entity', 'whose', 'underlying', 'assets', 'considered', 'include', 'plan', 'assets', 'plan', 'account', 'arrangement', 'b', 'purchase', 'holding', 'notes', 'purchaser', 'transferee', 'not', 'constitute', 'non', 'exempt', 'prohibited', 'transaction', 'section', '406', 'erisa', 'section', '4975', 'code', 'violation', 'applicable', 'similar', 'laws', '258', 'plan', 'distribution', 'subject', 'terms', 'conditions', 'contained', 'purchase', 'agreement', 'among', 'issuer', 'guarantors', 'initial', 'purchasers', 'dated', 'around', 'date', 'offering', 'memorandum', 'issuer', 'agree', 'sell', 'dollar', 'notes', 'dollar', 'notes', 'initial', 'purchasers', 'dollar', 'notes', 'initial', 'purchasers', 'agree', 'severally', 'not', 'jointly', 'purchase', 'issuer', 'entire', 'principal', 'amount', 'dollar', 'notes', 'issuer', 'agree', 'sell', 'sterling', 'notes', 'sterling', 'notes', 'initial', 'purchasers', 'sterling', 'notes', 'initial', 'purchasers', 'agree', 'severally', 'not', 'jointly', 'purchase', 'issuer', 'entire', 'principal', 'amount', 'sterling', 'notes', 'initial', 'purchasers', 'initially', 'propose', 'offer', 'series', 'notes', 'resale', 'respective', 'issue', 'price', 'appears', 'cover', 'page', 'offering', 'memorandum', 'initial', 'offering', 'initial', 'purchasers', 'may', 'change', 'price', 'series', 'notes', 'offered', 'selling', 'terms', 'time', 'without', 'notice', 'initial', 'purchasers', 'may', 'offer', 'sell', 'notes', 'certain', 'affiliates', 'extent', 'initial', 'purchasers', 'not', 'u', 'registered', 'broker', 'dealers', 'offer', 'sell', 'notes', 'united', 'states', 'one', 'u', 'registered', 'broker', 'dealers', 'affiliates', 'appropriate', 'addition', 'initial', 'purchasers', 'may', 'offer', 'sell', 'notes', 'outside', 'united', 'states', 'affiliates', 'purchase', 'agreement', 'provides', 'obligations', 'initial', 'purchasers', 'pay', 'accept', 'delivery', 'notes', 'subject', 'among', 'conditions', 'delivery', 'certain', 'legal', 'opinions', 'counsel', 'issuer', 'counsel', 'purchase', 'agreement', 'also', 'provides', 'initial', 'purchaser', 'defaults', 'purchase', 'commitments', 'non', 'defaulting', 'initial', 'purchasers', 'may', 'increased', 'cases', 'offering', 'notes', 'may', 'terminated', 'purchase', 'agreement', 'issuer', 'guarantors', 'agreed', 'issuer', 'pay', 'initial', 'purchasers', 'commission', 'pay', 'certain', 'fees', 'expenses', 'relating', 'offering', 'notes', 'period', 'date', 'offering', 'memorandum', 'including', 'date', '90', 'days', 'thereafter', 'neither', 'company', 'nor', 'subsidiaries', 'controlled', 'affiliates', 'nor', 'completion', 'date', 'offering', 'notes', 'date', '90', 'days', 'date', 'offering', 'memorandum', 'without', 'prior', 'written', 'consent', 'representatives', 'offer', 'sell', 'contract', 'sell', 'issue', 'otherwise', 'dispose', 'debt', 'securities', 'issued', 'guaranteed', 'issuer', 'guarantors', 'tenor', 'one', 'year', 'notes', 'guarantees', 'indemnify', 'initial', 'purchasers', 'certain', 'liabilities', 'including', 'liabilities', 'u', 'securities', 'act', 'contribute', 'payments', 'initial', 'purchasers', 'may', 'required', 'make', 'respect', 'liabilities', 'notes', 'guarantees', 'not', 'not', 'registered', 'u', 'securities', 'act', 'securities', 'laws', 'jurisdiction', 'may', 'not', 'offered', 'sold', 'within', 'united', 'states', 'except', 'qualified', 'institutional', 'buyers', 'reliance', 'rule', '144a', 'non', 'u', 'persons', 'outside', 'united', 'states', 'reliance', 'regulation', 'terms', 'used', 'paragraph', 'meanings', 'given', 'regulation', 'resales', 'notes', 'restricted', 'described', 'transfer', 'restrictions', 'connection', 'sales', 'outside', 'united', 'states', 'initial', 'purchasers', 'agreed', 'not', 'offer', 'sell', 'deliver', 'notes', 'account', 'benefit', 'u', 'persons', '1', 'part', 'initial', 'distribution', 'time', '2', 'otherwise', '40', 'days', 'later', 'commencement', 'offering', 'date', 'notes', 'originally', 'issued', 'initial', 'purchasers', 'send', 'dealer', 'sell', 'notes', '40', 'day', 'period', 'confirmation', 'notice', 'setting', 'forth', 'restrictions', 'offers', 'sales', 'notes', 'within', 'united', 'states', 'dealer', 'account', 'benefit', 'u', 'persons', 'addition', 'respect', 'notes', 'initially', 'sold', 'pursuant', 'regulation', '40', 'days', 'commencement', 'offering', 'notes', 'offer', 'sale', 'notes', 'within', 'united', 'states', 'dealer', 'not', 'participating', 'offering', 'notes', 'may', 'violate', 'registration', 'requirements', 'u', 'securities', 'act', 'offer', 'sale', 'made', 'otherwise', 'accordance', 'rule', '144a', 'pursuant', 'another', 'exemption', 'registration', 'u', 'securities', 'act', '259', 'persons', 'purchase', 'notes', 'initial', 'purchasers', 'may', 'required', 'pay', 'stamp', 'duty', 'taxes', 'charges', 'accordance', 'laws', 'practice', 'country', 'purchase', 'addition', 'offering', 'price', 'set', 'forth', 'cover', 'page', 'hereof', 'purchase', 'agreement', 'initial', 'purchasers', 'severally', 'not', 'jointly', 'represented', 'warranted', 'agreed', 'communicated', 'caused', 'communicated', 'communicate', 'cause', 'communicated', 'invitation', 'inducement', 'engage', 'investment', 'activity', 'within', 'meaning', 'section', '21', 'fsma', 'received', 'connection', 'issue', 'sale', 'notes', 'circumstances', 'section', '21', '1', 'fsma', 'not', 'apply', 'issuer', 'company', 'complied', 'comply', 'applicable', 'provisions', 'fsma', 'respect', 'anything', 'done', 'relation', 'notes', 'otherwise', 'involving', 'united', 'kingdom', 'offering', 'memorandum', 'prepared', 'basis', 'offer', 'notes', 'member', 'state', 'european', 'economic', 'area', 'made', 'pursuant', 'exemption', 'prospectus', 'directive', 'requirement', 'publish', 'prospectus', 'offers', 'notes', 'expression', 'prospectus', 'directive', 'means', 'directive', '2003', '71', 'ec', 'amended', 'includes', 'relevant', 'implementing', 'measure', 'member', 'state', 'concerned', 'no', 'action', 'taken', 'jurisdiction', 'including', 'united', 'states', 'united', 'kingdom', 'us', 'initial', 'purchasers', 'would', 'permit', 'public', 'offering', 'notes', 'possession', 'circulation', 'distribution', 'offering', 'memorandum', 'material', 'relating', 'us', 'notes', 'jurisdiction', 'action', 'purpose', 'required', 'accordingly', 'notes', 'may', 'not', 'offered', 'sold', 'directly', 'indirectly', 'neither', 'offering', 'memorandum', 'nor', 'offering', 'material', 'advertisements', 'connection', 'notes', 'may', 'distributed', 'published', 'country', 'jurisdiction', 'except', 'compliance', 'applicable', 'rules', 'regulations', 'country', 'jurisdiction', 'offering', 'memorandum', 'not', 'constitute', 'offer', 'sell', 'solicitation', 'offer', 'purchase', 'jurisdiction', 'offer', 'solicitation', 'would', 'unlawful', 'persons', 'whose', 'possession', 'offering', 'memorandum', 'comes', 'advised', 'inform', 'observe', 'restrictions', 'relating', 'offering', 'notes', 'distribution', 'offering', 'memorandum', 'resale', 'notes', 'see', 'notice', 'investors', 'transfer', 'restrictions', 'issuer', 'guarantors', 'also', 'agreed', 'not', 'time', 'offer', 'sell', 'contract', 'sell', 'pledge', 'otherwise', 'dispose', 'directly', 'indirectly', 'securities', 'circumstances', 'offer', 'sale', 'pledge', 'contract', 'disposition', 'would', 'cause', 'exemption', 'afforded', 'section', '4', '2', 'u', 'securities', 'act', 'safe', 'harbors', 'rule', '144a', 'regulation', 'cease', 'applicable', 'offer', 'sale', 'notes', 'issuer', 'guarantors', 'also', 'agreed', 'neither', 'nor', 'affiliates', 'person', 'acting', 'behalf', 'initial', 'purchasers', 'solicit', 'offers', 'offer', 'sell', 'notes', 'means', 'form', 'general', 'solicitation', 'general', 'advertising', 'within', 'meaning', 'rule', '502', 'c', 'regulation', 'manner', 'involving', 'public', 'offering', 'within', 'meaning', 'section', '4', '2', 'u', 'securities', 'act', 'ii', 'engage', 'directed', 'selling', 'efforts', 'within', 'meaning', 'regulation', 'persons', 'comply', 'offering', 'restrictions', 'requirement', 'regulation', 'notes', 'new', 'issue', 'securities', 'currently', 'no', 'market', 'issuer', 'apply', 'listing', 'sponsor', 'listing', 'permission', 'deal', 'notes', 'official', 'list', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'no', 'assurance', 'notes', 'listed', 'admitted', 'trade', 'channel', 'islands', 'security', 'exchange', 'see', 'risk', 'factors', 'risks', 'related', 'indebtedness', 'notes', 'may', 'not', 'active', 'trading', 'market', 'notes', 'case', 'ability', 'sell', 'notes', 'limited', 'risk', 'factors', 'risks', 'related', 'indebtedness', 'notes', 'transfer', 'notes', 'restricted', 'may', 'adversely', 'affect', 'value', 'notes', 'initial', 'purchasers', 'advised', 'issuer', 'intend', 'make', 'market', 'notes', 'permitted', 'applicable', 'law', 'initial', 'purchasers', 'not', 'obligated', 'however', 'make', 'market', 'notes', 'market', 'making', 'activity', 'may', 'discontinued', 'time', 'sole', '260', 'discretion', 'initial', 'purchasers', 'without', 'notice', 'addition', 'market', 'making', 'activity', 'subject', 'limits', 'imposed', 'u', 'securities', 'act', 'u', 'exchange', 'act', 'accordingly', 'issuer', 'can', 'not', 'assure', 'market', 'notes', 'develop', 'liquid', 'develop', 'able', 'sell', 'notes', 'particular', 'time', 'price', 'favorable', 'initial', 'purchasers', 'may', 'engage', 'overallotment', 'stabilizing', 'transactions', 'covering', 'transactions', 'penalty', 'bids', 'accordance', 'applicable', 'laws', 'regulations', 'overallotment', 'involves', 'sales', 'excess', 'offering', 'size', 'creates', 'short', 'position', 'relevant', 'initial', 'purchaser', 'stabilizing', 'transactions', 'permit', 'bidders', 'purchase', 'underlying', 'security', 'long', 'stabilizing', 'bids', 'not', 'exceed', 'specified', 'maximum', 'covering', 'transactions', 'involve', 'purchases', 'notes', 'open', 'market', 'distribution', 'completed', 'order', 'cover', 'short', 'positions', 'penalty', 'bids', 'permit', 'initial', 'purchasers', 'reclaim', 'selling', 'concession', 'broker', 'dealer', 'notes', 'originally', 'sold', 'broker', 'dealer', 'purchased', 'stabilizing', 'covering', 'transaction', 'cover', 'short', 'positions', 'connection', 'offering', 'j', 'p', 'morgan', 'securities', 'llc', 'respect', 'dollar', 'notes', 'j', 'p', 'morgan', 'securities', 'plc', 'respect', 'sterling', 'notes', 'together', 'stabilizing', 'managers', 'person', 'acting', 'behalf', 'may', 'engage', 'transactions', 'stabilize', 'maintain', 'otherwise', 'affect', 'price', 'dollar', 'notes', 'sterling', 'notes', 'applicable', 'specifically', 'stabilizing', 'managers', 'may', 'bid', 'purchase', 'dollar', 'notes', 'sterling', 'notes', 'applicable', 'open', 'markets', 'purpose', 'pegging', 'fixing', 'maintaining', 'price', 'applicable', 'notes', 'stabilizing', 'managers', 'may', 'also', 'overallot', 'offering', 'creating', 'syndicate', 'short', 'position', 'may', 'bid', 'purchase', 'dollar', 'notes', 'sterling', 'notes', 'applicable', 'open', 'market', 'cover', 'syndicate', 'short', 'position', 'addition', 'stabilizing', 'managers', 'may', 'bid', 'purchase', 'dollar', 'notes', 'sterling', 'notes', 'applicable', 'market', 'making', 'transactions', 'permitted', 'applicable', 'laws', 'regulations', 'impose', 'penalty', 'bids', 'activities', 'may', 'stabilize', 'maintain', 'market', 'price', 'dollar', 'notes', 'sterling', 'notes', 'applicable', 'market', 'levels', 'may', 'otherwise', 'prevail', 'stabilizing', 'managers', 'not', 'required', 'engage', 'activities', 'may', 'end', 'activities', 'time', 'accordingly', 'no', 'assurance', 'given', 'liquidity', 'trading', 'markets', 'notes', 'see', 'risk', 'factors', 'risks', 'related', 'indebtedness', 'notes', 'may', 'not', 'active', 'trading', 'market', 'notes', 'case', 'ability', 'sell', 'notes', 'limited', 'stabilizing', 'transactions', 'covering', 'transactions', 'penalty', 'bids', 'may', 'cause', 'prices', 'dollar', 'notes', 'sterling', 'notes', 'higher', 'would', 'otherwise', 'absence', 'transactions', 'transactions', 'may', 'begin', 'date', 'adequate', 'public', 'disclosure', 'terms', 'offering', 'notes', 'made', 'commenced', 'may', 'discontinued', 'time', 'sole', 'discretion', 'initial', 'purchasers', 'activities', 'commenced', 'must', 'end', 'no', 'later', 'earlier', '30', 'days', 'date', 'issuance', 'notes', '60', 'days', 'date', 'allotment', 'notes', 'transactions', 'may', 'effected', 'counter', 'market', 'otherwise', 'issuer', 'expects', 'delivery', 'notes', 'made', 'payment', 'therefor', 'date', 'specified', 'cover', 'page', 'offering', 'memorandum', 'tenth', 'business', 'day', 'following', 'date', 'pricing', 'notes', 'settlement', 'cycle', 'herein', 'referred', '10', 'rule', '15c6', '1', 'u', 'exchange', 'act', 'trades', 'secondary', 'market', 'generally', 'required', 'settle', 'three', 'business', 'days', 'unless', 'parties', 'trade', 'expressly', 'agree', 'otherwise', 'accordingly', 'purchasers', 'wish', 'trade', 'notes', 'date', 'pricing', 'required', 'virtue', 'fact', 'notes', 'initially', 'settle', '10', 'specify', 'alternative', 'settlement', 'cycle', 'time', 'trade', 'prevent', 'failed', 'settlement', 'purchasers', 'notes', 'wish', 'trade', 'notes', 'date', 'pricing', 'consult', 'advisors', 'certain', 'initial', 'purchasers', 'affiliates', 'time', 'time', 'engaged', 'may', 'future', 'engage', 'investment', 'banking', 'commercial', 'banking', 'consulting', 'mergers', 'acquisitions', 'hedging', 'financial', 'advisory', 'commercial', 'services', 'issuer', 'subsidiaries', 'associates', 'shareholders', 'ordinary', 'course', 'business', 'including', 'acting', 'initial', 'purchasers', 'lenders', 'connection', 'previous', 'issuances', 'debt', 'securities', 'debt', 'facilities', 'issuer', 'subsidiaries', 'received', 'receive', 'customary', 'fees', 'commissions', 'expense', 'reimbursements', 'transactions', '261', 'addition', 'ordinary', 'course', 'business', 'activities', 'initial', 'purchasers', 'affiliates', 'may', 'make', 'hold', 'broad', 'array', 'investments', 'actively', 'trade', 'debt', 'equity', 'securities', 'related', 'derivative', 'securities', 'financial', 'instruments', 'including', 'bank', 'loans', 'account', 'accounts', 'customers', 'investments', 'securities', 'activities', 'may', 'involve', 'securities', 'instruments', 'issuer', 'affiliates', 'including', 'notes', 'certain', 'initial', 'purchasers', 'affiliates', 'lending', 'relationship', 'issuer', 'affiliates', 'may', 'hedge', 'credit', 'exposure', 'issuer', 'affiliates', 'consistent', 'customary', 'risk', 'management', 'policies', 'typically', 'initial', 'purchaser', 'affiliates', 'would', 'hedge', 'exposure', 'entering', 'transactions', 'consist', 'either', 'purchase', 'credit', 'default', 'swaps', 'creation', 'short', 'positions', 'securities', 'including', 'potentially', 'notes', 'short', 'positions', 'could', 'adversely', 'affect', 'future', 'trading', 'prices', 'notes', 'initial', 'purchasers', 'affiliates', 'may', 'also', 'make', 'investment', 'recommendations', 'publish', 'express', 'independent', 'research', 'views', 'respect', 'securities', 'financial', 'instruments', 'may', 'hold', 'recommend', 'clients', 'acquire', 'long', 'short', 'positions', 'securities', 'instruments', 'certain', 'initial', 'purchasers', 'may', 'become', 'future', 'clients', 'company', 'use', 'services', 'intend', 'use', 'net', 'proceeds', 'offering', 'redeem', 'existing', 'notes', 'existing', 'pik', 'notes', 'general', 'corporate', 'purposes', 'including', 'working', 'capital', 'certain', 'initial', 'purchasers', 'affiliates', 'may', 'hold', 'positions', 'existing', 'notes', 'existing', 'pik', 'notes', 'standard', 'chartered', 'bank', 'relationship', 'bank', 'holdings', 'subsidiaries', 'also', 'provides', 'wholesale', 'financing', 'facility', 'american', 'inventory', 'funding', 'facility', 'aston', 'martin', 'lagonda', 'limited', 'case', 'wholesale', 'finance', 'facility', 'aston', 'martin', 'lagonda', 'north', 'america', 'inc', 'j', 'p', 'morgan', 'limited', 'deutsche', 'bank', 'goldman', 'sachs', 'international', 'act', 'mandated', 'lead', 'arrangers', 'certain', 'initial', 'purchasers', 'original', 'lenders', 'new', 'revolving', 'credit', 'facility', 'agreement', 'receive', 'customary', 'fees', 'commissions', 'roles', 'see', 'description', 'financial', 'arrangements', 'new', 'revolving', 'credit', 'facility', 'agreement', '262', 'legal', 'matters', 'certain', 'legal', 'matters', 'connection', 'offering', 'passed', 'upon', 'us', 'simpson', 'thacher', 'bartlett', 'llp', 'matters', 'u', 'federal', 'new', 'york', 'state', 'english', 'law', 'carey', 'olsen', 'matters', 'jersey', 'law', 'certain', 'legal', 'matters', 'connection', 'offering', 'passed', 'upon', 'initial', 'purchasers', 'latham', 'watkins', 'llp', 'matters', 'u', 'federal', 'new', 'york', 'state', 'english', 'law', 'appleby', 'matters', 'jersey', 'law', '263', 'independent', 'auditors', 'consolidated', 'financial', 'statements', 'holdings', 'years', 'ending', 'december', '31', '2014', 'december', '31', '2015', 'december', '31', '2016', 'included', 'offering', 'memorandum', 'audited', 'kpmg', 'llp', 'independent', 'auditors', 'stated', 'reports', 'appearing', 'herein', 'details', 'see', 'presentation', 'financial', 'information', 'use', 'non', 'ifrs', 'financial', 'information', '264', 'find', 'information', 'purchaser', 'notes', 'initial', 'purchasers', 'furnished', 'copy', 'offering', 'memorandum', 'extent', 'provided', 'initial', 'purchasers', 'issuer', 'related', 'amendment', 'supplement', 'offering', 'memorandum', 'person', 'receiving', 'offering', 'memorandum', 'acknowledges', 'person', 'afforded', 'opportunity', 'request', 'us', 'review', 'received', 'additional', 'information', 'considered', 'necessary', 'verify', 'accuracy', 'completeness', 'information', 'herein', 'person', 'not', 'relied', 'initial', 'purchasers', 'person', 'affiliated', 'initial', 'purchasers', 'connection', 'investigation', 'accuracy', 'information', 'investment', 'decisions', 'except', 'provided', 'pursuant', 'first', 'bullet', 'no', 'person', 'authorized', 'give', 'information', 'make', 'representation', 'concerning', 'notes', 'offered', 'hereby', 'contained', 'herein', 'given', 'made', 'information', 'representation', 'not', 'relied', 'upon', 'authorized', 'company', 'initial', 'purchasers', 'long', 'notes', 'outstanding', 'restricted', 'securities', 'within', 'meaning', 'rule', '144', 'agreed', 'indenture', 'governing', 'notes', 'times', 'neither', 'subject', 'section', '13', '15', 'u', 'securities', 'exchange', 'act', '1934', 'amended', 'nor', 'exempt', 'reporting', 'pursuant', 'rule', '12g3', '2', 'b', 'exchange', 'act', 'upon', 'request', 'furnish', 'holder', 'beneficial', 'owner', 'notes', 'information', 'required', 'delivered', 'pursuant', 'rule', '144a', '4', 'u', 'securities', 'act', 'permit', 'compliance', 'rule', '144a', 'connection', 'resales', 'notes', 'request', 'directed', 'us', 'aston', 'martin', 'lagonda', 'banbury', 'road', 'gaydon', 'warwick', 'cv35', 'odb', 'attention', 'general', 'counsel', '265', 'enforcement', 'civil', 'liabilities', 'issuer', 'notes', 'incorporated', 'laws', 'jersey', 'guarantors', 'capital', 'incorporated', 'laws', 'jersey', 'incorporated', 'laws', 'england', 'wales', 'security', 'documents', 'relating', 'collateral', 'governed', 'laws', 'england', 'wales', 'applicable', 'security', 'interest', 'agreements', 'respect', 'issuer', 'shares', 'capital', 'shares', 'governed', 'jersey', 'law', 'indenture', 'including', 'guarantees', 'notes', 'governed', 'new', 'york', 'law', 'intercreditor', 'agreement', 'governed', 'english', 'law', 'directors', 'executive', 'officers', 'issuer', 'guarantors', 'non', 'residents', 'united', 'states', 'since', 'substantially', 'assets', 'issuer', 'guarantors', 'directors', 'executive', 'officers', 'located', 'outside', 'united', 'states', 'judgment', 'obtained', 'united', 'states', 'issuer', 'guarantor', 'person', 'including', 'judgments', 'respect', 'payment', 'principal', 'premium', 'interest', 'notes', 'judgment', 'u', 'court', 'predicated', 'upon', 'civil', 'liabilities', 'u', 'federal', 'state', 'securities', 'laws', 'may', 'not', 'collectible', 'united', 'states', 'furthermore', 'although', 'issuer', 'guarantors', 'appoint', 'agent', 'service', 'process', 'united', 'states', 'submit', 'jurisdiction', 'new', 'york', 'courts', 'case', 'connection', 'action', 'relation', 'notes', 'indenture', 'u', 'securities', 'laws', 'may', 'not', 'possible', 'investors', 'effect', 'service', 'process', 'us', 'persons', 'mentioned', 'within', 'united', 'states', 'action', 'including', 'actions', 'predicated', 'upon', 'civil', 'liability', 'provisions', 'u', 'federal', 'securities', 'laws', 'judgment', 'obtained', 'u', 'court', 'issuer', 'guarantor', 'security', 'provider', 'investors', 'need', 'enforce', 'judgment', 'jurisdictions', 'relevant', 'company', 'assets', 'even', 'though', 'enforceability', 'u', 'court', 'judgments', 'outside', 'united', 'states', 'described', 'countries', 'issuer', 'guarantors', 'located', 'consult', 'advisors', 'pertinent', 'jurisdictions', 'needed', 'enforce', 'judgment', 'countries', 'elsewhere', 'outside', 'united', 'states', 'england', 'wales', 'united', 'states', 'england', 'currently', 'not', 'treaty', 'providing', 'reciprocal', 'recognition', 'enforcement', 'judgments', 'opposed', 'arbitration', 'awards', 'civil', 'commercial', 'matters', 'consequently', 'final', 'judgment', 'payment', 'rendered', 'federal', 'state', 'court', 'united', 'states', 'based', 'civil', 'liability', 'would', 'not', 'automatically', 'recognized', 'enforceable', 'england', 'wales', 'order', 'enforce', 'u', 'judgment', 'england', 'wales', 'proceedings', 'must', 'first', 'initiated', 'court', 'competent', 'jurisdiction', 'england', 'wales', 'action', 'english', 'court', 'would', 'not', 'generally', 'reinvestigate', 'merits', 'original', 'matter', 'decided', 'u', 'court', 'would', 'usually', 'possible', 'obtain', 'summary', 'judgment', 'claim', 'u', 'court', 'competent', 'jurisdiction', 'original', 'proceedings', 'according', 'english', 'rules', 'private', 'international', 'law', 'u', 'judgment', 'final', 'conclusive', 'merits', 'sense', 'final', 'unalterable', 'court', 'pronounced', 'definite', 'sum', 'money', 'u', 'judgment', 'not', 'sum', 'payable', 'respect', 'taxes', 'charges', 'like', 'nature', 'respect', 'penalty', 'fine', 'otherwise', 'based', 'u', 'law', 'english', 'court', 'considers', 'relate', 'penal', 'revenue', 'public', 'law', 'u', 'judgment', 'not', 'contravene', 'english', 'public', 'policy', 'u', 'judgment', 'not', 'arrived', 'doubling', 'trebling', 'otherwise', 'multiplying', 'sum', 'assessed', 'compensation', 'loss', 'damages', 'sustained', 'not', 'otherwise', 'specified', 'section', '5', 'protection', 'trading', 'interests', 'act', '1980', 'claim', 'contribution', 'respect', 'either', 'damages', 'based', 'measures', 'designated', 'secretary', 'state', 'section', '1', 'act', 'u', 'judgment', 'not', 'obtained', 'fraud', 'breach', 'english', 'principles', 'natural', 'justice', 'principles', 'european', 'convention', 'human', 'rights', '266', 'u', 'judgment', 'not', 'inconsistent', 'earlier', 'judgment', 'proceedings', 'parties', 'privies', 'english', 'enforcement', 'proceedings', 'commenced', 'within', 'relevant', 'limitation', 'period', 'u', 'judgment', 'not', 'obtained', 'contrary', 'agreement', 'settlement', 'disputes', 'dispute', 'question', 'settled', 'otherwise', 'proceedings', 'united', 'states', 'court', 'whose', 'jurisdiction', 'judgment', 'debtor', 'not', 'submit', 'doubt', 'enforceability', 'england', 'wales', 'u', 'judgments', 'respect', 'civil', 'judgments', 'predicated', 'purely', 'u', 'securities', 'laws', 'subject', 'foregoing', 'may', 'investors', 'able', 'enforce', 'england', 'judgments', 'obtained', 'u', 'federal', 'state', 'courts', 'notwithstanding', 'preceding', 'can', 'not', 'assure', 'judgments', 'recognized', 'enforceable', 'england', 'jersey', 'issuer', 'capital', 'incorporated', 'jersey', 'united', 'states', 'jersey', 'currently', 'not', 'treaty', 'providing', 'reciprocal', 'recognition', 'enforcement', 'judgments', 'opposed', 'arbitration', 'awards', 'civil', 'commercial', 'matters', 'consequently', 'final', 'judgment', 'payment', 'rendered', 'federal', 'state', 'court', 'united', 'states', 'based', 'civil', 'liability', 'whether', 'not', 'predicated', 'solely', 'upon', 'u', 'federal', 'securities', 'laws', 'would', 'not', 'automatically', 'recognized', 'enforceable', 'jersey', 'order', 'enforce', 'u', 'judgment', 'jersey', 'proceedings', 'must', 'first', 'initiated', 'court', 'competent', 'jurisdiction', 'jersey', 'action', 'jersey', 'court', 'would', 'not', 'generally', 'reinvestigate', 'merits', 'original', 'matter', 'decided', 'u', 'court', 'subject', 'said', 'would', 'usually', 'possible', 'obtain', 'summary', 'judgment', 'claim', 'assuming', 'no', 'good', 'defense', 'recognition', 'enforcement', 'u', 'judgment', 'jersey', 'court', 'action', 'conditional', 'upon', 'among', 'things', 'following', 'u', 'court', 'jurisdiction', 'original', 'proceedings', 'according', 'jersey', 'conflicts', 'laws', 'principles', 'u', 'judgment', 'final', 'conclusive', 'merits', 'sense', 'final', 'unalterable', 'court', 'pronounced', 'debt', 'definite', 'sum', 'money', 'although', 'circumstances', 'non', 'money', 'judgments', 'may', 'also', 'recognized', 'recognition', 'enforcement', 'u', 'judgment', 'not', 'contravening', 'jersey', 'public', 'policy', 'u', 'judgment', 'not', 'sum', 'payable', 'respect', 'taxes', 'charges', 'like', 'nature', 'respect', 'penalty', 'fine', 'u', 'judgment', 'not', 'arrived', 'doubling', 'trebling', 'otherwise', 'multiplying', 'sum', 'assessed', 'compensation', 'loss', 'damages', 'sustained', 'not', 'otherwise', 'breach', 'section', '5', 'united', 'kingdom', 'protection', 'trading', 'interests', 'act', '1980', 'extended', 'jersey', 'protection', 'trading', 'interests', 'act', '1980', 'jersey', 'order', '1983', 'u', 'judgment', 'not', 'obtained', 'fraud', 'breach', 'jersey', 'principles', 'natural', 'justice', 'rights', 'european', 'convention', 'human', 'rights', 'not', 'prior', 'inconsistent', 'decision', 'jersey', 'court', 'respect', 'matter', 'subject', 'foregoing', 'investors', 'may', 'able', 'enforce', 'jersey', 'judgments', 'civil', 'commercial', 'matters', 'obtained', 'u', 'federal', 'state', 'courts', 'however', 'no', 'assurance', 'judgments', 'recognized', 'enforceable', 'jersey', 'addition', 'questionable', 'whether', 'jersey', 'court', 'would', 'accept', 'jurisdiction', 'impose', 'civil', 'liability', 'original', 'action', 'commenced', 'jersey', 'instead', 'united', 'states', 'predicated', 'solely', 'upon', 'u', 'federal', 'securities', 'laws', '267', 'listing', 'general', 'information', 'listing', 'application', 'made', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'listing', 'permission', 'deal', 'notes', 'official', 'list', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'notices', 'holders', 'notes', 'including', 'notice', 'additional', 'redemption', 'change', 'control', 'change', 'rate', 'interest', 'payable', 'notes', 'published', 'extent', 'manner', 'permitted', 'rules', 'posted', 'official', 'website', 'channel', 'islands', 'securities', 'exchange', 'www', 'thecise', 'com', 'neither', 'admission', 'notes', 'official', 'list', 'exchange', 'nor', 'approval', 'offering', 'memorandum', 'pursuant', 'listing', 'requirements', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'shall', 'constitute', 'warranty', 'representation', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'competence', 'service', 'providers', 'party', 'connected', 'issuer', 'adequacy', 'accuracy', 'information', 'contained', 'offering', 'memorandum', 'suitability', 'issuer', 'investment', 'purpose', 'notes', 'intended', 'offered', 'primary', 'market', 'held', 'investors', 'particularly', 'knowledgeable', 'investment', 'matters', 'copy', 'offering', 'memorandum', 'available', 'inspection', 'offices', 'listing', 'sponsor', 'normal', 'business', 'hours', 'period', '14', 'days', 'following', 'listing', 'notes', 'official', 'list', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'application', 'may', 'made', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'notes', 'removed', 'listing', 'official', 'list', 'channel', 'islands', 'securities', 'exchange', 'authority', 'limited', 'including', 'necessary', 'avoid', 'new', 'withholding', 'taxes', 'connection', 'listing', 'clearing', 'information', 'dollar', 'notes', 'sold', 'pursuant', 'regulation', 'u', 'securities', 'act', 'dollar', 'notes', 'sold', 'pursuant', 'rule', '144a', 'u', 'securities', 'act', 'accepted', 'clearance', 'facilities', 'dtc', 'cusips', 'respectively', 'international', 'securities', 'identification', 'number', 'dollar', 'notes', 'sold', 'pursuant', 'regulation', 'u', 'securities', 'act', 'international', 'securities', 'identification', 'number', 'dollar', 'notes', 'sold', 'pursuant', 'rule', '144a', 'u', 'securities', 'act', 'sterling', 'notes', 'sold', 'pursuant', 'regulation', 'u', 'securities', 'act', 'sterling', 'notes', 'sold', 'pursuant', 'rule', '144a', 'u', 'securities', 'act', 'accepted', 'clearance', 'facilities', 'euroclear', 'clearstream', 'common', 'codes', 'respectively', 'international', 'securities', 'identification', 'number', 'sterling', 'notes', 'sold', 'pursuant', 'regulation', 'u', 'securities', 'act', 'international', 'securities', 'identification', 'number', 'sterling', 'notes', 'sold', 'pursuant', 'rule', '144a', 'u', 'securities', 'act', 'legal', 'information', 'aston', 'martin', 'investments', 'limited', 'wholly', 'owned', 'subsidiary', 'holdings', 'incorporated', 'private', 'limited', 'company', 'laws', 'england', 'wales', 'registered', 'office', 'banbury', 'road', 'gaydon', 'warwick', 'cv35', '0db', 'united', 'kingdom', 'telephone', 'number', 'address', '44', '0', '1926', '644', '644', 'aston', 'martin', 'capital', 'holdings', 'limited', 'issuer', 'wholly', 'owned', 'subsidiary', 'aston', 'martin', 'investments', 'limited', 'incorporated', 'public', 'limited', 'company', 'laws', 'jersey', 'registered', 'office', 'po', 'box', '218', '43', '45', 'la', 'motte', 'street', 'st', 'helier', 'je4', '8sd', 'jersey', 'telephone', 'number', 'address', '44', '0', '1534', '702', '800', 'aston', 'martin', 'capital', 'limited', 'wholly', 'owned', 'subsidiary', 'holdings', 'immediately', 'following', 'completion', 'transactions', 'wholly', 'owned', 'subsidiary', 'issuer', 'incorporated', 'public', 'limited', 'company', 'laws', 'jersey', 'registered', 'office', 'po', 'box', '218', '43', '45', 'la', 'motte', 'street', 'st', 'helier', 'je4', '8sd', 'jersey', 'telephone', 'number', 'address', '44', '0', '1534', '702', '800', '268', 'aston', 'martin', 'lagonda', 'group', 'limited', 'wholly', 'owned', 'subsidiary', 'aston', 'martin', 'investments', 'limited', 'incorporated', 'private', 'limited', 'company', 'laws', 'england', 'wales', 'registered', 'office', 'banbury', 'road', 'gaydon', 'warwick', 'cv35', '0db', 'united', 'kingdom', 'telephone', 'number', 'address', '44', '0', '1926', '644', '644', 'aston', 'martin', 'lagonda', 'limited', 'wholly', 'owned', 'indirect', 'subsidiary', 'aston', 'martin', 'investments', 'limited', 'incorporated', 'private', 'limited', 'company', 'laws', 'england', 'wales', 'registered', 'office', 'banbury', 'road', 'gaydon', 'warwick', 'cv35', '0db', 'united', 'kingdom', 'telephone', 'number', 'address', '44', '0', '1926', '644', '644', 'aston', 'martin', 'lagonda', 'north', 'america', 'inc', 'wholly', 'indirect', 'owned', 'subsidiary', 'aston', 'martin', 'investments', 'limited', 'incorporated', 'connecticut', 'corporation', 'registered', 'office', '9920', 'irvine', 'center', 'drive', 'irvine', 'ca', '92618', 'usa', 'telephone', 'number', 'address', '00', '1', '949', '379', '3131', 'creation', 'issuance', 'notes', 'authorized', 'resolutions', 'issuer', 'dated', 'march', '22', '2017', 'except', 'disclosed', 'offering', 'memorandum', 'no', 'material', 'adverse', 'change', 'financial', 'position', 'since', 'december', '31', '2016', 'date', 'holdings', 'consolidated', 'audited', 'financial', 'information', 'year', 'ended', 'december', '31', '2016', 'recent', 'financial', 'statements', 'contained', 'offering', 'memorandum', 'not', 'involved', 'litigation', 'administrative', 'proceeding', 'arbitration', 'relating', 'claims', 'amounts', 'material', 'context', 'issue', 'notes', 'far', 'aware', 'no', 'litigation', 'administrative', 'proceeding', 'arbitration', 'pending', 'threatened', 'company', 'issuer', 'accept', 'responsibility', 'information', 'contained', 'offering', 'memorandum', '269', 'annex', 'additional', 'ebitda', 'information', 'two', 'month', 'period', 'ended', 'february', '29', '2016', 'february', '28', '2017', 'net', 'income', 'loss', 'income', 'tax', 'benefit', 'expense', 'financial', 'income', 'expense', 'depreciation', 'amortization', '17', '5', '1', '8', '10', '3', '12', '5', '8', '9', '0', '9', '14', '1', '13', '2', 'ebitda', '3', '5', '17', '5', 'three', 'month', 'period', 'ended', 'december', '31', '2015', 'net', 'income', 'loss', 'income', 'tax', 'benefit', 'expense', 'financial', 'income', 'expense', 'depreciation', 'amortization', '34', '2', '12', '8', '20', '5', '55', '2', 'ebitda', '1', '28', '7', '1', '2016', '35', '8', '2', '6', '32', '6', '74', '8', '69', '0', 'ebitda', 'three', 'month', 'period', 'ended', 'december', '31', '2015', 'includes', '7', '6', 'million', 'exceptional', 'costs', 'associated', 'business', 'rebalancing', 'program', 'see', 'management', 'discussion', 'analysis', 'financial', 'condition', 'results', 'operations', 'key', 'factors', 'affecting', 'comparability', 'exceptional', 'expenses', 'business', 'rebalancing', 'program', 'three', 'month', 'period', 'ended', 'may', '31', '2016', 'net', 'income', 'loss', 'income', 'tax', 'benefit', 'expense', 'financial', 'income', 'expense', 'depreciation', 'amortization', '25', '8', '2', '9', '19', '4', '19', '0', 'ebitda', '9', '7', '270', 'index', 'financial', 'statements', 'page', 'consolidated', 'audited', 'financial', 'statements', 'year', 'ended', 'december', '31', '2016', 'independent', 'auditors', 'report', 'consolidated', 'statement', 'comprehensive', 'income', 'consolidated', 'statement', 'changes', 'equity', 'statement', 'financial', 'position', 'consolidated', 'statement', 'cash', 'flows', 'notes', 'financial', 'statements', 'f', '4', 'f', '6', 'f', '7', 'f', '10', 'f', '11', 'f', '12', 'consolidated', 'audited', 'financial', 'statements', 'year', 'ended', 'december', '31', '2015', 'independent', 'auditors', 'report', 'consolidated', 'statement', 'comprehensive', 'income', 'consolidated', 'statement', 'changes', 'equity', 'statement', 'financial', 'position', 'consolidated', 'statement', 'cash', 'flows', 'notes', 'financial', 'statements', 'f', '48', 'f', '50', 'f', '52', 'f', '53', 'f', '56', 'f', '57', 'f', '58', 'consolidated', 'audited', 'financial', 'statements', 'year', 'ended', 'december', '31', '2014', 'independent', 'auditors', 'report', 'consolidated', 'statement', 'comprehensive', 'income', 'consolidated', 'statement', 'changes', 'equity', 'statement', 'financial', 'position', 'consolidated', 'statement', 'cash', 'flows', 'notes', 'financial', 'statements', 'f', '97', 'f', '99', 'f', '101', 'f', '102', 'f', '105', 'f', '106', 'f', '107', 'f', '1', 'aston', 'martin', 'holdings', 'uk', 'limited', 'consolidated', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'registered', 'number', '06067176', 'f', '2', 'directors', 'advisors', 'directors', 'primary', 'bankers', 'najeeb', 'ai', 'humaidhi', 'adnan', 'ai', 'musallam', 'rezam', 'ai', 'roumi', 'roberto', 'maestroni', 'umberto', 'magnetti', 'carlo', 'pasquale', 'campanini', 'bonomi', 'dante', 'razzano', 'mahmoud', 'samy', 'mohamed', 'ali', 'ei', 'sayed', 'amr', 'ali', 'abdallah', 'abou', 'ei', 'seoud', 'dr', 'andrew', 'palmer', 'chief', 'executive', 'officer', 'deutsche', 'bank', 'ag', 'winchester', 'house', '1', 'great', 'winchester', 'street', 'london', 'ec2n', '2db', 'hsbc', 'bank', 'plc', '8', 'canada', 'square', 'london', 'e14', '5hq', 'secretary', 'registered', 'office', 'michael', 'marecki', 'aston', 'martin', 'holdings', 'uk', 'limited', 'banbury', 'road', 'gaydon', 'warwick', 'england', 'cv35', '0db', 'lloyds', 'bank', 'plc', '10', 'gresham', 'street', 'london', 'ec2v', '7ae', 'standard', 'chartered', 'bank', 'plc', '1', 'basinghall', 'avenue', 'london', 'ec2v', '5dd', 'registered', 'auditor', 'kpmg', 'llp', 'one', 'snowhill', 'snow', 'hill', 'queensway', 'birmingham', 'b4', '6gh', 'comerica', 'bank', '1717', 'main', 'street', 'dallas', 'texas', '75201', 'united', 'states', 'america', 'f', '3', 'independent', 'auditor', 'report', 'members', 'aston', 'martin', 'holdings', 'uk', 'limited', 'audited', 'financial', 'statements', 'aston', 'martin', 'holdings', 'uk', 'limited', 'year', 'ended', '31', 'december', '2016', 'set', 'pages', '9', '39', 'financial', 'reporting', 'framework', 'applied', 'preparation', 'applicable', 'law', 'international', 'financial', 'reporting', 'standards', 'ifrss', 'adopted', 'eu', 'regards', 'parent', 'company', 'financial', 'statements', 'applied', 'accordance', 'provisions', 'companies', 'act', '2006', 'report', 'made', 'solely', 'company', 'members', 'body', 'accordance', 'chapter', '3', 'part', '16', 'companies', 'act', '2006', 'audit', 'work', 'undertaken', 'might', 'state', 'company', 'members', 'matters', 'required', 'state', 'auditor', 'report', 'no', 'purpose', 'fullest', 'extent', 'permitted', 'law', 'not', 'accept', 'assume', 'responsibility', 'anyone', 'company', 'company', 'members', 'body', 'audit', 'work', 'report', 'opinions', 'formed', 'respective', 'responsibilities', 'directors', 'auditor', 'explained', 'fully', 'directors', 'responsibilities', 'statement', 'set', 'page', '7', 'directors', 'responsible', 'preparation', 'financial', 'statements', 'satisfied', 'give', 'true', 'fair', 'view', 'responsibility', 'audit', 'express', 'opinion', 'financial', 'statements', 'accordance', 'applicable', 'law', 'international', 'standards', 'auditing', 'uk', 'ireland', 'standards', 'require', 'us', 'comply', 'auditing', 'practices', 'board', 'ethical', 'standards', 'auditors', 'scope', 'audit', 'financial', 'statements', 'description', 'scope', 'audit', 'financial', 'statements', 'provided', 'financial', 'reporting', 'council', 'website', 'www', 'frc', 'org', 'uk', 'auditscopeukprivate', 'opinion', 'financial', 'statements', 'opinion', 'financial', 'statements', 'give', 'true', 'fair', 'view', 'state', 'group', 'parent', 'company', 'affairs', '31', 'december', '2016', 'group', 'loss', 'year', 'ended', 'group', 'financial', 'statements', 'properly', 'prepared', 'accordance', 'ifrss', 'adopted', 'eu', 'parent', 'company', 'financial', 'statements', 'properly', 'prepared', 'accordance', 'ifrss', 'adopted', 'eu', 'applied', 'accordance', 'provisions', 'companies', 'act', '2006', 'financial', 'statements', 'prepared', 'accordance', 'requirements', 'companies', 'act', '2006', 'regards', 'group', 'financial', 'statements', 'article', '4', 'las', 'regulation', 'opinion', 'matters', 'prescribed', 'companies', 'act', '2006', 'opinion', 'information', 'given', 'strategic', 'report', 'directors', 'report', 'financial', 'year', 'consistent', 'financial', 'statements', 'based', 'solely', 'work', 'required', 'undertaken', 'course', 'audit', 'financial', 'statements', 'reading', 'strategic', 'report', 'directors', 'report', 'not', 'identified', 'material', 'misstatements', 'reports', 'opinion', 'reports', 'prepared', 'accordance', 'companies', 'act', '2006', 'matters', 'required', 'report', 'exception', 'nothing', 'report', 'respect', 'following', 'matters', 'companies', 'act', '2006', 'requires', 'us', 'report', 'opinion', 'adequate', 'accounting', 'records', 'not', 'kept', 'parent', 'company', 'returns', 'adequate', 'audit', 'not', 'received', 'branches', 'not', 'visited', 'us', 'f', '4', 'parent', 'company', 'financial', 'statements', 'not', 'agreement', 'accounting', 'records', 'returns', 'certain', 'disclosures', 'directors', 'remuneration', 'specified', 'law', 'not', 'made', 'not', 'received', 'information', 'explanations', 'require', 'audit', 'simon', 'purkess', 'senior', 'statutory', 'auditor', 'behalf', 'kpmg', 'llp', 'statutory', 'auditor', 'chartered', 'accountants', 'one', 'snowhill', 'snow', 'hill', 'queensway', 'birmingham', 'b4', '6gh', 'date', 'f', '5', 'consolidated', 'statement', 'comprehensive', 'income', 'year', 'ended', '31', 'december', '2016', 'notes', 'revenue', 'cost', 'sales', '3', 'gross', 'profit', 'selling', 'distribution', 'expenses', 'administrative', 'expenses', 'operating', 'loss', 'analysed', 'impairment', 'intangible', 'tangible', 'assets', 'restructuring', 'costs', 'including', 'related', 'consultancy', 'costs', 'payment', 'former', 'director', 'relating', 'settlement', 'shares', 'underlying', 'operating', 'profit', 'loss', 'operating', 'loss', '2016', '000', '2015', '000', '593', '450', '510', '172', '371', '903', '345', '294', '221', '547', '164', '878', '41', '858', '32', '084', '212', '008', '191', '076', '4', '32', '319', '58', '282', '5', '5', '48', '738', '30', '169', '7', '547', '5', '16', '419', '32', '319', '2', '636', '17', '930', '58', '282', 'finance', 'income', 'finance', 'expense', '7', '2', '584', '8', '133', '042', '2', '090', '71', '764', 'net', 'financing', 'expense', '130', '458', '69', '674', 'loss', 'tax', 'income', 'tax', 'credit', '9', 'loss', 'year', 'comprehensive', 'income', 'items', 'never', 'reclassified', 'profit', 'loss', 'remeasurement', 'defined', 'benefit', 'liability', 'related', 'income', 'tax', '162', '777', '127', '956', '15', '204', '20', '999', '147', '573', '106', '957', '21', '9', '65', '975', '11', '216', '7', '101', '1', '278', '54', '759', '5', '823', 'items', 'may', 'reclassified', 'profit', 'loss', 'foreign', 'exchange', 'translation', 'differences', '1', '493', '1', '015', 'comprehensive', 'income', 'period', 'net', 'income', 'tax', '53', '266', '6', '838', 'total', 'comprehensive', 'income', 'period', '200', '839', '100', '119', 'loss', 'attributable', 'owners', 'group', 'non', 'controlling', 'interests', '147', '902', '107', '108', '329', '151', '147', '573', '106', '957', 'total', 'comprehensive', 'expense', 'income', 'period', 'attributable', 'owners', 'group', 'non', 'controlling', 'interests', '201', '168', '100', '270', '329', '151', '200', '839', '100', '119', 'underlying', 'operating', 'profit', 'loss', 'represents', 'operating', 'loss', 'excluding', 'non', 'recurring', 'items', 'non', 'recurring', 'item', 'item', 'group', 'consolidated', 'statement', 'comprehensive', 'income', 'not', 'expected', 'occur', 'regularly', 'notes', 'pages', '14', '39', 'form', 'integral', 'part', 'financial', 'statements', 'f', '6', 'consolidated', 'statement', 'changes', 'equity', 'group', 'share', 'capital', 'premium', 'reserve', 'share', 'share', 'non', 'controlling', 'translation', 'retained', 'capital', 'warrants', 'interest', 'reserve', 'earnings', '000', '000', '000', '000', '000', 'total', 'equity', '000', '1', 'january', '2016', '3', '377', '861', '98', '734', 'total', 'comprehensive', 'income', 'period', 'profit', 'loss', '329', '1', '493', 'total', 'comprehensive', 'income', '1', '493', 'total', 'comprehensive', 'income', 'period', '329', 'transactions', 'owners', 'recorded', 'directly', 'equity', 'capital', 'increase', '9', '419', '9', '419', 'total', 'transactions', 'owners', '9', '419', '9', '419', '31', 'december', '2016', '3', '387', '280', '99', '063', 'comprehensive', 'income', 'foreign', 'currency', 'translation', 'differences', 'remeasurement', 'defined', 'benefit', 'liability', 'note', '21', 'income', 'tax', 'comprehensive', 'income', 'note', '9', '843', '213', '361', '264', '080', '147', '902', '147', '573', '1', '493', '65', '975', '65', '975', '11', '216', '11', '216', '54', '759', '53', '266', '1', '493', '202', '661', '200', '839', '2', '336', '416', '022', '72', '660', 'capital', 'increase', 'year', 'ended', '31', 'december', '2016', 'represents', 'fair', 'value', 'share', 'warrants', 'granted', 'connection', 'issue', 'second', 'tranche', 'preference', 'shares', 'amounting', '9', '419', '000', '100', '000', '000', 'preference', 'shares', 'issued', 'april', '2015', 'april', '2016', 'included', 'capital', 'reserve', 'non', 'controlling', 'interests', '1', '100', '000', 'additional', 'capital', 'reserve', '4', '999', '000', 'non', 'controlling', 'interest', 'relating', '50', 'interest', 'share', 'capital', 'amws', 'limited', 'parent', 'company', 'aston', 'martin', 'works', 'limited', 'f', '7', 'group', 'share', 'capital', 'reserve', 'premium', 'share', 'share', 'non', 'controlling', 'translation', 'retained', 'capital', 'warrants', 'interest', 'reserve', 'earnings', '000', '000', '000', '000', '000', 'total', 'equity', '000', '1', 'january', '2015', '3', '366', '463', '98', '583', 'total', 'comprehensive', 'income', 'period', 'profit', 'loss', '151', '1', '015', '1', '015', '7', '101', '7', '101', '1', '278', '1', '278', 'total', 'comprehensive', 'income', '1', '015', '5', '823', '6', '838', 'total', 'comprehensive', 'income', 'period', '151', 'transactions', 'owners', 'recorded', 'directly', 'equity', 'capital', 'increase', '11', '398', '11', '398', 'total', 'transactions', 'owners', '11', '398', '11', '398', '31', 'december', '2015', '3', '377', '861', '98', '734', 'comprehensive', 'income', 'foreign', 'currency', 'translation', 'differences', 'remeasurement', 'defined', 'benefit', 'liability', 'note', '21', 'income', 'tax', 'comprehensive', 'income', 'note', '9', '172', '112', '076', '352', '801', '107', '108', '106', '957', '1', '015', '101', '285', '100', '119', '843', '213', '361', '264', '080', 'included', 'capital', 'reserve', 'non', 'controlling', 'interests', '1', '100', '000', 'additional', 'capital', 'reserve', '4', '670', '000', 'non', 'controlling', 'interest', 'relating', '50', 'interest', 'share', 'capital', 'amws', 'limited', 'parent', 'company', 'aston', 'martin', 'works', 'limited', 'capital', 'increase', 'year', 'ended', '31', 'december', '2015', 'represents', 'share', 'premium', 'paid', 'previously', 'partly', 'paid', 'shares', '2', '355', '000', 'fair', 'value', 'share', 'warrants', 'granted', 'connection', 'issue', 'preference', 'shares', 'amounting', '9', '043', '000', 'f', '8', 'share', 'capital', '000', 'share', 'premium', 'share', 'warrants', '000', 'capital', 'reserve', '000', '1', 'january', '2016', '3', '377', '861', '92', '964', 'total', 'comprehensive', 'income', 'period', 'loss', '73', '593', '73', '593', 'total', 'comprehensive', 'expense', 'period', '73', '593', '73', '593', 'transactions', 'owners', 'recorded', 'directly', 'equity', 'capital', 'increase', '9', '419', '9', '419', 'total', 'transactions', 'owners', '9', '419', '9', '419', '31', 'december', '2016', '3', '387', '280', '92', '964', 'company', 'translation', 'reserve', '000', 'retained', 'earnings', '000', 'total', 'equity', '000', '52', '853', '417', '975', '126', '446', '353', '801', 'capital', 'increase', 'year', 'ended', '31', 'december', '2016', 'represents', 'fair', 'value', 'share', 'warrants', 'granted', 'connection', 'issue', 'second', 'tranche', 'preference', 'shares', 'amounting', '9', '419', '000', '100', '000', '000', 'preference', 'shares', 'issued', 'april', '2015', 'april', '2016', 'company', 'share', 'capital', '000', 'share', 'premium', 'share', 'warrants', '000', 'capital', 'reserve', '000', 'translation', 'reserve', '000', 'retained', 'earnings', '000', 'total', 'equity', '000', '1', 'january', '2015', 'total', 'comprehensive', 'expense', 'period', 'loss', '3', '366', '463', '92', '964', '17', '716', '441', '714', '35', '137', '35', '137', 'total', 'comprehensive', 'expense', 'period', '35', '137', '35', '137', 'transactions', 'owners', 'recorded', 'directly', 'equity', 'capital', 'increase', '11', '398', '11', '398', 'total', 'transactions', 'owners', '11', '398', '11', '398', '31', 'december', '2015', '3', '377', '861', '92', '964', '52', '853', '417', '975', 'capital', 'increase', 'year', 'ended', '31', 'december', '2015', 'represents', 'share', 'premium', 'paid', 'previously', 'partly', 'paid', 'shares', '2', '355', '000', 'fair', 'value', 'share', 'warrants', 'granted', 'connection', 'issue', 'preference', 'shares', 'amounting', '9', '043', '000', 'f', '9', 'statements', 'financial', 'position', '31', 'december', '2016', 'notes', 'non', 'current', 'assets', 'intangible', 'assets', 'property', 'plant', 'equipment', 'investments', 'subsidiary', 'undertakings', 'receivables', 'financial', 'assets', 'deferred', 'tax', 'asset', 'current', 'assets', 'inventories', 'trade', 'receivables', 'financial', 'assets', 'cash', 'cash', 'equivalents', '10', '12', '13', '15', '18', '9', '14', '15', '18', '16', 'total', 'assets', 'current', 'liabilities', 'borrowings', 'trade', 'payables', 'income', 'tax', 'payable', 'financial', 'liabilities', 'provisions', 'non', 'current', 'liabilities', 'borrowings', 'financial', 'liabilities', 'employee', 'benefits', 'provisions', 'deferred', 'tax', 'liabilities', '18', '17', '18', '20', '18', '18', '21', '20', '9', 'group', '2016', '000', 'group', '2015', '000', 'company', '2016', '000', 'company', '2015', '000', '706', '947', '196', '321', '2', '309', '88', '32', '124', '677', '297', '166', '314', '2', '169', '63', '48', '303', '667', '982', '667', '982', '937', '789', '894', '146', '667', '982', '667', '982', '117', '245', '112', '757', '272', '101', '718', '80', '363', '69', '113', '52', '65', '562', '231', '438', '1', '161', '233', '1', '331', '992', '215', '090', '231', '439', '161', '234', '1', '269', '781', '1', '109', '236', '899', '421', '829', '216', '5', '153', '340', '893', '680', '18', '646', '7', '631', '16', '597', '180', '293', '894', '8', '200', '6', '361', '151', '234', '179', '180', '373', '003', '212', '345', '151', '234', '179', '180', '696', '065', '9', '611', '69', '769', '6', '070', '42', '603', '532', '103', '1', '584', '4', '947', '8', '218', '85', '959', '394', '386', '232', '061', '824', '118', '632', '811', '394', '386', '232', '061', 'total', 'liabilities', '1', '197', '121', '845', '156', '545', '620', '411', '241', 'net', 'assets', '72', '660', '264', '080', '353', '801', '417', '975', '3', '368', '818', '18', '462', '94', '064', '2', '336', '416', '022', '3', '368', '818', '9', '043', '94', '064', '843', '213', '361', '3', '368', '818', '18', '462', '92', '964', '126', '446', '3', '368', '818', '9', '043', '92', '964', '52', '853', '67', '661', '4', '999', '259', '410', '4', '670', '353', '801', '417', '975', '72', '660', '264', '080', '353', '801', '417', '975', 'capital', 'reserves', 'share', 'capital', 'share', 'premium', 'share', 'warrants', 'capital', 'reserve', 'translation', 'reserve', 'retained', 'earnings', 'equity', 'attributable', 'owners', 'group', 'non', 'controlling', 'interests', 'total', 'shareholders', 'equity', '22', '23', '23', '23', '23', '13', 'financial', 'statements', 'pages', '9', '39', 'approved', 'board', 'directors', '16', 'february', '2017', 'signed', 'behalf', 'dr', 'andrew', 'palmer', 'director', 'company', 'number', '06067176', 'notes', 'pages', '14', '39', 'form', 'integral', 'part', 'financial', 'statements', 'f', '10', 'consolidated', 'statement', 'cash', 'flows', 'year', 'ended', '31', 'december', '2016', 'notes', 'operating', 'activities', 'loss', 'year', 'adjustments', 'reconcile', 'loss', 'year', 'net', 'cash', 'inflow', 'operating', 'activities', 'tax', 'continuing', 'operations', 'net', 'finance', 'costs', 'non', 'cash', 'movements', 'losses', 'sale', 'property', 'plant', 'equipment', 'depreciation', 'impairment', 'property', 'plant', 'equipment', 'amortisation', 'impairment', 'intangible', 'assets', 'difference', 'pension', 'contributions', 'paid', 'amounts', 'recognised', 'income', 'statement', 'increase', 'decrease', 'inventories', 'increase', 'trade', 'receivables', 'increase', 'trade', 'payables', 'movement', 'provisions', 'group', '2016', '000', 'group', '2015', '000', '147', '573', '106', '957', '9', '15', '204', '122', '306', '1', '035', '22', '38', '314', '94', '858', '20', '999', '66', '838', '1', '129', '54', '46', '320', '73', '157', '1', '153', '36', '882', '39', '126', '150', '333', '1', '289', '356', '18', '064', '19', '816', '21', '574', '2', '876', 'cash', 'generated', 'operations', 'income', 'taxes', 'paid', '165', '641', '1', '082', '76', '132', '905', 'net', 'cash', 'inflow', 'operating', 'activities', '164', '559', '75', '227', '4', '4', '12', '4', '10', 'cash', 'flows', 'investing', 'activities', 'interest', 'received', 'proceeds', 'disposal', 'property', 'plant', 'equipment', 'payments', 'acquire', 'property', 'plant', 'equipment', 'payments', 'acquire', 'intangible', 'assets', '2', '224', '2', '090', '395', '94', '12', '68', '280', '38', '517', '10', '124', '508', '124', '649', 'net', 'cash', 'used', 'investing', 'activities', '190', '169', '160', '982', 'cash', 'flows', 'financing', 'activities', 'interest', 'paid', 'proceeds', 'equity', 'share', 'issue', 'movement', 'borrowings', 'new', 'borrowings', 'transaction', 'fees', 'new', 'borrowings', '7', '23', '18', '24', '18', '24', '24', 'net', 'cash', 'inflow', 'financing', 'activities', '32', '612', '13', '787', '100', '000', '32', '252', '2', '355', '3', '751', '100', '000', '3', '536', '53', '601', '62', '816', 'net', 'increase', 'decrease', 'cash', 'cash', 'equivalents', 'cash', 'cash', 'equivalents', 'beginning', 'year', 'effect', 'exchange', 'rates', 'cash', 'cash', 'equivalents', '16', '24', '27', '991', '65', '562', '8', '165', '22', '939', '89', '250', '749', 'cash', 'cash', 'equivalents', 'end', 'year', '16', '24', '101', '718', '65', '562', 'notes', 'pages', '14', '39', 'form', 'integral', 'part', 'financial', 'statements', 'f', '11', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', '1', 'basis', 'accounting', 'aston', 'martin', 'holdings', 'uk', 'limited', 'company', 'company', 'incorporated', 'england', 'wales', 'domiciled', 'uk', 'group', 'financial', 'statements', 'consolidate', 'company', 'subsidiaries', 'together', 'referred', 'group', 'parent', 'company', 'financial', 'statements', 'present', 'information', 'company', 'separate', 'entity', 'not', 'group', 'parent', 'company', 'financial', 'statements', 'group', 'financial', 'statements', 'prepared', 'approved', 'directors', 'accordance', 'international', 'financial', 'reporting', 'standards', 'adopted', 'eu', 'adopted', 'ifrss', 'publishing', 'parent', 'company', 'financial', 'statements', 'together', 'group', 'financial', 'statements', 'company', 'taking', 'advantage', 'exemption', 's408', 'companies', 'act', '2006', 'not', 'present', 'individual', 'income', 'statement', 'related', 'notes', 'form', 'part', 'approved', 'financial', 'statements', 'financial', 'statements', 'prepared', 'historical', 'cost', 'convention', 'except', 'certain', 'financial', 'instruments', 'carried', 'fair', 'value', 'group', 'financial', 'statements', 'presented', 'sterling', 'values', 'rounded', 'nearest', 'thousand', 'pounds', '000', 'except', 'otherwise', 'indicated', 'group', 'meets', 'day', 'day', 'working', 'capital', 'requirements', 'medium', 'term', 'funding', 'requirements', 'mixture', 'senior', 'secured', 'notes', 'senior', 'subordinated', 'pik', 'notes', 'preference', 'shares', 'revolving', 'credit', 'facility', 'inventory', 'financing', 'facilities', 'wholesale', 'vehicle', 'financing', 'facility', 'group', 'issued', '304', '000', '000', '9', '25', 'senior', 'secured', 'notes', 'repayable', '2018', 'access', '40', '000', '000', 'revolving', 'credit', 'facility', '2018', 'undrawn', '31', 'december', '2016', '31', 'december', '2015', 'senior', 'secured', 'notes', 'revolving', 'credit', 'facility', 'include', 'certain', 'covenant', 'tests', 'march', '2014', 'company', 'issued', 'senior', 'subordinated', 'pik', 'notes', 'value', '165', '000', '000', 'us', 'dollars', '99', '620', '000', 'due', 'repayment', 'july', '2018', '23', 'april', '2015', 'company', 'accepted', 'binding', 'subscriptions', '200', 'million', 'preference', 'shares', 'first', 'tranche', '100', 'million', 'received', '27', 'april', '2015', 'second', 'tranche', '100', 'million', 'drawn', 'april', '2016', 'subscriptions', 'also', 'included', 'warrants', 'pro', 'rata', 'allocation', 'p', 'shares', 'non', 'voting', 'ordinary', 'shares', 'corresponding', '4', 'current', 'fully', 'diluted', 'share', 'capital', 'company', 'directors', 'prepared', 'trading', 'cash', 'flow', 'forecasts', 'period', '2020', 'date', 'approval', 'financial', 'statements', 'forecasts', 'show', 'group', 'sufficient', 'financial', 'resources', 'meet', 'obligations', 'fall', 'due', 'meet', 'covenant', 'tests', 'period', 'least', '12', 'months', 'date', 'financial', 'statements', 'approved', 'forecasts', 'make', 'assumptions', 'respect', 'future', 'trading', 'conditions', 'particular', 'launch', 'future', 'models', 'nature', 'group', 'business', 'variation', 'timing', 'cash', 'flows', 'around', 'development', 'launch', 'new', 'models', 'availability', 'funds', 'provided', 'vehicle', 'wholesale', 'finance', 'facility', 'availability', 'credit', 'insurance', 'sales', 'volumes', 'vary', 'total', 'seasonally', 'forecasts', 'take', 'account', 'aforementioned', 'factors', 'extent', 'directors', 'consider', 'represent', 'best', 'estimate', 'future', 'events', 'based', 'information', 'available', 'time', 'approval', 'financial', 'statements', 'directors', 'also', 'prepared', 'downside', 'forecast', 'incorporates', 'certain', 'adverse', 'sensitivities', 'not', 'expected', 'still', 'represent', 'reasonably', 'possible', 'scenario', 'forecast', 'group', 'still', 'sufficient', 'financial', 'resources', 'meet', 'obligations', 'fall', 'due', 'meets', 'covenant', 'tests', 'period', 'least', '12', 'months', 'date', 'financial', 'statements', 'approved', 'f', '12', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', 'accordingly', 'considering', 'forecasts', 'appropriate', 'sensitivities', 'current', 'trading', 'available', 'facilities', 'directors', 'reasonable', 'expectation', 'group', 'adequate', 'resources', 'continue', 'operational', 'existence', 'foreseeable', 'future', 'therefore', 'directors', 'continue', 'adopt', 'going', 'concern', 'basis', 'preparing', 'financial', 'statements', '2', 'accounting', 'policies', 'basis', 'consolidation', 'subsidiaries', 'subsidiaries', 'consolidated', 'date', 'acquisition', 'date', 'group', 'obtains', 'control', 'continue', 'consolidated', 'date', 'control', 'ceases', 'control', 'comprises', 'power', 'govern', 'financial', 'operating', 'policies', 'investee', 'obtain', 'benefit', 'activities', 'achieved', 'direct', 'indirect', 'ownership', 'voting', 'rights', 'currently', 'exercisable', 'convertible', 'potential', 'voting', 'rights', 'way', 'contractual', 'agreement', 'financial', 'statements', 'subsidiaries', 'used', 'preparation', 'consolidated', 'financial', 'statements', 'prepared', 'reporting', 'year', 'parent', 'company', 'based', 'consistent', 'accounting', 'policies', 'intercompany', 'balances', 'transactions', 'including', 'unrealised', 'profits', 'arising', 'eliminated', 'foreign', 'currency', 'translation', 'transactions', 'foreign', 'currencies', 'initially', 'recorded', 'functional', 'currency', 'operation', 'applying', 'exchange', 'rate', 'ruling', 'date', 'transaction', 'monetary', 'assets', 'liabilities', 'denominated', 'foreign', 'currencies', 'retranslated', 'functional', 'currency', 'rate', 'exchange', 'ruling', 'reporting', 'date', 'differences', 'taken', 'profit', 'loss', 'except', 'differences', 'monetary', 'assets', 'liabilities', 'form', 'part', 'group', 'net', 'investment', 'foreign', 'operation', 'taken', 'directly', 'equity', 'disposal', 'net', 'investment', 'time', 'recognised', 'comprehensive', 'income', 'assets', 'liabilities', 'foreign', 'operations', 'translated', 'sterling', 'rate', 'exchange', 'ruling', 'reporting', 'date', 'income', 'expenses', 'translated', 'average', 'exchange', 'rates', 'period', 'resulting', 'exchange', 'differences', 'taken', 'directly', 'comprehensive', 'income', 'disposal', 'foreign', 'entity', 'deferred', 'cumulative', 'amount', 'recognised', 'comprehensive', 'income', 'relating', 'particular', 'foreign', 'operation', 'recognised', 'profit', 'loss', 'non', 'monetary', 'items', 'measured', 'terms', 'historical', 'cost', 'foreign', 'currency', 'translated', 'using', 'exchange', 'rates', 'dates', 'initial', 'transactions', 'non', 'monetary', 'items', 'measured', 'fair', 'value', 'foreign', 'currency', 'translated', 'using', 'exchange', 'rates', 'date', 'fair', 'value', 'determined', 'revenue', 'recognition', 'revenue', 'recognised', 'extent', 'probable', 'economic', 'benefits', 'flow', 'group', 'revenue', 'reliably', 'measured', 'revenue', 'measured', 'fair', 'value', 'consideration', 'receivable', 'deducting', 'wholesale', 'anticipated', 'retail', 'discounts', 'rebates', 'vat', 'sales', 'taxes', 'duty', 'following', 'criteria', 'must', 'also', 'met', 'revenue', 'recognised', 'sale', 'vehicles', 'revenue', 'sale', 'vehicles', 'recognised', 'significant', 'risks', 'rewards', 'ownership', 'vehicles', 'passed', 'buyer', 'normally', 'considered', 'point', 'despatch', 'dealer', 'distributor', 'party', 'group', 'acts', 'agent', 'vehicles', 'adopted', 'dealer', 'distributor', 'party', 'despatch', 'deferred', 'formal', 'request', 'buyer', 'revenue', 'recognised', 'vehicle', 'ready', 'despatch', 'written', 'request', 'hold', 'vehicle', 'specified', 'delivery', 'date', 'received', 'vehicles', 'sold', 'warranty', 'revenue', 'relating', 'warranty', 'service', 'recognised', 'despatch', 'vehicle', 'f', '13', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', 'sales', 'parts', 'revenue', 'sale', 'parts', 'generally', 'recognised', 'upon', 'despatch', 'dealer', 'party', 'group', 'acts', 'agent', 'dealer', 'aston', 'martin', 'works', 'limited', 'aston', 'martin', 'italy', 'r', 'l', 'indirect', 'subsidiaries', 'aston', 'martin', 'holdings', 'uk', 'limited', 'revenue', 'recognised', 'point', 'despatch', 'buyer', 'outside', 'group', 'servicing', 'restoration', 'vehicles', 'bodyshop', 'sales', 'income', 'servicing', 'restoration', 'vehicles', 'bodyshop', 'sales', 'recognised', 'services', 'completed', 'finance', 'income', 'finance', 'income', 'comprises', 'interest', 'receivable', 'funds', 'invested', 'calculated', 'using', 'effective', 'interest', 'rate', 'method', 'net', 'interest', 'income', 'net', 'defined', 'benefit', 'liability', 'asset', 'gains', 'financial', 'instruments', 'recognised', 'profit', 'loss', 'finance', 'expense', 'finance', 'expense', 'comprises', 'interest', 'payable', 'borrowings', 'calculated', 'using', 'effective', 'interest', 'rate', 'method', 'net', 'interest', 'expense', 'net', 'defined', 'benefit', 'liability', 'asset', 'losses', 'financial', 'instruments', 'recognised', 'profit', 'loss', 'net', 'losses', 'financial', 'liabilities', 'measured', 'amortised', 'cost', 'borrowing', 'costs', 'directly', 'attributable', 'acquisition', 'construction', 'production', 'asset', 'takes', 'substantial', 'time', 'prepared', 'use', 'capitalised', 'part', 'cost', 'asset', 'current', 'non', 'current', 'classification', 'current', 'assets', 'include', 'assets', 'held', 'primarily', 'trading', 'purposes', 'cash', 'cash', 'equivalents', 'assets', 'expected', 'realised', 'intended', 'sale', 'consumption', 'course', 'group', 'operating', 'cycle', 'current', 'assets', 'also', 'include', 'assets', 'classified', 'held', 'sale', 'assets', 'classified', 'non', 'current', 'assets', 'current', 'liabilities', 'include', 'liabilities', 'held', 'primarily', 'trading', 'purposes', 'liabilities', 'expected', 'settled', 'course', 'group', 'operating', 'cycle', 'liabilities', 'due', 'within', 'one', 'year', 'reporting', 'date', 'liabilities', 'classified', 'non', 'current', 'liabilities', 'goodwill', 'initial', 'recognition', 'goodwill', 'stated', 'cost', 'less', 'accumulated', 'impairment', 'losses', 'carrying', 'value', 'reviewed', 'impairment', 'least', 'annually', 'whenever', 'events', 'changes', 'circumstances', 'indicate', 'carrying', 'value', 'may', 'impaired', 'purpose', 'impairment', 'testing', 'goodwill', 'allocated', 'related', 'cash', 'generating', 'units', 'monitored', 'management', 'usually', 'business', 'segment', 'level', 'statutory', 'company', 'level', 'case', 'may', 'cash', 'generating', 'unit', 'group', 'aston', 'martin', 'lagonda', 'group', 'limited', 'business', 'recoverable', 'amount', 'cash', 'generating', 'unit', 'less', 'carrying', 'amount', 'including', 'goodwill', 'impairment', 'loss', 'recognised', 'profit', 'loss', 'intangible', 'assets', 'intangible', 'assets', 'acquired', 'separately', 'business', 'carried', 'initially', 'cost', 'intangible', 'asset', 'acquired', 'part', 'business', 'combination', 'recognised', 'outside', 'goodwill', 'asset', 'separable', 'arises', 'contractual', 'legal', 'rights', 'fair', 'value', 'measured', 'reliably', 'purchased', 'intellectual', 'property', 'purchased', 'intellectual', 'property', 'not', 'integral', 'item', 'property', 'plant', 'equipment', 'recognised', 'separately', 'intangible', 'asset', 'stated', 'cost', 'less', 'accumulated', 'depreciation', 'f', '14', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', 'brands', 'acquired', 'brand', 'recognised', 'statement', 'financial', 'position', 'intangible', 'asset', 'supported', 'registered', 'trademark', 'established', 'market', 'place', 'brand', 'earnings', 'separately', 'identifiable', 'brand', 'could', 'sold', 'separately', 'rest', 'business', 'brand', 'achieves', 'earnings', 'excess', 'achieved', 'unbranded', 'products', 'value', 'acquired', 'brand', 'determined', 'allocating', 'purchase', 'price', 'consideration', 'acquired', 'business', 'underlying', 'fair', 'values', 'tangible', 'assets', 'goodwill', 'brands', 'intangible', 'assets', 'acquired', 'using', 'income', 'approach', 'multiperiod', 'excess', 'earnings', 'methodology', 'development', 'costs', 'expenditure', 'internally', 'developed', 'intangible', 'assets', 'excluding', 'development', 'costs', 'taken', 'profit', 'loss', 'year', 'incurred', 'expenditure', 'relating', 'clearly', 'defined', 'identifiable', 'development', 'projects', 'recognised', 'intangible', 'asset', 'following', 'criteria', 'met', 'project', 'technical', 'feasibility', 'commercial', 'viability', 'demonstrated', 'availability', 'adequate', 'technical', 'financial', 'resources', 'intention', 'complete', 'project', 'confirmed', 'correlation', 'development', 'costs', 'future', 'revenues', 'established', 'technology', 'patented', 'unpatented', 'technology', 'acquired', 'business', 'combinations', 'valued', 'using', 'cost', 'approach', 'value', 'determined', 'using', 'substitution', 'principle', 'adjusting', 'actual', 'costs', 'incurred', 'loss', 'due', 'obsolescence', 'date', 'acquisition', 'aston', 'martin', 'lagonda', 'group', 'limited', 'obsolete', 'element', 'determined', 'reference', 'proportion', 'product', 'life', 'cycle', 'expired', 'acquisition', 'date', 'technology', 'acquired', 'third', 'parties', 'included', 'fair', 'value', 'dealer', 'network', 'group', 'sells', 'vehicles', 'exclusively', 'network', 'franchised', 'dealers', 'extent', 'group', 'benefits', 'network', 'means', 'distribution', 'dealer', 'network', 'valued', 'based', 'costs', 'incurred', 'group', 'beneficial', 'lease', 'rent', 'free', 'lease', 'options', 'valued', 'basis', 'net', 'present', 'value', 'market', 'rental', 'cashflows', 'amortisation', 'following', 'initial', 'recognition', 'historic', 'cost', 'model', 'applied', 'intangible', 'assets', 'carried', 'cost', 'less', 'accumulated', 'amortisation', 'accumulated', 'impairment', 'losses', 'amortisation', 'capitalised', 'costs', 'begins', 'date', 'production', 'commences', 'intangible', 'assets', 'finite', 'life', 'no', 'residual', 'value', 'amortised', 'straight', 'line', 'basis', 'expected', 'useful', 'lives', 'charges', 'included', 'profit', 'loss', 'follows', 'years', 'purchased', 'intellectual', 'property', 'brands', 'development', 'costs', 'technology', 'dealer', 'network', 'beneficial', 'lease', 'f', '15', '5', 'indefinite', 'life', 'life', 'model', '10', '20', '10', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', 'property', 'plant', 'equipment', 'property', 'plant', 'equipment', 'stated', 'cost', 'less', 'accumulated', 'depreciation', 'accumulated', 'impairment', 'losses', 'cost', 'comprises', 'aggregate', 'amount', 'paid', 'fair', 'value', 'consideration', 'given', 'acquire', 'asset', 'includes', 'costs', 'directly', 'attributable', 'making', 'asset', 'capable', 'operating', 'intended', 'borrowing', 'costs', 'directly', 'attributable', 'assets', 'construction', 'capitalised', 'depreciation', 'provided', 'property', 'plant', 'equipment', 'land', 'straight', 'line', 'basis', 'residual', 'value', 'expected', 'useful', 'life', 'follows', 'years', 'freehold', 'buildings', 'plant', 'machinery', 'fixtures', 'fittings', 'tooling', 'motor', 'vehicles', '30', '3', '30', '5', '9', 'tooling', 'amortised', 'life', 'project', 'assets', 'course', 'construction', 'included', 'respective', 'category', 'not', 'depreciated', 'completion', 'construction', 'no', 'depreciation', 'provided', 'freehold', 'land', 'carrying', 'values', 'property', 'plant', 'equipment', 'reviewed', 'impairment', 'events', 'changes', 'circumstances', 'indicate', 'carrying', 'value', 'may', 'not', 'recoverable', 'written', 'immediately', 'recoverable', 'amount', 'useful', 'lives', 'residual', 'values', 'reviewed', 'annually', 'adjustments', 'required', 'made', 'prospectively', 'item', 'property', 'plant', 'equipment', 'derecognised', 'upon', 'disposal', 'no', 'future', 'economic', 'benefits', 'expected', 'arise', 'continued', 'use', 'asset', 'gain', 'loss', 'arising', 'derecognition', 'asset', 'included', 'profit', 'loss', 'period', 'derecognition', 'investments', 'subsidiaries', 'separate', 'financial', 'statements', 'company', 'recognises', 'investments', 'subsidiaries', 'cost', 'income', 'recognised', 'investments', 'relation', 'distributions', 'received', 'postacquisition', 'profits', 'distributions', 'received', 'excess', 'post', 'acquisition', 'profits', 'deducted', 'cost', 'investment', 'impairment', 'assets', 'group', 'assesses', 'reporting', 'date', 'whether', 'indication', 'asset', 'may', 'impaired', 'indication', 'exists', 'annual', 'impairment', 'testing', 'asset', 'required', 'group', 'makes', 'estimate', 'asset', 'recoverable', 'amount', 'asset', 'recoverable', 'amount', 'higher', 'asset', 'cash', 'generating', 'unit', 'fair', 'value', 'less', 'costs', 'sell', 'value', 'use', 'determined', 'individual', 'asset', 'unless', 'asset', 'not', 'generate', 'cash', 'inflows', 'largely', 'independent', 'assets', 'groups', 'assets', 'carrying', 'amount', 'asset', 'exceeds', 'recoverable', 'amount', 'asset', 'considered', 'impaired', 'written', 'recoverable', 'amount', 'assessing', 'value', 'use', 'estimated', 'future', 'cash', 'flows', 'discounted', 'present', 'value', 'using', 'pre', 'tax', 'discount', 'rate', 'reflects', 'current', 'market', 'assessments', 'time', 'value', 'money', 'risks', 'specific', 'asset', 'impairment', 'losses', 'continuing', 'operations', 'recognised', 'profit', 'loss', 'expense', 'categories', 'consistent', 'function', 'impaired', 'asset', 'goodwill', 'brands', 'infinite', 'life', 'capitalised', 'development', 'costs', 'not', 'yet', 'available', 'use', 'recoverable', 'amount', 'estimated', 'annually', 'frequently', 'indication', 'asset', 'impaired', 'impairment', 'loss', 'subsequently', 'reverses', 'carrying', 'amount', 'asset', 'cashgenerating', 'unit', 'increased', 'revised', 'estimate', 'recoverable', 'amount', 'increased', 'carrying', 'amount', 'not', 'exceed', 'carrying', 'amount', 'would', 'f', '16', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', 'determined', 'no', 'impairment', 'loss', 'recognised', 'asset', 'cash', 'generating', 'unit', 'prior', 'periods', 'reversal', 'impairment', 'loss', 'recognised', 'income', 'immediately', 'impairment', 'losses', 'recognised', 'goodwill', 'can', 'not', 'reversed', 'inventories', 'inventories', 'stated', 'lower', 'cost', 'net', 'realisable', 'value', 'service', 'restoration', 'projects', 'net', 'realisable', 'value', 'price', 'project', 'invoiced', 'normal', 'course', 'business', 'allowing', 'costs', 'realisation', 'cost', 'includes', 'costs', 'incurred', 'bringing', 'product', 'present', 'location', 'condition', 'follows', 'raw', 'materials', 'service', 'parts', 'spare', 'parts', 'purchase', 'cost', 'first', 'first', 'basis', 'work', 'progress', 'finished', 'vehicles', 'cost', 'direct', 'materials', 'labour', 'plus', 'attributable', 'overheads', 'based', 'normalised', 'level', 'activity', 'excluding', 'borrowing', 'costs', 'provisions', 'made', 'specific', 'basis', 'obsolete', 'slow', 'moving', 'defective', 'stocks', 'cost', 'service', 'restoration', 'project', 'can', 'not', 'fully', 'recovered', 'leases', 'operating', 'lease', 'payments', 'payments', 'made', 'operating', 'leases', 'recognised', 'income', 'statement', 'straight', 'line', 'basis', 'term', 'lease', 'lease', 'incentives', 'received', 'recognised', 'income', 'statement', 'integral', 'part', 'total', 'lease', 'expense', 'cash', 'cash', 'equivalents', 'cash', 'short', 'term', 'deposits', 'statement', 'financial', 'position', 'comprise', 'cash', 'banks', 'hand', 'short', 'term', 'deposits', 'original', 'maturity', 'three', 'months', 'less', 'purpose', 'consolidated', 'cash', 'flow', 'statement', 'cash', 'cash', 'equivalents', 'consist', 'cash', 'cash', 'equivalents', 'defined', 'consignment', 'deposit', 'monies', 'received', 'customers', 'dealers', 'included', 'trade', 'payables', 'released', 'profit', 'loss', 'completion', 'sale', 'financial', 'liability', 'deposits', 'derecognised', 'entity', 'not', 'obligation', 'respect', 'deposits', 'derivative', 'financial', 'instruments', 'derivative', 'financial', 'assets', 'liabilities', 'recognised', 'statement', 'financial', 'position', 'fair', 'value', 'group', 'becomes', 'party', 'contractual', 'provisions', 'instrument', 'group', 'uses', 'derivative', 'instruments', 'manage', 'exposure', 'foreign', 'exchange', 'risk', 'arising', 'operating', 'financing', 'activities', 'movements', 'fair', 'value', 'foreign', 'exchange', 'derivatives', 'recognised', 'finance', 'income', 'expense', 'realised', 'gains', 'losses', 'cost', 'sales', 'statement', 'comprehensive', 'income', 'movements', 'fair', 'value', 'interest', 'rate', 'derivatives', 'taken', 'finance', 'income', 'finance', 'expense', 'appropriate', 'financial', 'asset', 'liability', 'derecognised', 'contract', 'gives', 'rise', 'settled', 'sold', 'cancelled', 'expires', 'financial', 'assets', 'liabilities', 'financial', 'assets', 'cash', 'contractual', 'right', 'receive', 'cash', 'another', 'financial', 'asset', 'another', 'entity', 'exchange', 'financial', 'assets', 'liabilities', 'another', 'entity', 'conditions', 'potentially', 'favourable', 'entity', 'addition', 'contracts', 'result', 'another', 'entity', 'delivering', 'variable', 'number', 'equity', 'instruments', 'financial', 'assets', 'f', '17', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', 'trade', 'receivables', 'trade', 'receivables', 'carried', 'lower', 'original', 'invoiced', 'value', 'recoverable', 'amount', 'provision', 'made', 'objective', 'evidence', 'group', 'not', 'able', 'recover', 'balances', 'full', 'amount', 'write', 'determined', 'difference', 'asset', 'carrying', 'amount', 'present', 'value', 'estimated', 'future', 'cash', 'flows', 'receivables', 'not', 'discounted', 'time', 'value', 'money', 'not', 'considered', 'material', 'derivative', 'financial', 'assets', 'derivative', 'financial', 'asset', 'assessed', 'reporting', 'date', 'determine', 'whether', 'objective', 'evidence', 'impaired', 'derivative', 'financial', 'asset', 'considered', 'impaired', 'objective', 'evidence', 'indicates', 'one', 'events', 'negative', 'effect', 'estimated', 'future', 'cash', 'flows', 'asset', 'trade', 'payables', 'trade', 'payables', 'recognised', 'carried', 'original', 'invoiced', 'value', 'payables', 'not', 'discounted', 'take', 'account', 'time', 'value', 'money', 'effect', 'immaterial', 'borrowings', 'borrowings', 'recognised', 'initially', 'fair', 'value', 'less', 'attributable', 'transaction', 'costs', 'subsequent', 'initial', 'recognition', 'borrowings', 'stated', 'amortised', 'cost', 'difference', 'cost', 'redemption', 'value', 'recognised', 'profit', 'loss', 'period', 'borrowings', 'effective', 'interest', 'basis', 'pensions', 'group', 'operates', 'defined', 'contribution', 'pension', 'plan', 'group', 'pays', 'fixed', 'contributions', 'separate', 'entity', 'no', 'legal', 'constructive', 'obligation', 'pay', 'amounts', 'obligations', 'contributions', 'defined', 'contribution', 'pension', 'plans', 'recognised', 'expense', 'income', 'statement', 'periods', 'services', 'rendered', 'employees', 'group', 'operates', 'defined', 'benefit', 'pension', 'plan', 'contracted', 'state', 'scheme', 'group', 'net', 'obligation', 'respect', 'defined', 'benefit', 'plans', 'calculated', 'plan', 'estimating', 'amount', 'future', 'benefit', 'employees', 'earned', 'current', 'prior', 'periods', 'discounting', 'amount', 'deducting', 'fair', 'value', 'plan', 'assets', 'calculation', 'defined', 'benefit', 'obligations', 'performed', 'annually', 'qualified', 'actuary', 'using', 'projected', 'unit', 'credit', 'method', 'calculation', 'results', 'potential', 'asset', 'group', 'recognised', 'asset', 'limited', 'present', 'value', 'economic', 'benefits', 'available', 'form', 'future', 'refunds', 'plan', 'reductions', 'future', 'contributions', 'plan', 'calculate', 'present', 'value', 'economic', 'benefits', 'consideration', 'given', 'minimum', 'funding', 'requirements', 'remeasurements', 'net', 'defined', 'benefit', 'asset', 'liability', 'comprise', 'actuarial', 'gains', 'losses', 'interest', 'plan', 'assets', 'excluding', 'interest', 'effect', 'asset', 'ceiling', 'excluding', 'interest', 'recognised', 'immediately', 'comprehensive', 'income', 'group', 'determines', 'net', 'interest', 'expense', 'income', 'net', 'defined', 'benefit', 'asset', 'liability', 'taking', 'account', 'changes', 'net', 'defined', 'asset', 'liability', 'period', 'result', 'contributions', 'benefit', 'payments', 'net', 'interest', 'expense', 'expenses', 'related', 'defined', 'benefit', 'plans', 'recognised', 'profit', 'loss', 'benefits', 'plan', 'changed', 'plan', 'curtailed', 'resulting', 'change', 'benefit', 'relates', 'past', 'service', 'cost', 'gain', 'loss', 'curtailment', 'recognised', 'immediately', 'profit', 'loss', 'group', 'recognises', 'gains', 'losses', 'settlement', 'defined', 'benefit', 'plan', 'settlement', 'occurs', 'f', '18', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', 'share', 'based', 'payment', 'transactions', 'grant', 'date', 'fair', 'value', 'options', 'granted', 'employees', 'recognised', 'employee', 'expense', 'corresponding', 'increase', 'equity', 'period', 'employees', 'become', 'unconditionally', 'entitled', 'options', 'amount', 'recognised', 'expense', 'adjusted', 'reflect', 'actual', 'number', 'share', 'options', 'related', 'service', 'non', 'market', 'vesting', 'conditions', 'met', 'warranty', 'service', 'plan', 'provision', 'provision', 'recognised', 'group', 'legal', 'constructive', 'obligation', 'result', 'past', 'event', 'probable', 'outflow', 'economic', 'benefits', 'required', 'settle', 'obligation', 'typically', 'despatch', 'vehicle', 'expected', 'future', 'cash', 'flows', 'not', 'discounted', 'present', 'value', 'effect', 'not', 'material', 'group', 'provides', 'estimated', 'liability', 'products', 'warranty', 'service', 'plans', 'provision', 'estimated', 'based', 'past', 'experience', 'level', 'warranty', 'claims', 'settled', 'cost', 'service', 'plans', 'income', 'taxes', 'tax', 'profit', 'loss', 'period', 'represents', 'sum', 'tax', 'currently', 'payable', 'deferred', 'tax', 'tax', 'recognised', 'profit', 'loss', 'except', 'extent', 'relates', 'items', 'recognised', 'directly', 'equity', 'case', 'recognised', 'comprehensive', 'income', 'current', 'tax', 'assets', 'liabilities', 'measured', 'amount', 'expected', 'recovered', 'paid', 'taxation', 'authorities', 'based', 'tax', 'rates', 'laws', 'enacted', 'substantively', 'enacted', 'reporting', 'date', 'deferred', 'income', 'tax', 'recognised', 'temporary', 'differences', 'arising', 'tax', 'bases', 'assets', 'liabilities', 'carrying', 'amounts', 'financial', 'statements', 'following', 'exceptions', 'temporary', 'difference', 'arises', 'initial', 'recognition', 'goodwill', 'asset', 'liability', 'transaction', 'not', 'business', 'combination', 'time', 'transaction', 'affects', 'neither', 'accounting', 'nor', 'taxable', 'profit', 'loss', 'respect', 'taxable', 'temporary', 'differences', 'associated', 'investments', 'subsidiaries', 'timing', 'reversal', 'temporary', 'differences', 'controlled', 'probable', 'temporary', 'differences', 'not', 'reverse', 'foreseeable', 'future', 'deferred', 'income', 'tax', 'assets', 'recognised', 'extent', 'probable', 'taxable', 'profit', 'available', 'deductible', 'temporary', 'differences', 'carried', 'forward', 'tax', 'credits', 'tax', 'losses', 'utilised', 'deferred', 'income', 'tax', 'assets', 'liabilities', 'measured', 'undiscounted', 'basis', 'tax', 'rates', 'expected', 'apply', 'related', 'asset', 'realised', 'liability', 'settled', 'based', 'tax', 'rates', 'laws', 'enacted', 'substantively', 'enacted', 'reporting', 'date', 'equity', 'instruments', 'equity', 'instrument', 'contract', 'evidences', 'residual', 'interest', 'assets', 'group', 'deducting', 'liabilities', 'equity', 'instruments', 'issued', 'group', 'recorded', 'proceeds', 'received', 'net', 'direct', 'issue', 'costs', 'dividends', 'distributions', 'relating', 'equity', 'instruments', 'debited', 'direct', 'equity', 'critical', 'accounting', 'assumptions', 'key', 'sources', 'estimation', 'uncertainty', 'preparation', 'financial', 'statements', 'requires', 'management', 'make', 'estimates', 'assumptions', 'affect', 'amounts', 'reported', 'assets', 'liabilities', 'reporting', 'date', 'amounts', 'reported', 'revenues', 'expenses', 'period', 'nature', 'estimation', 'means', 'actual', 'outcomes', 'could', 'differ', 'estimates', 'f', '19', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', 'process', 'applying', 'group', 'accounting', 'policies', 'described', 'note', 'management', 'made', 'following', 'judgements', 'significant', 'effect', 'amounts', 'recognised', 'financial', 'statements', 'point', 'capitalisation', 'amortisation', 'development', 'costs', 'useful', 'lives', 'tangible', 'intangible', 'assets', 'key', 'sources', 'estimation', 'uncertainty', 'significant', 'risk', 'causing', 'material', 'adjustments', 'carrying', 'amounts', 'assets', 'liabilities', 'within', 'next', 'financial', 'year', 'follows', 'measurement', 'impairment', 'indefinite', 'life', 'intangible', 'assets', 'including', 'goodwill', 'measurement', 'warranty', 'liabilities', 'measurement', 'defined', 'benefit', 'pension', 'assets', 'obligations', 'measurement', 'intangible', 'assets', 'goodwill', 'business', 'combination', 'involves', 'estimation', 'future', 'cash', 'flows', 'selection', 'suitable', 'discount', 'rate', 'group', 'determines', 'whether', 'indefinite', 'life', 'intangible', 'assets', 'impaired', 'annual', 'basis', 'requires', 'estimation', 'value', 'use', 'cash', 'generating', 'units', 'intangible', 'assets', 'allocated', 'involves', 'estimation', 'future', 'cash', 'flows', 'choosing', 'suitable', 'discount', 'rate', 'see', 'note', '11', 'measurement', 'warranty', 'liabilities', 'estimated', 'past', 'experience', 'actual', 'level', 'warranty', 'claims', 'received', 'management', 'establishes', 'estimates', 'based', 'historical', 'information', 'nature', 'frequency', 'average', 'cost', 'warranty', 'claims', 'measurement', 'defined', 'benefit', 'pension', 'obligations', 'requires', 'estimation', 'future', 'changes', 'salaries', 'inflation', 'well', 'mortality', 'rates', 'expected', 'return', 'assets', 'suitable', 'discount', 'rates', 'see', 'note', '21', 'following', 'new', 'standards', 'not', 'yet', 'effective', 'could', 'relevant', 'group', 'no', 'significant', 'new', 'financial', 'reporting', 'standards', 'adopted', '2016', 'following', 'standards', 'interpretations', 'not', 'yet', 'effective', 'not', 'yet', 'endorsed', 'european', 'union', 'not', 'early', 'adopted', 'group', 'adopted', 'future', 'accounting', 'periods', 'ifrs', '9', 'financial', 'instruments', 'july', '2014', 'international', 'accounting', 'standards', 'board', 'issued', 'final', 'version', 'ifrs', '9', 'financial', 'instruments', 'ifrs', '9', 'effective', 'annual', 'periods', 'beginning', '1', 'january', '2018', 'early', 'adoption', 'permitted', 'group', 'currently', 'plans', 'apply', 'ifrs', '9', 'initially', '1', 'january', '2018', 'actual', 'impact', 'adopting', 'ifrs', '9', 'group', 'consolidated', 'financial', 'statements', '2018', 'not', 'known', 'can', 'not', 'reliably', 'estimated', 'dependent', 'financial', 'instruments', 'group', 'holds', 'economic', 'conditions', 'time', 'well', 'accounting', 'elections', 'judgements', 'make', 'future', 'ifrs', '15', 'revenue', 'contracts', 'customers', 'ifrs', '15', 'establishes', 'comprehensive', 'framework', 'determining', 'whether', 'much', 'revenue', 'recognised', 'replaces', 'existing', 'revenue', 'recognition', 'guidance', 'including', 'ias', '18', 'revenue', 'ias', '11', 'construction', 'contracts', 'ifric', '13', 'customer', 'loyalty', 'programmes', 'ifrs', '15', 'effective', 'annual', 'periods', 'beginning', '1', 'january', '2018', 'early', 'adoption', 'permitted', 'ifrs', '16', 'leases', 'ifrs', '16', 'introduces', 'single', 'balance', 'sheet', 'lease', 'accounting', 'model', 'lessees', 'lessee', 'recognises', 'right', 'use', 'asset', 'representing', 'right', 'use', 'underlying', 'asset', 'lease', 'liability', 'representing', 'obligations', 'make', 'lease', 'payments', 'optional', 'exemptions', 'short', 'term', 'leases', 'leases', 'low', 'value', 'items', 'lessor', 'accounting', 'remains', 'similar', 'current', 'standard', 'e', 'lessors', 'continue', 'classify', 'leases', 'finance', 'operating', 'leases', 'f', '20', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', 'ifrs', '16', 'replaces', 'existing', 'leases', 'guidance', 'including', 'ias', '17', 'leases', 'ifric', '4', 'determining', 'whether', 'arrangement', 'contains', 'lease', 'sic', '15', 'operating', 'leases', 'incentives', 'sic', '27', 'evaluating', 'substance', 'transactions', 'involving', 'legal', 'form', 'lease', 'standard', 'effective', 'annual', 'periods', 'beginning', '1', 'january', '2019', 'early', 'adoption', 'permitted', 'entities', 'apply', 'ifrs', '15', 'revenue', 'contracts', 'customers', 'date', 'initial', 'application', 'ifrs', '16', 'introduction', 'ifrs', '15', 'ifrs', '9', 'ifrs', '16', 'significant', 'impact', 'reported', 'results', 'group', 'although', 'not', 'currently', 'possible', 'quantify', 'effect', '3', 'revenue', 'group', '2016', '000', 'analysis', 'category', 'sale', 'vehicles', 'sale', 'parts', 'servicing', 'vehicles', '2015', '000', '528', '974', '457', '404', '53', '605', '44', '700', '10', '871', '8', '068', '593', '450', '510', '172', '4', 'operating', 'loss', 'group', 'group', 'operating', 'loss', 'slated', 'charging', '2016', '000', 'depreciation', 'property', 'plant', 'equipment', 'note', '12', 'amortisation', 'intangible', 'assets', 'note', '10', 'provision', 'impairment', 'trade', 'receivables', 'note', '15', 'loss', 'sale', 'property', 'plant', 'equipment', 'net', 'foreign', 'currency', 'differences', 'cost', 'inventories', 'recognised', 'expense', 'write', 'inventories', 'net', 'realisable', 'value', 'operating', 'lease', 'payments', 'land', 'buildings', 'plant', 'machinery', 'auditor', 'remuneration', 'audit', 'financial', 'statements', 'audit', 'financial', 'statements', 'subsidiaries', 'pursuant', 'legislation', 'services', 'relating', 'taxation', 'services', 'research', 'development', 'expenditure', 'recognised', 'expense', '38', '314', '94', '858', '176', '22', '4', '091', '287', '987', '1', '453', '2015', '000', '46', '320', '73', '157', '352', '54', '3', '204', '264', '930', '964', '2', '898', '1', '842', '2', '818', '1', '615', '15', '150', '266', '373', '10', '858', '15', '121', '366', '147', '10', '570', 'research', 'development', 'expenditure', 'analysed', 'follows', 'total', 'research', 'development', 'expenditure', 'capitalised', 'research', 'development', 'expenditure', 'note', '10', 'research', 'development', 'expenditure', 'recognised', 'expense', 'f', '21', '127', '335', '132', '603', '116', '477', '122', '033', '10', '858', '10', '570', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', '5', 'non', 'recurring', 'items', '2016', '000', '2015', '000', 'non', 'recurring', 'operating', 'expenses', 'impairment', 'intangible', 'tangible', 'assets', 'restructuring', 'costs', 'including', 'related', 'consultancy', 'costs', 'payment', 'former', 'director', 'relating', 'settlement', 'shares', '48', '738', '30', '169', 'b', '7', '547', 'c', '2', '636', 'non', 'recurring', 'items', 'tax', 'tax', 'non', 'recurring', 'items', '48', '738', '40', '352', 'non', 'recurring', 'items', 'tax', '48', '738', '40', '352', 'view', 'launch', 'new', 'models', '2016', 'onwards', 'group', 'performed', 'review', 'carrying', 'value', 'intangible', 'tangible', 'assets', 'resulted', 'impairment', 'charge', 'b', 'october', '2015', 'group', 'announced', 'business', 'rebalancing', 'programme', 'deliver', 'significant', 'efficiency', 'stability', 'business', 'mostly', 'affecting', 'administrative', 'managerial', 'positions', 'opposed', 'manufacturing', 'operations', 'charge', 'income', 'statement', 'includes', 'related', 'consultancy', 'costs', 'c', 'group', 'made', 'contractual', 'payment', 'former', 'director', 'relating', 'settlement', 'partly', 'paid', 'shares', 'no', 'tax', 'effect', 'non', 'recurring', 'items', 'either', 'year', '6', 'staff', 'costs', 'directors', 'emoluments', 'group', 'year', 'ended', '31', 'december', '2016', '000', 'year', 'ended', '31', 'december', '2015', '000', '77', '297', '8', '141', '9', '042', '2', '437', '75', '766', '7', '641', '9', '717', '1', '831', '96', '917', '94', '955', 'staff', 'costs', 'wages', 'salaries', 'social', 'security', 'costs', 'expenses', 'related', 'post', 'employment', 'defined', 'benefit', 'plan', 'contributions', 'defined', 'contribution', 'plans', 'year', 'company', 'no', 'employees', 'staff', 'costs', '2015', 'none', 'average', 'monthly', 'number', 'employees', 'years', 'ended', '31', 'december', '2016', '31', 'december', '2015', 'activity', 'production', 'selling', 'distribution', 'administration', '2016', '2015', '687', '197', '611', '681', '206', '589', '1', '495', '1', '476', '2016', '000', '2015', '000', '3', '876', '3', '498', 'b', 'directors', 'emoluments', 'transactions', 'directors', 'emoluments', 'f', '22', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', 'none', 'directors', 'received', 'amounts', 'long', 'term', 'incentive', 'plans', 'highest', 'paid', 'director', 'aggregate', 'emoluments', '2', '976', '2', '598', '2016', '000', '2015', '000', '7', '701', '544', '7', '549', '615', '8', '245', '8', '164', 'compensation', 'key', 'management', 'personnel', 'including', 'directors', 'short', 'term', 'employee', 'benefits', 'post', 'employment', 'benefits', 'compensation', 'loss', 'office', 'payments', 'included', 'amounted', '246', '638', '2015', '18', '563', 'directors', 'benefited', 'qualifying', 'third', 'party', 'indemnity', 'provisions', '7', 'finance', 'income', 'group', 'year', 'ended', '31', 'december', '2016', '000', 'year', 'ended', '31', 'december', '2015', '000', 'bank', 'deposit', 'interest', 'income', 'net', 'gain', 'financial', 'instruments', 'recognised', 'fair', 'value', 'profit', 'loss', '2', '224', '2', '090', '360', 'total', 'finance', 'income', '2', '584', '2', '090', '8', 'finance', 'expense', 'group', '2016', '000', '2015', '000', '49', '571', '3', '29', '124', '46', '670', '277', '10', '838', '26', '737', '27', '607', '6', '850', '7', '129', 'total', 'finance', 'expense', '133', '042', '71', '764', 'bank', 'loans', 'overdrafts', 'net', 'interest', 'expense', 'net', 'defined', 'benefit', 'liability', 'interest', 'preference', 'shares', 'classified', 'financial', 'liabilities', 'net', 'loss', 'financial', 'instruments', 'recognised', 'fair', 'value', 'profit', 'loss', 'net', 'foreign', 'exchange', 'loss', 'f', '23', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', '9', 'tax', 'expense', 'continuing', 'operations', 'group', '2016', '000', '2015', '000', 'current', 'tax', 'expense', 'uk', 'corporation', 'tax', 'profits', 'overseas', 'tax', 'prior', 'period', 'movement', '93', '643', '21', '47', '430', '16', 'total', 'current', 'income', 'tax', '757', '493', 'deferred', 'tax', 'expense', 'origination', 'reversal', 'temporary', 'differences', 'effect', 'change', 'tax', 'laws', 'prior', 'period', 'movement', '13', '840', '2', '145', '24', '15', '388', '6', '004', '100', 'total', 'deferred', 'tax', '15', '961', '21', '492', 'total', 'tax', 'credit', '15', '204', '20', '999', 'tax', 'relating', 'items', 'charged', 'comprehensive', 'income', 'deferred', 'tax', 'actuarial', 'losses', 'gains', 'defined', 'benefit', 'pension', 'plan', '11', '216', '1', '278', 'b', 'reconciliation', 'total', 'tax', 'charge', 'tax', 'credit', 'consolidated', 'statement', 'comprehensive', 'income', 'year', 'lower', 'standard', 'rate', 'corporation', 'tax', 'uk', '20', '00', '2015', '20', '25', 'differences', 'reconciled', '2016', '000', 'loss', 'operations', 'taxation', 'loss', 'operations', 'taxation', 'multiplied', 'standard', 'rate', 'corporation', 'tax', 'uk', '20', '2015', '20', '25', '162', '777', '20', '00', '32', '555', '20', '25', '2015', '000', '127', '956', '25', '911', 'difference', 'current', 'tax', 'credit', 'due', 'effects', 'unrecognised', 'tax', 'losses', 'expenses', 'not', 'deductible', 'tax', 'purposes', 'adjustments', 'respect', 'prior', 'periods', 'effect', 'change', 'tax', 'laws', 'pension', 'movements', 'taken', 'equity', '6', '281', '7', '919', '45', '5', '136', '1', '979', '51', '6', '701', '2', '100', '84', '4', '201', '160', '236', 'total', 'tax', 'credit', '15', '204', '20', '999', 'c', 'factors', 'affecting', 'future', 'tax', 'charges', 'reduction', 'uk', 'corporation', 'tax', 'rate', '21', '20', 'effective', '1', 'april', '2015', 'substantively', 'enacted', '2', 'july', '2013', 'reductions', '19', 'effective', '1', 'april', '2017', '18', 'effective', '1', 'april', '2020', 'substantively', 'enacted', '26', 'october', '2015', 'additional', 'reduction', '17', 'effective', '1', 'april', '2020', 'substantially', 'enacted', '6', 'september', '2016', 'reduce', 'group', 'future', 'current', 'tax', 'charge', 'accordingly', 'deferred', 'tax', 'assets', 'liabilities', '31', 'december', '2016', 'calculated', 'based', 'rates', 'f', '24', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', 'deferred', 'tax', 'recognised', 'deferred', 'tax', 'assets', 'liabilities', 'deferred', 'tax', 'assets', 'liabilities', 'attributable', 'following', 'assets', '2016', '000', 'assets', '2015', '000', 'liabilities', '2016', '000', 'liabilities', '2015', '000', 'property', 'plant', 'equipment', 'intangible', 'assets', 'employee', 'benefits', 'provisions', 'losses', '285', '33', '819', '11', '861', '890', '1', '744', '2', '416', '18', '234', '11', '178', '42', '603', '85', '959', 'tax', 'assets', 'liabilities', '32', '124', '48', '303', '42', '603', '85', '959', '32', '124', '48', '303', 'set', 'tax', 'liabilities', 'assets', '32', '124', '48', '303', 'movement', 'deferred', 'tax', '2016', '1', 'january', '2016', '000', 'property', 'plant', 'equipment', 'intangible', 'assets', 'employee', 'benefits', 'provisions', 'losses', 'recognised', 'income', '000', 'recognised', 'equity', '000', '31', 'december', '2016', '000', '33', '819', '85', '959', '890', '2', '416', '11', '178', '33', '534', '43', '356', '245', '672', '7', '056', '11', '216', '285', '42', '603', '11', '861', '1', '744', '18', '234', '37', '656', '15', '961', '11', '216', '10', '479', 'movement', 'deferred', 'tax', '2015', '1', 'january', '2015', '000', 'property', 'plant', 'equipment', 'intangible', 'assets', 'employee', 'benefits', 'provisions', 'losses', 'recognised', 'income', '000', 'recognised', 'equity', '000', '31', 'december', '2015', '000', '27', '102', '101', '894', '2', '481', '2', '910', '11', '531', '6', '717', '15', '935', '313', '494', '353', '1', '278', '33', '819', '85', '959', '890', '2', '416', '11', '178', '57', '870', '21', '492', '1', '278', '37', '656', 'deferred', 'tax', 'assets', 'not', 'recognised', 'respect', 'following', 'items', '2016', '000', 'tax', 'losses', '2015', '000', '33', '039', '26', '804', 'deferred', 'tax', 'assets', 'not', 'recognised', 'not', 'probable', 'future', 'taxable', 'profit', 'available', 'group', 'utilise', 'benefits', 'therefrom', 'deferred', 'tax', 'asset', 'recognised', 'respect', 'losses', 'trading', 'companies', 'future', 'trading', 'profits', 'foreseen', 'f', '25', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', '10', 'intangible', 'assets', 'group', 'deferred', 'dealer', 'network', 'development', 'brands', 'technology', 'cost', 'goodwill', '000', '000', '000', '000', '000', 'total', '000', 'cost', 'balance', '1', 'january', '2015', '242', '600', 'additions', '101', '302', '48', '591', '2', '616', '378', '016', '122', '033', '85', '436', '855', '945', '124', '649', 'balance', '31', 'december', '2015', '242', '600', '101', '302', '51', '207', '500', '049', '85', '436', '980', '594', 'balance', '1', 'january', '2016', '242', '600', 'additions', 'disposals', '101', '302', '80', '100', '51', '207', '8', '031', '500', '049', '116', '477', '85', '436', '980', '594', '124', '508', '80', '100', 'balance', '31', 'december', '2016', '242', '600', '21', '202', '59', '238', '616', '526', '85', '436', '1', '025', '002', 'amortisation', 'balance', '1', 'january', '2015', 'amortisation', 'year', '60', '743', '28', '880', '140', '317', '200', '230', '140', '19', '357', '9', '692', '43', '976', '132', '73', '157', 'balance', '31', 'december', '2015', '80', '100', '38', '572', '184', '293', '332', '303', '297', 'balance', '1', 'january', '2016', 'amortisation', 'year', 'disposals', '80', '100', '38', '572', '184', '293', '332', '303', '297', '471', '80', '100', '9', '345', '84', '910', '132', '94', '858', '80', '100', 'balance', '31', 'december', '2016', '471', '47', '917', '269', '203', '464', '318', '055', 'carrying', 'amounts', '1', 'january', '2015', '242', '600', '40', '559', '19', '711', '237', '699', '85', '236', '625', '805', '31', 'december', '2015', '242', '600', '21', '202', '12', '635', '315', '756', '85', '104', '677', '297', '1', 'january', '2016', '242', '600', '21', '202', '12', '635', '315', '756', '85', '104', '677', '297', '31', 'december', '2016', '242', '600', '20', '731', '11', '321', '347', '323', '84', '972', '706', '947', 'brand', 'identified', 'valued', 'acquisition', 'aston', 'martin', 'lagonda', 'group', 'limited', 'identified', 'indefinite', 'life', 'due', 'long', 'history', 'wide', 'recognition', 'brand', 'meant', 'not', 'possible', 'identify', 'future', 'lifetime', 'dealer', 'network', 'intangible', 'assets', '11', '321', '000', '2015', '12', '635', '000', 'include', '8', '018', '000', '2015', '8', '789', '000', 'relating', 'dealer', 'network', '308', '000', 'relating', 'chinese', 'distribution', 'rights', '2015', '1', '535', '000', '2', '735', '000', 'relating', 'software', 'development', '2015', '2', '098', '000', '260', '000', 'relating', 'items', '2015', '213', '000', 'goodwill', '84', '972', '000', '2015', '85', '104', '000', 'relates', 'following', '84', '131', '000', '2015', '84', '131', '000', 'arose', 'acquisition', 'aston', 'martin', 'lagonda', 'group', 'limited', 'aston', 'martin', 'holdings', 'uk', 'limited', 'via', 'aston', 'martin', 'investments', 'limited', '2007', '215', '000', '2015', '304', '000', 'results', 'acquisition', 'amws', 'limited', 'parent', 'company', 'aston', 'martin', 'works', 'f', '26', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', 'limited', '2014', '626', '000', '2015', '669', '000', 'results', 'transfer', 'aston', 'martin', 'works', 'limited', 'became', 'part', 'group', '2014', 'amortisation', 'year', 'ended', '31', 'december', '2016', 'relates', 'amortisation', 'goodwill', 'acquisition', 'amws', 'limited', '89', '000', '2015', '89', '000', 'amortisation', 'goodwill', 'within', 'aston', 'martin', 'works', 'limited', '43', '000', '2015', '43', '000', 'no', 'intangible', 'assets', 'company', '11', 'impairment', 'testing', 'goodwill', 'intangible', 'fixed', 'assets', 'indefinite', 'useful', 'lives', 'group', 'goodwill', 'brands', 'acquired', 'business', 'combinations', 'allocated', 'impairment', 'testing', 'purposes', 'one', 'cash', 'generating', 'unit', 'aston', 'martin', 'lagonda', 'group', 'limited', 'business', 'represents', 'lowest', 'level', 'within', 'group', 'goodwill', 'brands', 'monitored', 'internal', 'purposes', 'group', 'tests', 'carrying', 'value', 'goodwill', 'brands', 'cash', 'generating', 'unit', 'level', 'impairment', 'annually', 'frequently', 'indications', 'goodwill', 'brands', 'might', 'impaired', 'year', 'end', 'reporting', 'date', 'review', 'undertaken', 'value', 'use', 'basis', 'assessing', 'whether', 'carrying', 'values', 'goodwill', 'brands', 'supported', 'net', 'present', 'value', 'future', 'cash', 'flows', 'derived', 'assets', 'key', 'assumptions', 'used', 'value', 'use', 'calculations', 'calculation', 'value', 'use', 'cash', 'generating', 'unit', 'sensitive', 'following', 'assumptions', 'cash', 'flows', 'projected', 'based', 'actual', 'operating', 'results', 'four', 'year', 'business', 'plan', 'beyond', 'cash', 'flows', 'extrapolated', 'using', 'constant', 'growth', 'rate', '2', 'per', 'annum', 'key', 'assumptions', 'revenue', 'gross', 'margin', 'fixed', 'costs', 'within', 'forecasts', 'based', 'past', 'experience', 'current', 'business', 'strategy', 'discount', 'rates', 'calculated', 'using', 'weighted', 'average', 'cost', 'capital', 'approach', 'reflect', 'individual', 'nature', 'specific', 'risks', 'relating', 'business', 'market', 'operates', 'pre', 'tax', 'discount', 'rate', 'used', '12', '0', 'exchange', 'rate', '1', '30', 'used', 'forecast', 'sensitivity', 'analysis', 'pre', 'tax', 'discount', 'rate', 'would', 'need', 'increase', '17', '0', 'order', 'assets', 'become', 'impaired', 'rate', 'growth', '2', 'per', 'annum', 'beyond', 'four', 'year', 'plan', 'would', 'need', 'decline', '7', '0', 'order', 'assets', 'become', 'impaired', 'exchange', 'rate', 'would', 'need', 'increase', '2', '47', 'currencies', 'moving', 'line', 'order', 'assets', 'become', 'impaired', 'f', '27', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', '12', 'property', 'plant', 'equipment', 'group', 'freehold', 'land', 'buildings', '000', 'plant', 'machinery', 'fixtures', 'fittings', 'tooling', '000', 'motor', 'vehicles', '000', 'total', '000', 'cost', 'balance', '1', 'january', '2015', 'additions', 'disposals', 'effect', 'movements', 'exchange', 'rates', '68', '145', '23', '155', '307', '293', '38', '517', '184', '29', '888', '376', '326', '38', '517', '50', '257', '5', '189', 'balance', '31', 'december', '2015', '67', '967', '345', '597', '833', '414', '397', 'balance', '1', 'january', '2016', 'additions', 'disposals', 'effect', 'movements', 'exchange', 'rates', '67', '967', '24', '461', '345', '597', '68', '256', '267', '256', '833', '414', '397', '68', '280', '150', '417', '18', '735', 'balance', '31', 'december', '2016', '68', '452', '413', '842', '701', '482', '995', 'depreciation', 'balance', '1', 'january', '2015', 'charge', 'year', 'disposals', 'effect', 'movements', 'exchange', 'rates', '15', '879', '2', '305', '9', '35', '185', '994', '43', '990', '101', '37', '74', '201', '947', '25', '46', '320', '110', '2', '74', 'balance', '31', 'december', '2015', '18', '140', '229', '846', '97', '248', '083', 'balance', '1', 'january', '2016', 'charge', 'year', 'disposals', 'effect', 'movements', 'exchange', 'rates', '18', '140', '2', '334', '122', '229', '846', '35', '951', '141', '97', '248', '083', '29', '38', '314', '14', '277', 'balance', '31', 'december', '2016', '20', '596', '265', '938', '140', '286', '674', 'carrying', 'amounts', '1', 'january', '2015', '52', '266', '121', '299', '814', '174', '379', '31', 'december', '2015', '49', '827', '115', '751', '736', '166', '314', '1', 'january', '2016', '49', '827', '115', '751', '736', '166', '314', '31', 'december', '2016', '47', '856', '147', '904', '561', '196', '321', 'detailed', 'note', '18', 'property', 'plant', 'equipment', 'provides', 'security', 'fixed', 'floating', 'charge', 'favour', 'holders', '9', '25', 'senior', 'secured', 'notes', 'assets', 'course', 'construction', 'cost', 'nil', '2015', '125', '000', 'included', 'within', 'land', 'buildings', 'assets', 'course', 'construction', 'cost', '55', '539', '000', '2015', '20', '113', '000', 'included', 'within', 'plant', 'machinery', 'capital', 'expenditure', 'contracts', 'value', '57', '184', '000', 'placed', 'not', 'provided', '31', 'december', '2016', '2015', '43', '879', '000', 'no', 'property', 'plant', 'equipment', 'company', '2015', 'nil', 'f', '28', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', '13', 'investments', 'investments', 'subsidiary', 'undertakings', 'company', 'subsidiary', 'undertakings', 'holding', 'aston', 'martin', 'capital', 'limited', 'ordinary', 'aston', 'martin', 'investments', 'limited', 'aston', 'martin', 'lagonda', 'group', 'limited', 'aston', 'martin', 'lagonda', 'north', 'america', 'incorporated', 'lagonda', 'properties', 'limited', 'aston', 'martin', 'lagonda', 'pension', 'trustees', 'limited', 'nature', 'business', 'ordinary', '100', 'financing', 'company', 'holding', 'senior', 'secured', 'notes', '100', 'holding', 'company', 'ordinary', '100', 'holding', 'company', 'ordinary', 'ordinary', '100', 'luxury', 'sports', 'car', 'distributor', '100', 'dormant', 'company', 'ordinary', '100', 'trustee', 'aston', 'martin', 'lagonda', 'limited', 'pension', 'scheme', '100', 'manufacture', 'sale', 'luxury', 'sports', 'cars', 'sale', 'parts', '100', 'provision', 'engineering', 'sales', 'marketing', 'services', '100', 'dormant', 'company', '100', 'sale', 'servicing', 'luxury', 'sports', 'cars', 'sale', 'parts', '100', 'dormant', 'company', 'aston', 'martin', 'lagonda', 'limited', 'ordinary', 'aston', 'martin', 'lagonda', 'europe', 'ordinary', 'gmbh', 'aml', 'overseas', 'services', 'limited', 'ordinary', 'aston', 'martin', 'italy', 'r', 'l', 'ordinary', 'aml', 'italy', 'r', 'l', 'aston', 'martin', 'lagonda', 'china', 'automobile', 'distribution', 'co', 'ltd', 'nurburgring', 'racing', 'limited', 'aston', 'martin', 'japan', 'gk', 'proportion', 'voting', 'rights', 'shares', 'held', 'ordinary', 'ordinary', 'ordinary', 'ordinary', 'aston', 'martin', 'lagonda', 'asia', 'pacific', 'pte', 'limited', 'ordinary', 'amws', 'limited', 'ordinary', 'aston', 'martin', 'works', 'limited', 'ordinary', '100', 'luxury', 'sports', 'car', 'distributor', '100', 'dormant', 'company', '100', 'operator', 'sales', 'office', 'japan', 'certain', 'countries', 'asia', 'pacific', 'region', '100', 'operator', 'sales', 'office', 'singapore', 'certain', 'countries', 'asia', 'pacific', 'region', '50', 'holding', 'company', '50', 'sale', 'servicing', 'restoration', 'aston', 'martin', 'cars', 'subsidiaries', 'incorporated', 'england', 'wales', 'unless', 'otherwise', 'stated', 'incorporated', 'jersey', 'incorporated', 'united', 'states', 'america', 'incorporated', 'germany', 'incorporated', 'italy', 'incorporated', 'japan', 'incorporated', 'singapore', 'incorporated', 'people', 'republic', 'china', 'held', 'directly', 'aston', 'martin', 'holdings', 'uk', 'limited', 'held', 'indirectly', 'aston', 'martin', 'holdings', 'uk', 'limited', 'f', '29', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', 'shares', 'subsidiary', 'undertakings', '000', 'cost', 'carrying', 'value', '1', 'january', '2016', 'additions', '667', '982', '31', 'december', '2016', '667', '982', '14', 'inventories', 'group', '2016', '000', 'service', 'parts', 'spares', 'production', 'stock', 'work', 'progress', 'finished', 'cars', 'parts', 'resale', '2015', '000', '50', '345', '33', '902', '18', '363', '14', '034', '48', '537', '32', '427', '117', '245', '80', '363', 'finished', 'cars', 'parts', 'resale', 'includes', 'group', 'owned', 'service', 'vehicles', 'net', 'realisable', 'value', '19', '886', '000', '31', 'december', '2015', '11', '777', '000', 'vehicles', 'used', 'employees', 'group', 'not', 'retained', 'group', 'periods', 'excess', 'one', 'year', 'no', 'inventories', 'company', '2015', 'nil', '15', 'trade', 'receivables', 'group', 'company', 'group', '2016', '000', 'amounts', 'included', 'current', 'assets', 'trade', 'receivables', 'owed', 'group', 'undertakings', 'see', 'note', '27', 'owed', 'related', 'parties', 'see', 'note', '27', 'receivables', 'including', 'taxation', 'prepayments', 'amounts', 'included', 'non', 'current', 'assets', 'receivables', 'group', '2015', '000', 'company', '2016', '000', 'company', '2015', '000', '90', '979', '47', '227', '466', '16', '833', '16', '630', '4', '479', '5', '256', '231', '083', '355', '160', '566', '667', '112', '757', '69', '113', '231', '438', '161', '233', '2', '309', '2', '169', 'trade', 'receivables', 'receivables', 'non', 'interest', 'bearing', 'generally', 'terms', '10', '30', 'days', 'amounts', 'financed', 'trade', 'finance', 'facility', 'standard', 'chartered', 'bank', 'plc', 'see', 'terms', '30', '60', 'days', 'due', 'short', 'maturities', 'fair', 'value', 'trade', 'receivables', 'approximates', 'book', 'value', 'majority', 'group', 'receivables', 'derived', 'sales', 'franchised', 'dealers', 'appointed', 'group', 'receivables', 'supported', 'credit', 'risk', 'insurance', 'credit', 'limit', 'franchised', 'dealer', 'set', 'insurance', 'company', 'consultation', 'group', 'credit', 'risk', 'discussed', 'note', '18', 'financed', 'vehicle', 'sales', 'made', 'directly', 'third', 'party', 'aston', 'martin', 'franchised', 'dealers', 'large', 'proportion', 'financed', '125', '000', '000', 'trade', 'finance', 'facility', 'standard', 'chartered', 'bank', 'plc', 'associated', 'credit', 'insurance', 'policy', 'group', 'entered', 'financing', 'agreement', 'standard', 'chartered', 'bank', 'plc', 'whereby', 'standard', 'chartered', 'bank', 'plc', 'advance', 'group', 'sales', 'value', 'vehicles', 'f', '30', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', 'despatched', 'upon', 'receipt', 'transportation', 'documentation', 'substantially', 'risks', 'associated', 'receivables', 'reside', 'standard', 'chartered', 'bank', 'plc', 'therefore', 'financing', 'arrangement', 'treated', 'balance', 'sheet', 'utilisation', 'facility', '31', 'december', '2016', '120', '948', '000', '2015', '84', '415', '000', 'carrying', 'amount', 'trade', 'receivables', 'excluding', 'prepayments', 'denominated', 'following', 'currencies', 'group', '2016', '000', 'group', '2015', '000', 'company', '2016', '000', 'company', '2015', '000', '46', '385', '14', '921', '9', '698', '32', '229', '7', '354', '37', '963', '8', '207', '1', '887', '12', '565', '5', '404', '231', '438', '160', '566', '110', '587', '66', '026', '231', '438', '160', '566', 'sterling', 'chinese', 'renminbi', 'euro', 'us', 'dollar', 'provision', 'impairment', 'receivables', 'trade', 'receivables', 'value', '162', '000', 'impaired', 'group', '31', 'december', '2016', '31', 'december', '2015', '428', '000', 'management', 'review', 'trade', 'receivables', 'individual', 'account', 'basis', 'make', 'provision', 'recoverability', 'doubtful', 'group', '2016', '000', 'group', '2015', '000', 'company', '2016', '000', 'company', '2015', '000', '1', 'january', 'credit', 'charge', 'year', 'utilised', 'effect', 'movements', 'exchange', 'rates', '428', '176', '119', '29', '331', '352', '19', '236', '31', 'december', '162', '428', '31', 'december', '2016', 'trade', 'receivables', '14', '397', '000', 'overdue', 'not', 'impaired', '31', 'december', '2015', '13', '134', '000', 'ageing', 'analysis', 'trade', 'receivables', 'follows', 'group', '2016', '000', 'group', '2015', '000', 'company', '2016', '000', 'company', '2015', '000', '3', 'months', 'overdue', '3', '6', 'months', 'overdue', '6', 'months', 'overdue', '10', '872', '2', '301', '1', '224', '9', '716', '2', '862', '556', 'total', '14', '397', '13', '134', 'no', 'impairments', 'company', 'either', 'year', '16', 'cash', 'cash', 'equivalents', 'group', 'company', 'cash', 'bank', 'hand', 'group', '2016', '000', 'group', '2015', '000', 'company', '2016', '000', 'company', '2015', '000', '101', '718', '65', '562', '1', '1', 'cash', 'bank', 'earns', 'interest', 'floating', 'rates', 'based', 'daily', 'bank', 'deposit', 'rates', 'book', 'value', 'cash', 'cash', 'equivalents', 'approximates', 'fair', 'value', 'f', '31', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', 'cash', 'held', 'following', 'currencies', 'held', 'currencies', 'sterling', 'converted', 'sterling', 'year', 'end', 'exchange', 'rates', 'sterling', 'chinese', 'renminbi', 'euro', 'us', 'dollar', 'group', '2016', '000', 'group', '2015', '000', 'company', '2016', '000', 'company', '2015', '000', '31', '682', '29', '316', '22', '202', '13', '484', '5', '034', '16', '986', '12', '783', '20', '427', '10', '025', '5', '341', '1', '1', '101', '718', '65', '562', '1', '1', 'group', '2016', '000', 'group', '2015', '000', 'company', '2016', '000', 'company', '2015', '000', '93', '137', '1', '690', '246', '066', '63', '633', '483', '116', '177', '150', '215', '1', '019', '178', '192', '988', '340', '893', '180', '293', '151', '234', '179', '180', '17', 'trade', 'payables', 'current', 'trade', 'payables', 'group', 'company', 'trade', 'payables', 'due', 'group', 'undertakings', 'see', 'note', '27', 'due', 'related', 'parties', 'see', 'note', '27', 'accruals', 'payables', 'trade', 'payables', 'non', 'interest', 'bearing', 'group', 'policy', 'pay', 'within', 'stated', 'terms', 'vary', '14', '60', 'days', 'trade', 'payables', 'held', 'amortised', 'cost', 'amortised', 'cash', 'flows', 'expected', 'mature', 'within', '12', 'months', 'year', 'end', '18', 'financial', 'instruments', 'group', 'company', 'group', 'principal', 'financial', 'instruments', 'comprise', 'senior', 'secured', 'notes', 'senior', 'subordinated', 'pik', 'notes', 'preference', 'shares', 'revolving', 'credit', 'facility', 'inventory', 'financing', 'facilities', 'cash', 'forward', 'currency', 'contracts', 'group', 'also', 'trade', 'payables', 'trade', 'receivables', 'arise', 'directly', 'operations', 'short', 'term', 'assets', 'liabilities', 'included', 'currency', 'risk', 'disclosure', 'main', 'risks', 'arising', 'group', 'financial', 'instruments', 'credit', 'risk', 'interest', 'rate', 'risk', 'currency', 'risk', 'liquidity', 'risk', 'shown', 'board', 'directors', 'overall', 'responsibility', 'establishment', 'oversight', 'group', 'risk', 'management', 'framework', 'group', 'risk', 'policies', 'established', 'identify', 'analyse', 'risks', 'faced', 'group', 'set', 'appropriate', 'risk', 'limits', 'controls', 'monitor', 'risk', 'adherence', 'limits', 'board', 'directors', 'oversees', 'management', 'monitor', 'compliance', 'group', 'risk', 'management', 'policies', 'procedures', 'reviews', 'adequacy', 'risk', 'management', 'framework', 'relation', 'risks', 'faced', 'group', 'credit', 'risk', 'group', 'sells', 'vehicles', 'dedicated', 'dealer', 'network', 'dealers', 'outside', 'north', 'america', 'required', 'pay', 'vehicles', 'advance', 'despatch', 'use', 'wholesale', 'financing', 'scheme', 'standard', 'chartered', 'bank', 'plc', 'see', 'liquidity', 'risk', 'dealers', 'within', 'north', 'america', 'allowed', '10', 'day', 'credit', 'terms', 'date', 'invoice', 'use', 'wholesale', 'financing', 'scheme', 'respect', 'sales', 'dealers', 'standard', 'chartered', 'bank', 'plc', 'substantially', 'f', '32', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', 'risk', 'associated', 'wholesale', 'financing', 'scheme', 'addition', 'vehicle', 'sales', 'wholesale', 'financing', 'scheme', 'covered', 'credit', 'risk', 'insurance', 'means', 'third', 'party', 'bears', 'substantially', 'credit', 'risk', 'associated', 'dealers', 'using', 'wholesale', 'finance', 'scheme', 'exceptional', 'circumstances', 'thorough', 'consideration', 'credit', 'history', 'individual', 'dealer', 'group', 'may', 'sell', 'vehicles', 'dealer', 'outside', 'credit', 'risk', 'insurance', 'policy', 'deferred', 'payment', 'terms', 'parts', 'sales', 'represent', 'smaller', 'element', 'total', 'revenue', 'made', 'dealers', '30', 'day', 'credit', 'terms', 'service', 'receivables', 'due', 'payment', 'collection', 'vehicle', 'interest', 'rate', 'risk', 'group', 'uses', 'wholesale', 'financing', 'scheme', 'fund', 'certain', 'vehicle', 'receivables', 'also', 'places', 'surplus', 'cash', 'funds', 'deposit', 'arrangements', 'attract', 'interest', 'rate', 'varies', 'depending', 'libor', 'group', 'entered', 'number', 'arrangements', 'finance', 'group', 'inventory', 'order', 'pipeline', 'aston', 'martin', 'lagonda', 'limited', 'aston', 'martin', 'lagonda', 'china', 'automobile', 'distribution', 'co', 'ltd', 'total', 'borrowings', 'facilities', '31', 'december', '2016', '5', '2m', '2015', '16', '6m', 'interest', 'rate', 'charged', 'facilities', 'determined', 'borrowings', 'made', 'borrowings', 'made', 'periods', 'not', 'excess', 'six', 'months', 'interest', 'rates', 'charged', 'inventory', 'financing', 'based', 'libor', 'interest', 'rates', 'charged', 'order', 'pipeline', 'financing', 'rates', 'charged', 'chinese', 'banks', 'borrowings', 'following', 'table', 'analyses', 'borrowings', 'group', '2016', '000', 'group', '2015', '000', 'company', '2016', '000', 'company', '2015', '000', '5', '153', '16', '597', 'non', 'current', 'senior', 'secured', 'notes', 'senior', 'subordinated', 'pik', 'notes', 'preference', 'shares', '301', '679', '300', '042', '176', '417', '133', '796', '217', '969', '98', '265', '176', '417', '217', '969', '133', '796', '98', '265', 'total', 'non', 'current', 'borrowings', '696', '065', '532', '103', '394', '386', '232', '061', 'total', 'borrowings', '701', '218', '548', '700', '394', '386', '232', '061', 'current', 'bank', 'loans', 'overdrafts', 'june', '2011', 'group', 'issued', '304', '000', '000', '9', '25', 'senior', 'secured', 'notes', 'repayable', 'july', '2018', 'senior', 'secured', 'notes', 'quoted', 'luxembourg', 'stock', 'exchange', 'interest', 'rate', 'payable', 'senior', 'secured', 'notes', 'fixed', '9', '25', 'per', 'annum', 'repayment', 'date', 'described', 'accounting', 'policies', 'borrowings', 'initially', 'recognised', 'fair', 'value', 'less', 'attributable', 'transaction', 'costs', 'subject', 'initial', 'recognition', 'borrowings', 'stated', 'amortised', 'cost', 'difference', 'cost', 'redemption', 'value', 'recognised', 'statement', 'comprehensive', 'income', 'period', 'borrowings', 'effective', 'interest', 'basis', 'senior', 'secured', 'notes', 'secured', 'fixed', 'floating', 'charges', 'certain', 'assets', 'group', 'attached', 'senior', 'secured', 'notes', '40', '000', '000', 'revolving', 'credit', 'facility', 'undrawn', '31', 'december', '2016', '31', 'december', '2015', 'group', 'entered', 'number', 'arrangements', 'finance', 'group', 'inventory', 'order', 'pipeline', 'aston', 'martin', 'lagonda', 'limited', 'aston', 'martin', 'lagonda', 'china', 'automobile', 'distribution', 'co', 'ltd', 'total', 'borrowings', 'facilities', '31', 'december', '2016', '5', '153', '000', 'year', 'ended', '31', 'december', '2015', '16', '597', '000', 'f', '33', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', 'march', '2014', 'group', 'issued', '165', '000', '000', '99', '620', '000', 'senior', 'subordinated', 'pik', 'notes', 'repayable', 'july', '2018', 'interest', 'rate', 'payable', 'senior', 'secured', 'pik', 'notes', '10', '25', 'per', 'annum', 'interest', 'charged', 'semi', 'annually', 'arrears', 'january', '15th', 'july', '15th', 'year', 'interest', 'charged', 'increases', 'principal', 'amount', 'senior', 'subordinated', 'pik', 'notes', 'payable', 'repayment', 'senior', 'subordinated', 'pik', 'notes', 'july', '2018', 'april', '2015', 'april', '2016', 'group', 'issued', '100', '000', '000', 'preference', 'shares', 'redeemable', 'april', '2025', 'preference', 'shares', 'initially', 'recognised', 'fair', 'value', 'date', 'issue', 'par', 'value', 'preference', 'shares', '200', '000', '000', 'rate', 'interest', 'group', 'redeemable', 'cumulative', 'preference', 'shares', '15', 'per', 'annum', 'payable', 'redemption', 'shares', 'borrowing', 'costs', 'nil', '2015', '4', '246', '000', 'capitalised', 'year', 'ended', '31', 'december', '2016', 'includes', 'nil', '2015', '3', '536', '000', 'relating', 'issue', 'preference', 'shares', 'interest', 'rate', 'risks', 'sensitivity', 'june', '2011', 'group', 'issued', '304', '000', '000', '9', '25', 'senior', 'secured', 'notes', 'repayable', 'july', '2018', 'senior', 'secured', 'notes', 'attract', 'fixed', 'rate', 'interest', 'no', 'interest', 'rate', 'risk', 'attached', 'attached', 'senior', 'secured', 'notes', '40', '000', '000', 'revolving', 'credit', 'facility', 'undrawn', '31', 'december', '2016', '31', 'december', '2015', 'group', 'entered', 'number', 'arrangements', 'finance', 'group', 'inventory', 'order', 'pipeline', 'aston', 'martin', 'lagonda', 'limited', 'aston', 'martin', 'lagonda', 'china', 'automobile', 'distribution', 'co', 'ltd', 'total', 'borrowings', 'facilities', '31', 'december', '2016', '5', '153', '000', '2015', '16', '597', '000', 'interest', 'rate', 'charged', 'facilities', 'determined', 'borrowings', 'made', 'borrowings', 'made', 'periods', 'not', 'excess', 'six', 'months', 'march', '2014', 'group', 'issued', '165', '000', '000', '99', '620', '000', 'senior', 'subordinated', 'pik', 'notes', 'repayable', 'july', '2018', 'interest', 'rate', 'payable', 'senior', 'secured', 'pik', 'notes', 'fixed', '10', '25', 'per', 'annum', 'april', '2015', 'april', '2016', 'group', 'issued', '100', '000', '000', 'preference', 'shares', '200', '000', '000', 'total', 'redeemable', 'april', '2025', '304', '000', '000', '9', '25', 'senior', 'secured', 'notes', 'fixed', 'interest', 'rate', '9', '25', 'per', 'annum', 'senior', 'subordinated', 'pik', 'notes', 'fixed', 'interest', 'rate', '10', '25', 'per', 'annum', 'redeemable', 'cumulative', 'preference', 'shares', 'fixed', 'interest', 'rate', '15', 'per', 'annum', 'interest', 'rate', 'payable', 'revolving', 'credit', 'facility', 'determined', 'time', 'drawing', 'facility', 'therefore', 'group', 'no', 'sensitivity', 'increase', 'interest', 'rates', 'based', 'borrowings', 'either', 'year', 'end', 'foreign', 'currency', 'risk', 'management', 'addition', 'functional', 'currency', 'sterling', 'group', 'buys', 'sells', 'currencies', 'group', 'manages', 'movement', 'funds', 'via', 'individual', 'bank', 'accounts', 'relating', 'currency', 'thereby', 'reducing', 'exposure', 'exchange', 'rate', 'fluctuations', 'group', 'may', 'time', 'time', 'use', 'derivative', 'financial', 'instruments', 'manage', 'exchange', 'rate', 'risk', 'significant', 'exposure', 'foreign', 'currency', 'year', 'ends', 'group', 'derivative', 'instruments', 'several', 'currencies', 'form', 'forward', 'exchange', 'contracts', 'f', '34', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', 'foreign', 'currency', 'exposure', 'group', 'sterling', 'equivalents', 'financial', 'assets', 'liabilities', 'denominated', 'foreign', 'currencies', '31', 'december', '2016', '31', 'december', '2015', 'euros', '000', 'us', 'dollars', '000', 'chinese', 'renminbi', '000', '000', 'total', '000', '9', '698', '22', '202', '32', '229', '13', '484', '14', '921', '29', '316', '7', '354', '360', '5', '034', '64', '202', '360', '70', '036', '31', '900', '45', '713', '44', '237', '12', '748', '134', '598', '63', '689', '21', '361', '25', '981', '17', '515', '4', '734', '107', '299', '2', '276', '28', '257', '63', '689', '47', '342', '17', '515', '7', '010', '135', '556', '31', '789', '1', '629', 'euros', '000', 'us', 'dollars', '000', 'chinese', 'renminbi', '000', '000', '000', '1', '887', '20', '427', '12', '565', '115', '10', '025', '8', '207', '12', '783', '5', '404', '5', '341', '28', '063', '115', '48', '576', '22', '314', '22', '705', '20', '990', '10', '745', '76', '754', '13', '979', '3', '921', '9', '784', '8', '978', '2', '722', '29', '600', '9', '784', '13', '979', '13', '705', '8', '978', '2', '722', '39', '384', '8', '335', '9', '000', '31', 'december', '2016', 'financial', 'assets', 'trade', 'receivables', 'foreign', 'exchange', 'contracts', 'cash', 'balances', 'financial', 'liabilities', 'trade', 'payables', 'foreign', 'exchange', 'contracts', 'net', 'balance', 'sheet', 'exposure', '26', '722', '5', '738', '958', '31', 'december', '2015', 'financial', 'assets', 'trade', 'receivables', 'foreign', 'exchange', 'contracts', 'cash', 'balances', 'financial', 'liabilities', 'trade', 'payables', 'foreign', 'exchange', 'contracts', 'net', 'balance', 'sheet', 'exposure', '12', '012', '8', '023', '37', '370', 'following', 'significant', 'exchange', 'rates', 'applied', 'average', 'rate', 'average', 'rate', 'reporting', 'date', 'spot', 'rate', 'reporting', 'date', 'spot', 'rate', '2016', '1', '2443', '9', '1285', '1', '3868', '2015', '1', '3598', '9', '5647', '1', '5328', '2016', '1', '1715', '8', '5872', '1', '2357', '2015', '1', '3568', '9', '6820', '1', '4739', 'euro', 'chinese', 'renminbi', 'us', 'dollar', 'currency', 'risk', 'sensitivity', 'following', 'table', 'demonstrates', 'sensitivity', 'reasonably', 'possible', 'change', 'us', 'dollar', 'exchange', 'rates', 'variables', 'held', 'constant', 'group', 'loss', 'tax', 'due', 'changes', 'fair', 'value', 'monetary', 'assets', 'liabilities', 'increase', 'decrease', 'usd', 'rate', 'us', 'dollar', 'five', 'per', 'cent', 'f', '35', 'effect', 'profit', 'tax', '2016', '000', '7', '692', 'effect', 'profit', 'tax', '2015', '000', '4', '401', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', 'company', 'trades', 'almost', 'entirely', 'sterling', 'therefore', 'no', 'significant', 'foreign', 'currency', 'risk', 'liquidity', 'risk', 'group', 'seeks', 'manage', 'liquidity', 'risk', 'ensure', 'sufficient', 'liquidity', 'available', 'meet', 'foreseeable', 'needs', 'invest', 'cash', 'assets', 'safely', 'profitably', 'group', 'uses', 'wholesale', 'financing', 'scheme', 'finance', 'certain', 'vehicle', 'sales', 'despatch', 'vehicle', '31', 'december', '2016', '120', '948', '000', '2015', '84', '415', '000', 'received', 'sales', 'invoices', 'wholesale', 'finance', 'scheme', 'credit', 'insurance', 'supporting', 'facility', 'renewed', 'two', 'year', 'period', 'august', '2018', 'june', '2011', 'group', 'issued', '304', '000', '000', '9', '25', 'senior', 'secured', 'notes', 'repayable', 'july', '2018', 'group', 'also', 'access', '40', '000', '000', 'revolving', 'credit', 'facility', '2018', 'undrawn', '31', 'december', '2016', '31', 'december', '2015', 'group', 'also', 'facilities', 'finance', 'certain', 'inventories', 'order', 'pipeline', 'aston', 'martin', 'lagonda', 'limited', 'aston', 'martin', 'lagonda', 'china', 'automobile', 'distribution', 'co', 'ltd', 'total', 'size', 'facilities', '31', 'december', '2016', '26', '800', '000', '2015', '23', '506', '000', 'utilisation', 'facilities', '31', 'december', '2016', '5', '153', '000', '2015', '16', '597', '000', 'march', '2014', 'company', 'issued', 'senior', 'subordinated', 'pik', 'notes', 'value', '165', '000', '000', 'us', 'dollars', '99', '620', '000', 'due', 'repayment', 'july', '2018', '22', 'april', '2015', 'company', 'accepted', 'binding', 'subscriptions', '200', '000', '000', 'preference', 'shares', 'first', 'tranche', '100', '000', '000', 'received', '27', 'april', '2015', 'second', 'tranche', '100', '000', '000', 'drawn', 'april', '2016', 'subscriptions', 'also', 'included', 'warrants', 'pro', 'rata', 'allocation', 'p', 'shares', 'non', 'voting', 'ordinary', 'shares', 'corresponding', '4', 'current', 'fully', 'diluted', 'share', 'capital', 'company', 'table', 'summarises', 'maturity', 'profile', 'group', 'financial', 'liabilities', '31', 'december', '2016', 'based', 'contractual', 'undiscounted', 'payments', 'less', 'contractual', 'cash', 'demand', '3', 'months', '3', '12', 'months', '1', '5', 'years', '5', 'years', 'flows', 'total', '000', '000', '000', '000', '000', '000', 'non', 'derivative', 'financial', 'liabilities', 'bank', 'loans', 'overdrafts', 'senior', 'secured', 'notes', 'senior', 'subordinated', 'pik', 'notes', 'preference', 'shares', 'trade', 'payables', 'derivative', 'financial', 'liabilities', 'forward', 'exchange', 'contracts', '1', '302', '14', '060', '3', '973', '14', '060', '340', '893', '340', '893', '3', '655', '14', '991', '9', '611', '28', '257', '359', '910', '33', '024', '547', '760', '756', '343', '1', '697', '037', '332', '120', '5', '275', '360', '240', '206', '029', '756', '343', '206', '029', '756', '343', 'included', 'table', 'respect', 'group', 'interest', 'bearing', 'loans', 'borrowings', 'carrying', 'value', '701', '128', '000', 'f', '36', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', 'table', 'summarises', 'maturity', 'profile', 'group', 'financial', 'liabilities', '31', 'december', '2015', 'based', 'contractual', 'undiscounted', 'payments', 'less', 'contractual', 'cash', 'demand', '3', 'months', '3', '12', 'months', '1', '5', 'years', '5', 'years', 'flows', 'total', '000', '000', '000', '000', '000', '000', 'non', 'derivative', 'financial', 'liabilities', 'bank', 'loans', 'overdrafts', 'senior', 'secured', 'notes', 'senior', 'subordinated', 'pik', 'notes', 'preference', 'shares', 'trade', 'payables', 'derivative', 'financial', 'liabilities', 'forward', 'exchange', 'contracts', '8', '804', '14', '060', '8', '003', '14', '060', '483', '179', '810', '180', '293', '2', '070', '6', '130', '1', '584', '9', '784', '483', '204', '744', '28', '193', '534', '557', '404', '556', '1', '172', '533', '360', '240', '16', '807', '388', '360', '172', '733', '404', '556', '172', '733', '404', '556', 'included', 'table', 'respect', 'group', 'interest', 'bearing', 'loans', 'borrowings', 'carrying', 'value', '548', '700', '000', 'table', 'summarises', 'maturity', 'profile', 'company', 'financial', 'liabilities', '31', 'december', '2016', 'based', 'contractual', 'undiscounted', 'payments', 'less', 'contractual', 'cash', 'demand', '3', 'months', '3', '12', 'months', '1', '5', 'years', '5', 'years', 'flows', 'total', '000', '000', '000', '000', '000', '000', 'non', 'derivative', 'financial', 'liabilities', 'senior', 'subordinated', 'pik', 'notes', 'preference', 'shares', 'trade', 'payables', '150', '215', '1', '019', '150', '215', '1', '019', '206', '029', '756', '343', '206', '029', '756', '343', '151', '234', '206', '029', '756', '343', '1', '113', '606', 'table', 'summarises', 'maturity', 'profile', 'company', 'financial', 'liabilities', '31', 'december', '2015', 'based', 'contractual', 'undiscounted', 'payments', 'less', 'contractual', 'cash', 'demand', '3', 'months', '3', '12', 'months', '1', '5', 'years', '5', 'years', 'flows', 'total', '000', '000', '000', '000', '000', '000', 'non', 'derivative', 'financial', 'liabilities', 'senior', 'subordinated', 'pik', 'notes', 'preference', 'shares', 'trade', 'payables', '178', '192', '988', '178', '192', '988', 'f', '37', '172', '733', '404', '556', '172', '733', '404', '556', '179', '180', '172', '733', '404', '556', '756', '469', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', 'estimation', 'fair', 'values', 'forward', 'currency', 'contracts', 'carried', 'fair', 'value', 'valued', 'using', 'pricing', 'models', 'discounted', 'cash', 'flow', 'techniques', 'based', 'assumptions', 'provided', 'standard', 'chartered', 'bank', 'plc', '9', '25', 'senior', 'secured', 'notes', 'issued', '2011', 'valued', 'amortised', 'cost', 'fair', 'value', '9', '25', 'senior', 'secured', 'notes', 'determined', 'reference', 'quoted', 'price', '31', 'december', '9', '25', 'senior', 'secured', 'notes', 'quoted', 'luxembourg', 'stock', 'exchange', 'bourse', 'de', 'luxembourg', '31', 'december', '2016', 'fair', 'value', 'senior', 'secured', 'notes', '311', '600', '000', '2015', '304', '000', '000', '31', 'december', '2016', 'effective', 'interest', 'rate', 'senior', 'secured', 'notes', '10', '25', '2015', '10', '25', 'receivables', 'payables', 'carrying', 'amount', 'deemed', 'reflect', 'fair', 'value', 'ifrs', '7', 'assets', 'liabilities', 'classified', 'way', 'fair', 'value', 'calculated', 'interest', 'bearing', 'loans', 'borrowings', 'considered', 'level', '1', 'liabilities', 'remaining', 'financial', 'assets', 'liabilities', 'considered', 'level', '2', 'assets', 'liabilities', 'ifrs', '7', 'defines', 'level', '2', 'assets', 'liabilities', 'inputs', 'quoted', 'prices', 'included', 'within', 'level', '1', 'observable', 'asset', 'liability', 'either', 'directly', 'e', 'prices', 'indirectly', 'e', 'derived', 'prices', 'capital', 'management', 'board', 'policy', 'maintain', 'strong', 'capital', 'base', 'maintain', 'investor', 'creditor', 'confidence', 'sustain', 'future', 'development', 'business', 'given', 'objective', 'group', 'capital', 'management', 'ensure', 'maintains', 'healthy', 'capital', 'ratios', 'order', 'support', 'business', 'maximise', 'shareholder', 'value', 'capital', 'structure', 'group', 'consists', 'debt', 'includes', 'borrowings', 'disclosed', 'note', 'cash', 'cash', 'equivalents', 'equity', 'attributable', 'equity', 'holders', 'parent', 'comprising', 'share', 'capital', 'reserves', 'disclosed', 'notes', '22', '23', 'consolidated', 'statements', 'changes', 'equity', 'no', 'changes', 'made', 'objectives', 'policies', 'processes', 'either', 'year', '19', 'obligations', 'leases', 'group', 'group', 'entered', 'commercial', 'leases', 'certain', 'properties', 'items', 'machinery', 'leases', 'duration', '1', '8', 'years', 'future', 'minimum', 'rentals', 'payable', 'non', 'cancellable', 'operating', 'leases', 'follows', 'not', 'later', 'one', 'year', 'one', 'year', 'not', 'five', 'years', 'five', 'years', '2016', '000', '2015', '000', '5', '722', '15', '563', '17', '781', '4', '054', '9', '618', '6', '322', '39', '066', '19', '994', 'none', 'leases', 'contain', 'contingent', 'rents', 'no', 'obligations', 'leases', 'company', '2015', 'nil', 'f', '38', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', '20', 'provisions', 'liabilities', 'charges', 'group', 'warranty', 'service', 'plans', '2016', '000', 'beginning', 'year', 'additions', 'utilisation', 'effect', 'movements', 'exchange', 'rates', '14', '579', '12', '075', '13', '364', '411', 'end', 'year', '13', '701', 'analysed', 'current', 'non', 'current', '7', '631', '6', '070', '13', '701', 'warranty', 'service', 'plans', 'provision', 'represents', 'costs', 'provided', 'respect', 'group', 'warranty', 'scheme', 'provision', '13', '701', '000', '2015', '14', '579', '000', 'recognised', 'expected', 'claims', 'based', 'past', 'experience', 'level', 'actual', 'warranty', 'claims', 'received', 'expected', 'substantially', 'utilised', 'within', 'next', 'three', 'years', 'no', 'provisions', 'liabilities', 'charges', 'company', '21', 'pension', 'obligations', 'group', 'defined', 'contribution', 'scheme', 'group', 'opened', 'defined', 'contribution', 'scheme', 'june', '2011', 'total', 'expense', 'relating', 'scheme', 'current', 'year', '2', '437', '000', '2015', '1', '831', '000', 'outstanding', 'contributions', 'year', 'end', '240', '000', '2015', '178', '000', 'defined', 'benefit', 'scheme', 'group', 'operates', 'defined', 'benefit', 'pension', 'scheme', 'providing', 'benefits', 'based', 'final', 'pensionable', 'salary', 'scheme', 'closed', 'new', 'entrants', '31', 'may', '2011', 'benefits', 'existing', 'members', 'not', 'affected', 'closure', 'scheme', 'defined', 'contribution', 'scheme', 'available', 'new', 'employees', 'date', 'scheme', 'assets', 'invested', 'standard', 'life', 'pension', 'limited', 'legal', 'general', 'assurance', 'mfs', 'international', 'uk', 'limited', 'eaton', 'vance', 'management', 'international', 'limited', 'morgan', 'stanley', 'investment', 'management', 'limited', 'majedie', 'asset', 'management', 'scheme', 'administered', 'buck', 'consultants', 'administration', 'investment', 'limited', 'assets', 'scheme', 'held', 'separately', 'group', 'pension', 'scheme', 'operates', 'regulatory', 'framework', 'pensions', 'act', '2004', 'trustee', 'primary', 'responsibility', 'governance', 'scheme', 'benefit', 'payments', 'trustee', 'administered', 'funds', 'scheme', 'assets', 'held', 'trust', 'governed', 'uk', 'regulation', 'responsibility', 'governance', 'scheme', 'lies', 'mainly', 'trustee', 'trustee', 'comprised', 'representatives', 'group', 'members', 'scheme', 'pension', 'scheme', 'exposes', 'group', 'following', 'risks', 'asset', 'volatility', 'scheme', 'statement', 'investment', 'principles', 'targets', '55', 'return', 'enhancing', 'assets', '45', 'risk', 'reducing', 'assets', 'trustee', 'monitors', 'appropriateness', 'scheme', 'investment', 'strategy', 'consultation', 'group', 'going', 'basis', 'f', '39', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', 'inflation', 'risk', 'majority', 'benefits', 'linked', 'inflation', 'increases', 'inflation', 'lead', 'higher', 'liabilities', 'although', 'cases', 'caps', 'place', 'protect', 'extreme', 'inflation', 'longevity', 'increases', 'life', 'expectancy', 'increase', 'period', 'benefits', 'expected', 'payable', 'increases', 'value', 'placed', 'scheme', 'liabilities', 'no', 'scheme', 'amendments', 'settlements', 'either', 'years', 'ended', '31', 'december', '2016', '31', 'december', '2015', 'no', 'curtailment', 'events', 'year', 'ended', '31', 'december', '2016', 'resulted', 'past', 'service', 'credit', 'scheme', '2015', '287', '000', 'projected', 'unit', 'method', 'used', 'determine', 'liabilities', 'pension', 'cost', 'assessed', 'accordance', 'advice', 'independent', 'qualified', 'actuary', 'using', 'projected', 'unit', 'method', 'latest', 'actuarial', 'valuation', 'scheme', 'effective', 'date', '6', 'april', '2014', 'assumptions', 'make', 'significant', 'effect', 'valuation', 'relating', 'rate', 'return', 'investments', 'rate', 'increase', 'salaries', 'pensions', 'expected', 'longevity', 'assumed', 'pre', 'retirement', 'investment', 'return', 'would', '5', '0', 'per', 'annum', 'post', 'retirement', 'return', '3', '85', 'salary', 'increases', 'would', 'average', '3', '5', 'per', 'annum', 'first', 'calendar', 'year', 'starting', '1', 'january', '2014', '4', '05', 'thereafter', '6', 'april', '2014', 'actuarial', 'valuation', 'actuarial', 'value', 'scheme', 'assets', '178', '667', '000', 'sufficient', 'cover', '102', 'benefits', 'accrued', 'members', 'allowing', 'expected', 'future', 'increases', 'earnings', 'following', 'latest', 'actuarial', 'valuation', 'scheme', '6', 'april', '2014', 'contributions', 'increased', '15', '5', '22', '5', 'group', 'active', 'member', 'not', 'participate', 'salary', 'sacrifice', 'scheme', 'active', 'members', 'participating', 'salary', 'sacrifice', 'scheme', 'employees', 'make', 'no', 'contributions', 'group', 'contribution', '29', 'latest', 'actuarial', 'valuation', '6', 'april', '2014', 'showed', 'surplus', 'scheme', '3', '447', '000', 'although', 'scheme', 'surplus', 'date', 'light', 'deterioration', 'funding', 'position', 'subsequently', 'group', 'agreed', 'maintain', 'recovery', 'plan', 'contributions', 'agreed', '6', 'april', '2011', 'valuation', '2', '750', '000', 'per', 'annum', '6', 'april', '2021', 'estimated', 'group', 'contributions', 'year', 'ending', '31', 'december', '2017', '9', '903', '000', 'full', 'actuarial', 'valuation', 'carried', '6', 'april', '2014', 'qualified', 'independent', 'actuary', 'valuation', 'updated', 'independent', 'qualified', 'actuary', '31', 'december', '2015', '31', 'december', '2016', 'accordance', 'ias', '19r', 'next', 'actuarial', 'valuation', 'due', '6', 'april', '2017', 'principal', 'assumptions', 'used', 'actuary', '31', 'december', '2016', 'discount', 'rate', 'rate', 'increase', 'salaries', 'see', 'rate', 'revaluation', 'deferment', 'rate', 'increase', 'pensions', 'payment', 'attracting', 'lpi', 'expected', 'return', 'scheme', 'assets', 'rpi', 'inflation', 'assumption', 'cpi', 'inflation', 'assumption', '2', '70', '3', '40', '2', '40', '3', '20', '2', '70', '3', '40', '2', '40', '31', 'december', '2015', '3', '95', '3', '20', '2', '20', '3', '10', '3', '95', '3', '20', '2', '20', 'salary', 'escalation', 'assumption', 'applies', '2021', 'salary', 'assumption', 'increase', '2016', '2021', '3', 'per', 'annum', 'salary', 'increase', '3', '4', 'table', 'applies', '2021', 'group', 'inflation', 'assumption', 'reflects', 'long', 'term', 'expectations', 'not', 'amended', 'short', 'term', 'variability', 'post', 'mortality', 'assumptions', 'allow', 'expected', 'increases', 'longevity', 'current', 'disclosures', 'relate', 'assumptions', 'based', 'longevity', 'years', 'following', 'retirement', 'reporting', 'date', 'future', 'relating', 'employee', 'retiring', '2036', '2016', 'assumptions', '2035', '2015', 'assumptions', 'f', '40', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', 'projected', 'life', 'expectancy', 'age', '65', 'future', 'currently', 'aged', '45', '2016', 'current', 'currently', 'aged', '65', '2016', '24', '4', '28', '0', '22', '8', '26', '1', 'male', 'female', 'future', 'currently', 'current', 'aged', '45', 'currently', 'aged', '65', '2015', '2015', '23', '6', '27', '6', '22', '3', '26', '1', 'years', 'duration', 'liabilities', 'years', '31', 'december', '2016', 'duration', 'liabilities', 'years', '31', 'december', '2015', '28', '27', 'following', 'table', 'provide', 'information', 'composition', 'fair', 'value', 'assets', 'scheme', 'asset', 'class', '31', 'december', '31', 'december', '31', 'december', '31', 'december', '31', 'december', '31', 'december', '2016', '2016', '2016', '2015', '2015', '2015', 'quoted', 'unquoted', 'total', 'quoted', 'unquoted', 'total', '000', '000', '000', '000', '000', '000', 'uk', 'equities', 'overseas', 'equities', 'property', 'index', 'linked', 'gilts', 'corporate', 'bonds', 'diversified', 'alternatives', 'high', 'yield', 'bonds', 'cash', 'insurance', 'policies', '41', '024', '44', '817', '55', '927', '22', '084', '52', '318', '41', '024', '44', '817', '22', '084', '55', '927', '52', '318', '31', '968', '34', '946', '43', '918', '21', '710', '43', '172', '31', '968', '34', '946', '21', '710', '43', '918', '43', '172', '1', '326', '22', '537', '10', '945', '2', '788', '22', '537', '10', '945', '1', '326', '2', '788', '1', '856', '18', '907', '9', '715', '2', '051', '18', '907', '9', '715', '1', '856', '2', '051', 'total', '143', '094', '110', '672', '253', '766', '112', '688', '95', '555', '208', '243', '31', 'december', '2016', '000', '31', 'december', '2015', '000', 'total', 'fair', 'value', 'scheme', 'assets', 'present', 'value', 'funded', 'obligations', '253', '766', '323', '535', '208', '243', '213', '190', 'liability', 'recognised', 'statement', 'financial', 'position', '69', '769', '4', '947', 'year', 'ended', '31', 'december', '2016', '000', 'year', 'ended', '31', 'december', '2015', '000', 'amounts', 'recognised', 'income', 'statement', 'amounts', 'charged', 'credited', 'operating', 'loss', 'current', 'service', 'cost', 'past', 'service', 'cost', '9', '042', '10', '004', '287', '9', '042', '9', '717', 'amounts', 'charged', 'finance', 'expense', 'net', 'interest', 'income', 'net', 'defined', 'liability', '3', '277', 'total', 'expense', 'recognised', 'income', 'statement', '9', '045', '9', '994', 'f', '41', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', 'changes', 'present', 'value', 'defined', 'benefit', 'pensions', 'obligations', 'analysed', 'follows', 'year', 'ended', '31', 'december', '2016', 'beginning', 'year', 'current', 'service', 'cost', 'past', 'service', 'cost', 'employee', 'contributions', 'interest', 'cost', 'experience', 'losses', 'actuarial', 'losses', 'gains', 'arising', 'changes', 'financial', 'assumptions', 'disbursements', 'actuarial', 'gains', 'arising', 'changes', 'demographic', 'assumptions', 'obligation', 'end', 'year', 'year', 'ended', '31', 'december', '2015', '213', '190', '9', '042', '32', '8', '342', '344', '212', '698', '10', '004', '287', '37', '7', '807', '436', '97', '205', '4', '413', '207', '323', '535', '13', '642', '3', '863', '213', '190', 'changes', 'fair', 'value', 'plan', 'assets', 'analysed', 'follows', 'year', 'ended', '31', 'december', '2016', 'beginning', 'year', 'interest', 'assets', 'employer', 'contributions', 'contributions', 'employees', 'return', 'scheme', 'assets', 'excluding', 'interest', 'income', 'benefits', 'paid', 'fair', 'value', 'end', 'year', 'actual', 'return', 'scheme', 'assets', '208', '243', '8', '339', '10', '198', '32', '31', '367', '4', '413', '253', '766', 'year', 'ended', '31', 'december', '2015', '200', '294', '7', '530', '10', '350', '37', '6', '105', '3', '863', '208', '243', 'year', 'ended', '31', 'december', '2016', 'year', 'ended', '31', 'december', '2015', '39', '706', '1', '425', 'year', 'ended', '31', 'december', '2016', 'year', 'ended', '31', 'december', '2015', 'analysis', 'amounts', 'recognised', 'statement', 'financial', 'position', 'liability', 'beginning', 'year', 'net', 'expense', 'recognised', 'statement', 'comprehensive', 'income', 'employer', 'contributions', 'actuarial', 'loss', 'gain', 'recognised', 'comprehensive', 'income', 'liability', 'recognised', 'statement', 'financial', 'position', 'end', 'year', '4', '947', '12', '404', '9', '045', '10', '198', '65', '975', '9', '994', '10', '350', '7', '101', '69', '769', '4', '947', 'year', 'ended', '31', 'december', '2016', 'year', 'ended', '31', 'december', '2015', 'analysis', 'amount', 'taken', 'comprehensive', 'income', 'return', 'assets', 'greater', 'discount', 'rate', 'experience', 'losses', 'arising', 'funded', 'obligations', 'losses', 'gains', 'arising', 'due', 'changes', 'financial', 'assumptions', 'underlying', 'present', 'value', 'funded', 'obligations', 'gain', 'arising', 'due', 'changes', 'demographic', 'assumptions', '31', '367', '344', '6', '105', '436', '97', '205', '207', '13', '642', 'amount', 'recognised', 'comprehensive', 'income', '65', '975', '7', '101', 'f', '42', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', 'sensitivity', 'analysis', 'principal', 'assumptions', 'used', 'measure', 'scheme', 'liabilities', 'present', 'value', 'benefit', 'obligations', '31', 'december', '2016', '000', 'present', 'value', 'benefit', 'obligations', '31', 'december', '2015', '000', 'decrease', '0', '25', 'increase', '0', '25', '346', '862', '340', '537', '227', '257', '221', '754', 'increase', 'one', 'year', '335', '825', '219', '759', 'change', 'assumption', 'discount', 'rate', 'rate', 'inflation', 'life', 'expectancy', 'increased', 'approximately', '1', 'year', 'applies', 'retail', 'prices', 'index', 'consumer', 'prices', 'index', 'inflation', 'assumptions', 'assumption', 'salary', 'increase', 'assumption', 'also', 'increase', '0', '4', 'per', 'annum', '2020', '21', 'projected', 'unit', 'method', 'applied', 'calculating', 'defined', 'benefit', 'obligations', 'funding', 'levels', 'monitored', 'regular', 'basis', 'trustee', 'group', 'ensure', 'security', 'member', 'benefits', 'next', 'triennial', 'valuation', '6', 'april', '2017', 'due', 'completed', 'june', '2018', 'line', 'scheme', 'specific', 'funding', 'requirements', 'pensions', 'act', '2004', 'part', 'valuation', 'trustee', 'group', 'review', 'adequacy', 'contributions', 'paid', 'scheme', 'expected', 'future', 'benefit', 'payments', 'year', '1', '2017', '2016', 'year', '2', '2018', '2017', 'year', '3', '2019', '2018', 'year', '4', '2020', '2019', 'year', '5', '2021', '2020', 'years', '6', '10', '2021', '2025', 'years', '6', '10', '2022', '2026', 'year', 'ended', '31', 'december', '2016', '000s', 'year', 'ended', '31', 'december', '2015', '000s', '2', '478', '2', '543', '2', '868', '3', '073', '3', '393', '29', '081', '2', '235', '2', '044', '2', '541', '2', '848', '3', '049', '25', '048', 'year', 'ended', '31', 'december', '2016', 'year', 'ended', '31', 'december', '2015', 'history', 'scheme', 'experience', 'present', 'value', 'scheme', 'liabilities', 'fair', 'value', 'scheme', 'assets', 'deficit', 'scheme', 'taking', 'account', 'effect', 'paragraph', '64', 'ias19', 'experience', 'gains', 'losses', 'scheme', 'assets', 'percentage', 'scheme', 'assets', 'experience', 'losses', 'scheme', 'liabilities', 'percentage', 'present', 'value', 'scheme', 'liabilities', 'total', 'amount', 'recognised', 'comprehensive', 'income', 'percentage', 'present', 'value', 'scheme', 'liabilities', '323', '535', '253', '766', '213', '190', '208', '243', '69', '769', '31', '367', '12', '4', '344', '0', '1', '65', '975', '20', '4', '4', '947', '6', '105', '2', '9', '436', '0', '2', '7', '101', '3', '3', '22', 'share', 'capital', 'group', 'company', 'allotted', 'called', 'fully', 'paid', '3', '069', '085', 'ordinary', 'shares', '0', '001', '2015', '3', '069', '085', 'ordinary', 'shares', '0', '001', '162', '521', 'shares', '0', '001', '2015', '162', '521', 'f', '43', '2016', '000', '2015', '000', '3', '3', '3', '3', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', 'shares', 'classified', 'liabilities', 'shares', 'classified', 'shareholders', 'funds', '2016', '000', '2015', '000', '3', '3', '3', '3', 'april', '2014', '76', '180', 'ordinary', 'shares', 'issued', 'prestige', 'motor', 'holdings', 'controlled', 'lnvestindustrial', 'v', 'l', 'p', 'consideration', '3', '750', '000', 'part', 'share', 'subscription', 'agreement', 'dated', '5', 'december', '2012', 'september', '2014', '33', '650', 'additional', 'shares', 'issued', 'daimler', 'ag', 'consideration', '33', '65', 'giving', 'aston', 'martin', 'holdings', 'uk', 'limited', 'subsidiaries', 'access', 'certain', 'technologies', 'use', 'next', 'generation', 'vehicles', 'shares', 'cash', 'issued', 'prestige', 'motor', 'holdings', '2017', 'dependent', 'upon', 'deficit', 'defined', 'benefit', 'pension', 'scheme', 'four', 'year', 'period', 'june', '2017', 'holders', 'ordinary', 'shares', 'entitled', 'receive', 'dividends', 'declared', 'time', 'time', 'entitled', 'one', 'vote', 'per', 'share', 'meetings', 'company', 'holders', 'shares', 'entitled', 'receive', 'dividends', 'declared', 'time', 'time', 'not', 'entitled', 'vote', 'meetings', 'company', '23', 'reserves', 'share', 'premium', 'share', 'premium', '368', '818', '000', 'represents', 'following', 'transactions', '291', '512', '000', 'represents', 'difference', 'par', 'value', 'share', 'capital', 'issued', '1', 'june', '2007', '31', 'december', '2009', 'amount', 'subscribed', 'shares', 'june', '2011', 'board', 'directors', 'approved', 'reduction', 'capital', 'whereby', '100', '000', '000', 'share', 'premium', 'account', 'transferred', 'retained', 'earnings', 'order', 'create', 'distributable', 'reserves', 'within', 'aston', 'martin', 'holdings', 'uk', 'limited', 'parent', 'company', 'group', 'enable', 'redemption', 'preference', 'shares', 'payment', 'dividend', 'april', '2013', 'shares', 'issued', 'prestige', 'motor', 'holdings', 'controlled', 'lnvestindustrial', 'v', 'l', 'p', 'consideration', '150', '000', '000', 'par', 'value', '1', '000', 'resulting', 'share', 'premium', '149', '999', '000', 'december', '2013', 'shares', 'issued', 'daimler', 'ag', 'nominal', 'consideration', 'share', 'premium', '16', '785', '000', 'april', '2014', 'shares', 'issued', 'prestige', 'holdings', 'controlled', 'lnvestindustrial', 'v', 'l', 'p', 'nominal', 'consideration', 'share', 'premium', '3', '750', '000', 'part', 'share', 'subscription', 'agreement', 'dated', '5', 'december', '2012', 'september', '2014', 'shares', 'issued', 'daimler', 'ag', 'nominal', 'consideration', 'share', 'premium', '4', '417', '000', 'april', '2015', 'group', 'received', 'settlement', 'balance', 'due', 'partly', 'paid', 'shares', 'gave', 'rise', 'share', 'premium', '2', '355', '000', 'share', 'warrants', 'share', 'warrants', '18', '462', '000', 'arose', 'follows', 'april', '2015', 'april', '2016', 'group', 'issued', '100', '000', '000', 'preference', 'shares', 'subscriptions', 'included', 'warrants', 'pro', 'rata', 'allocation', 'p', 'shares', 'non', 'voting', 'ordinary', 'shares', 'corresponding', '4', 'fully', 'diluted', 'share', 'capital', 'company', 'fair', 'value', '9', '043', '000', 'april', '2015', '9', '419', '000', 'april', '2016', 'capital', 'reserve', 'capital', 'reserve', '94', '064', '000', 'arose', 'follows', 'year', 'ended', 'december', '2008', 'capital', 'contribution', 'company', 'existing', 'shareholders', '39', '069', '000', 'plus', 'share', 'based', 'payment', 'charge', '5', '495', '000', 'valuation', 'shares', 'options', 'granted', 'mr', 'david', 'richards', 'dr', 'ulrich', 'bez', 'relation', 'services', 'provided', 'connection', 'acquisition', 'aston', 'martin', 'lagonda', 'group', 'see', 'note', '25', 'f', '44', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', 'june', '2011', 'group', 'redeemed', '48', '400', '000', 'preference', 'shares', 'transferred', 'equivalent', 'amount', 'retained', 'earnings', 'capital', 'redemption', 'reserve', 'april', '2014', 'group', 'acquired', '50', 'controlling', 'interest', 'amws', 'limited', 'parent', 'company', 'aston', 'martin', 'works', 'limited', 'increase', 'capital', 'reserve', '1', '100', '000', 'represents', 'difference', 'consideration', 'paid', 'acquisition', 'fair', 'value', 'disposal', '40', 'interest', 'amws', 'limited', 'group', 'owned', 'date', 'acquisition', 'translation', 'reserve', 'foreign', 'currency', 'translation', 'reserve', 'used', 'record', 'exchange', 'differences', 'arising', 'translation', 'financial', 'statements', 'foreign', 'subsidiaries', '24', 'additional', 'cash', 'flow', 'information', 'group', 'analysis', 'group', 'net', 'debt', 'year', 'ended', '31', 'december', '2016', '1', 'january', '2016', '000', 'cash', 'cash', 'equivalents', 'bank', 'loans', 'overdrafts', 'senior', 'secured', 'notes', 'senior', 'subordinated', 'pik', 'notes', 'preference', 'shares', 'cash', 'flow', '000', 'exchange', 'differences', '000', 'non', 'cash', 'movements', '000', '31', 'december', '2016', '000', '65', '562', '27', '991', '16', '597', '13', '787', '300', '042', '133', '796', '98', '265', '100', '000', '8', '165', '2', '343', '27', '607', '1', '637', '15', '014', '19', '704', '101', '718', '5', '153', '301', '679', '176', '417', '217', '969', '483', '138', '21', '785', '36', '355', '599', '500', '58', '222', 'year', 'ended', '31', 'december', '2015', '1', 'january', '2015', '000', 'cash', 'cash', 'equivalents', 'bank', 'loans', 'overdrafts', 'senior', 'secured', 'notes', 'senior', 'subordinated', 'pik', 'notes', 'preference', 'shares', 'cash', 'flow', '000', 'exchange', 'differences', '000', 'non', 'cash', 'movements', '000', '31', 'december', '2015', '000', '89', '250', '19', '808', '298', '403', '22', '939', '3', '751', '749', '540', '1', '639', '65', '562', '16', '597', '300', '042', '114', '195', '96', '464', '7', '129', '12', '472', '1', '801', '133', '796', '98', '265', '343', '156', '115', '652', '8', '418', '15', '912', '483', '138', '25', 'share', 'based', 'payments', 'company', 'two', 'share', 'option', 'schemes', 'operation', 'revenue', 'customs', 'approved', 'scheme', 'unapproved', 'scheme', 'schemes', 'no', 'vesting', 'conditions', 'equitysettled', 'earliest', 'exercise', 'date', 'schemes', '18', 'october', '2007', 'approved', 'scheme', 'no', 'expiry', 'date', 'unapproved', 'scheme', 'expiry', 'date', '18', 'october', '2027', 'f', '45', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', 'movements', 'share', 'options', 'approved', 'scheme', '2016', 'number', 'shares', 'unapproved', 'scheme', '2016', 'number', 'shares', 'approved', 'scheme', '2015', 'number', 'shares', 'unapproved', 'scheme', '2015', 'number', 'shares', '1', 'january', 'exercised', 'year', '21', '714', '21', '714', '54', '285', '32', '571', '21', '714', '31', 'december', '21', '714', '21', '714', '21', '714', '21', '714', 'weighted', 'average', 'exercise', 'price', '1', 'january', 'exercised', 'year', '31', 'december', '7230', 'p', '7230', 'p', '0', '1', 'p', '0', '1', 'p', '7230', 'p', '7230', 'p', '7230', 'p', '0', '1', 'p', '0', '1', 'p', 'average', 'weighted', 'exercise', 'price', '31', 'december', '2016', '3615p', '31', 'december', '2015', '3615p', 'share', 'options', 'issued', 'return', 'services', 'relation', 'acquisition', 'aston', 'martin', 'lagonda', 'group', 'limited', 'period', 'ended', '31', 'december', '2007', 'therefore', 'fair', 'value', 'options', 'issued', '5', '495', '000', 'recognised', 'goodwill', '26', 'contingent', 'liabilities', 'capital', 'commitments', 'group', 'capital', 'expenditure', 'contracts', 'value', '57', '184', '000', '2015', '43', '879', '000', 'placed', 'not', 'provided', '31', 'december', '2016', 'company', 'company', 'guarantor', '9', '25', 'senior', 'secured', 'notes', 'issued', 'aston', 'martin', 'capital', 'limited', 'june', '2011', 'aston', 'martin', 'capital', 'limited', 'subsidiary', 'company', 'see', 'note', '18', 'information', '27', 'related', 'party', 'transactions', 'group', 'transactions', 'group', 'undertakings', 'related', 'parties', 'eliminated', 'consolidation', 'accordingly', 'not', 'disclosed', 'group', 'entered', 'transactions', 'ordinary', 'course', 'business', 'entities', 'significant', 'influence', 'group', 'related', 'parties', 'group', 'transactions', 'entered', 'trading', 'balances', 'outstanding', 'year', 'end', 'entities', 'significant', 'influence', 'group', 'related', 'parties', 'group', 'follows', 'related', 'party', 'group', 'sales', 'related', 'purchases', 'amounts', 'owed', 'amounts', 'owed', 'party', 'related', 'party', 'related', 'party', 'related', 'party', '000', '000', '000', '000', 'entities', 'significant', 'influence', 'group', '31', 'december', '2016', '1', '446', '2', '651', '466', '1', '690', 'entities', 'significant', 'influence', 'group', '31', 'december', '2015', '1', '725', '483', 'f', '46', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2016', 'continued', 'transactions', 'directors', 'year', 'ended', '31', 'december', '2016', 'year', 'ended', '31', 'december', '2015', 'no', 'transactions', 'directors', 'no', 'amounts', 'outstanding', 'either', 'year', 'end', 'company', 'not', 'entered', 'transactions', 'related', 'parties', 'company', 'either', 'year', 'no', 'balances', 'outstanding', 'related', 'parties', 'company', 'either', 'year', 'end', 'company', 'operates', 'arrangement', 'direct', 'indirect', 'subsidiaries', 'whereby', 'purchases', 'goods', 'services', 'behalf', 'subsidiaries', 'subsidiaries', 'purchase', 'goods', 'services', 'behalf', 'company', 'transactions', 'entered', 'trading', 'balances', 'year', 'end', 'subsidiaries', 'company', 'follows', 'related', 'party', 'subsidiary', 'purchased', 'purchased', 'amounts', 'amounts', 'behalf', 'via', 'owed', 'owed', 'subsidiary', 'subsidiary', 'subsidiary', 'subsidiary', 'undertakings', 'undertakings', 'undertakings', 'undertakings', '000', '000', '000', '000', 'subsidiaries', '31', 'december', '2016', '29', '638', '231', '083', '150', '215', 'subsidiaries', '31', 'december', '2015', '31', '394', '160', '566', '178', '192', 'terms', 'conditions', 'transactions', 'related', 'parties', 'group', 'company', 'sales', 'purchases', 'related', 'parties', 'made', 'normal', 'market', 'prices', 'outstanding', 'balances', 'entities', 'subsidiaries', 'unsecured', 'interest', 'free', 'cash', 'settlement', 'expected', 'within', '60', 'days', 'invoice', 'terms', 'conditions', 'transactions', 'subsidiaries', 'exception', 'balances', 'placed', 'intercompany', 'accounts', 'no', 'specified', 'credit', 'period', 'group', 'company', 'not', 'provided', 'benefited', 'guarantees', 'related', 'party', 'receivables', 'payables', 'company', 'not', 'made', 'provision', 'impairment', 'relating', 'amounts', 'owed', 'related', 'parties', 'either', 'year', 'end', '28', 'immediate', 'parent', 'company', 'company', 'no', 'immediate', 'parent', 'company', 'company', 'shareholders', 'interests', 'ordinary', 'share', 'capital', 'company', '31', 'december', '2016', 'follows', 'prestige', 'motor', 'holdings', 'primewagon', 'jersey', 'limited', 'asmar', 'limited', 'adeem', 'automotive', 'manufacturing', 'company', 'limited', 'daimler', 'ag', 'non', 'voting', 'tejara', 'capital', 'limited', 'stehwaz', 'automotive', 'jersey', 'limited', 'dr', 'ulrich', 'bez', 'f', '47', '37', '7', '19', '5', '19', '0', '11', '0', '4', '9', '4', '7', '2', '5', '0', '7', 'aston', 'martin', 'holdings', 'uk', 'limited', 'consolidated', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'registered', 'number', '06067176', 'f', '48', 'directors', 'advisors', 'directors', 'primary', 'bankers', 'najeeb', 'ai', 'humaidhi', 'adnan', 'ai', 'musallam', 'rezam', 'ai', 'roumi', 'roberto', 'maestroni', 'umberto', 'magnetti', 'carlo', 'pasquale', 'campanini', 'bonomi', 'dante', 'razzano', 'mahmoud', 'samy', 'mohamed', 'ali', 'el', 'sayed', 'amr', 'ali', 'abdallah', 'abou', 'el', 'seoud', 'dr', 'andrew', 'palmer', 'chief', 'executive', 'officer', 'deutsche', 'bank', 'ag', 'winchester', 'house', '1', 'great', 'winchester', 'street', 'london', 'ec2n', '2db', 'hsbc', 'bank', 'plc', '8', 'canada', 'square', 'london', 'e14', '5hq', 'secretary', 'registered', 'office', 'michael', 'marecki', 'aston', 'martin', 'holdings', 'uk', 'limited', 'banbury', 'road', 'gaydon', 'warwick', 'england', 'cv35', '0db', 'lloyds', 'tsb', 'bank', 'plc', '10', 'gresham', 'street', 'london', 'ec2v', '7ae', 'standard', 'chartered', 'bank', 'plc', '1', 'basinghall', 'avenue', 'london', 'ec2v', '5dd', 'registered', 'auditor', 'kpmg', 'llp', 'one', 'snowhill', 'snow', 'hill', 'queensway', 'birmingham', 'b4', '6gh', 'comerica', 'bank', '1717', 'main', 'street', 'dallas', 'texas', '75201', 'united', 'states', 'america', 'f', '49', 'independent', 'auditor', 'report', 'members', 'aston', 'martin', 'holdings', 'uk', 'limited', 'audited', 'financial', 'statements', 'aston', 'martin', 'holdings', 'uk', 'limited', 'year', 'ended', '31', 'december', '2015', 'set', 'pages', '8', '41', 'financial', 'reporting', 'framework', 'applied', 'preparation', 'applicable', 'law', 'international', 'financial', 'reporting', 'standards', 'ifrss', 'adopted', 'eu', 'regards', 'parent', 'company', 'financial', 'statements', 'applied', 'accordance', 'provisions', 'companies', 'act', '2006', 'report', 'made', 'solely', 'company', 'members', 'body', 'accordance', 'chapter', '3', 'part', '16', 'companies', 'act', '2006', 'audit', 'work', 'undertaken', 'might', 'state', 'company', 'members', 'matters', 'required', 'state', 'auditor', 'report', 'no', 'purpose', 'fullest', 'extent', 'permitted', 'law', 'not', 'accept', 'assume', 'responsibility', 'anyone', 'company', 'company', 'members', 'body', 'audit', 'work', 'report', 'opinions', 'formed', 'respective', 'responsibilities', 'directors', 'auditor', 'explained', 'fully', 'directors', 'responsibilities', 'statement', 'set', 'page', '6', 'directors', 'responsible', 'preparation', 'financial', 'statements', 'satisfied', 'give', 'true', 'fair', 'view', 'responsibility', 'audit', 'express', 'opinion', 'financial', 'statements', 'accordance', 'applicable', 'law', 'international', 'standards', 'auditing', 'uk', 'ireland', 'standards', 'require', 'us', 'comply', 'auditing', 'practices', 'board', 'apb', 'ethical', 'standards', 'auditors', 'scope', 'audit', 'financial', 'statements', 'description', 'scope', 'audit', 'financial', 'statements', 'provided', 'financial', 'reporting', 'council', 'website', 'www', 'frc', 'org', 'uk', 'auditscopeukprivate', 'opinion', 'financial', 'statements', 'opinion', 'financial', 'statements', 'give', 'true', 'fair', 'view', 'state', 'group', 'parent', 'company', 'affairs', '31', 'december', '2015', 'group', 'loss', 'year', 'ended', 'group', 'financial', 'statements', 'properly', 'prepared', 'accordance', 'ifrss', 'adopted', 'eu', 'parent', 'company', 'financial', 'statements', 'properly', 'prepared', 'accordance', 'ifrss', 'adopted', 'eu', 'applied', 'accordance', 'provisions', 'companies', 'act', '2006', 'financial', 'statements', 'prepared', 'accordance', 'requirements', 'companies', 'act', '2006', 'opinion', 'matters', 'prescribed', 'companies', 'act', '2006', 'opinion', 'information', 'given', 'strategic', 'report', 'directors', 'report', 'financial', 'year', 'financial', 'statements', 'prepared', 'consistent', 'financial', 'statements', 'based', 'solely', 'work', 'required', 'undertaken', 'course', 'audit', 'financial', 'statements', 'reading', 'strategic', 'report', 'directors', 'report', 'not', 'identified', 'material', 'misstatements', 'reports', 'opinion', 'reports', 'prepared', 'accordance', 'companies', 'act', '2006', 'f', '50', 'matters', 'required', 'report', 'exception', 'nothing', 'report', 'respect', 'following', 'matters', 'companies', 'act', '2006', 'requires', 'us', 'report', 'opinion', 'adequate', 'accounting', 'records', 'not', 'kept', 'parent', 'company', 'returns', 'adequate', 'audit', 'not', 'received', 'branches', 'not', 'visited', 'us', 'parent', 'company', 'financial', 'statements', 'not', 'agreement', 'accounting', 'records', 'returns', 'certain', 'disclosures', 'directors', 'remuneration', 'specified', 'law', 'not', 'made', 'not', 'received', 'information', 'explanations', 'require', 'audit', 'john', 'leech', 'senior', 'statutory', 'auditor', 'behalf', 'kpmg', 'llp', 'statutory', 'auditor', 'chartered', 'accountants', 'one', 'snowhill', 'snow', 'hill', 'queensway', 'birmingham', 'b4', '6gh', 'date', 'f', '51', 'consolidated', 'statement', 'comprehensive', 'income', 'year', 'ended', '31', 'december', '2015', 'notes', 'revenue', 'cost', 'sales', 'gross', 'profit', 'selling', 'distribution', 'expenses', 'administrative', 'expenses', 'share', 'result', 'associates', '4', '2015', '000', '2014', '000', '510', '172', '468', '355', '345', '294', '313', '476', '164', '878', '154', '879', '32', '084', '33', '439', '191', '076', '139', '833', '14', '32', 'operating', 'loss', '5', '58', '282', '6', '6', '30', '169', '7', '547', '6', '6', '6', '2', '636', '17', '930', '58', '282', '1', '706', '5', '977', '14', '090', '18', '361', '8', '9', '2', '090', '71', '764', '2', '548', '56', '018', 'net', 'financing', 'expense', '69', '674', '53', '470', 'loss', 'tax', '127', '956', '71', '831', '20', '999', '7', '079', '106', '957', '64', '752', '7', '101', '1', '278', '15', '011', '3', '255', 'analysed', 'impairment', 'intangible', 'tangible', 'assets', 'restructuring', 'costs', 'including', 'related', 'consultancy', 'costs', 'payment', 'former', 'director', 'relating', 'settlement', 'shares', 'gain', 'disposal', 'associated', 'company', 'concept', 'vehicle', 'development', 'costs', 'underlying', 'operating', 'loss', 'operating', 'loss', 'finance', 'income', 'finance', 'expense', 'income', 'tax', 'credit', '10', 'loss', 'year', 'comprehensive', 'income', 'items', 'never', 'reclassified', 'profit', 'loss', 'remeasurement', 'defined', 'benefit', 'liability', 'related', 'income', 'tax', '22', '10', '18', '361', '5', '823', '11', '756', 'items', 'may', 'reclassified', 'profit', 'loss', 'foreign', 'exchange', 'translation', 'differences', '1', '015', '336', 'comprehensive', 'income', 'period', 'net', 'income', 'tax', '6', '838', '12', '092', 'total', 'comprehensive', 'income', 'period', '100', '119', '76', '844', 'loss', 'attributable', 'owners', 'group', 'non', 'controlling', 'interests', '107', '108', '151', '64', '916', '164', '106', '957', '64', '752', '100', '270', '151', '77', '008', '164', '100', '119', '76', '844', 'total', 'comprehensive', 'expense', 'income', 'period', 'attributable', 'owners', 'group', 'non', 'controlling', 'interests', 'underlying', 'operating', 'loss', 'represents', 'operating', 'loss', 'excluding', 'non', 'recurring', 'items', 'notes', 'pages', '13', '41', 'form', 'integral', 'part', 'financial', 'statements', 'f', '52', 'consolidated', 'statement', 'changes', 'equity', 'group', '1', 'january', '2015', 'share', 'capital', 'premium', 'reserve', 'share', 'non', 'controlling', 'translation', 'retained', 'share', 'capital', 'warrants', 'interest', 'reserve', 'earnings', '000', '000', '000', '000', '000', 'total', 'equity', '000', '3', '366', '463', '98', '583', '172', '112', '076', '352', '801', '151', '1', '015', '1', '015', '7', '101', '7', '101', '1', '278', '1', '278', 'total', 'comprehensive', 'income', '1', '015', '5', '823', '6', '838', 'total', 'comprehensive', 'income', 'period', '151', 'transactions', 'owners', 'recorded', 'directly', 'equity', 'capital', 'increase', '11', '398', '11', '398', 'total', 'transactions', 'owners', '11', '398', '11', '398', '31', 'december', '2015', '3', '377', '861', '98', '734', 'total', 'comprehensive', 'income', 'period', 'profit', 'loss', '107', '108', '106', '957', 'comprehensive', 'income', 'foreign', 'currency', 'translation', 'differences', 'remeasurement', 'defined', 'benefit', 'liability', 'note', '22', 'income', 'tax', 'comprehensive', 'income', 'note', '10', '1', '015', '101', '285', '100', '119', '843', '213', '361', '264', '080', 'included', 'capital', 'reserve', 'non', 'controlling', 'interests', '1', '100', '000', 'additional', 'capital', 'reserve', '4', '670', '000', 'non', 'controlling', 'interest', 'relating', '50', 'interest', 'share', 'capital', 'amws', 'limited', 'parent', 'company', 'aston', 'martin', 'works', 'limited', 'capital', 'increase', 'year', 'ended', '31', 'december', '2015', 'represents', 'share', 'premium', 'paid', 'previously', 'partly', 'paid', 'shares', '2', '355', '000', 'fair', 'value', 'share', 'warrants', 'granted', 'connection', 'issue', 'preference', 'shares', 'amounting', '9', '043', '000', 'f', '53', 'group', '1', 'january', '2014', 'total', 'comprehensive', 'income', 'period', 'profit', 'loss', 'comprehensive', 'income', 'foreign', 'currency', 'translation', 'differences', 'remeasurement', 'defined', 'benefit', 'liability', 'note', '22', 'income', 'tax', 'comprehensive', 'income', 'note', '10', 'capital', 'reserve', 'share', 'share', 'non', 'controlling', 'translation', 'retained', 'capital', 'premium', 'interest', 'reserve', 'earnings', '000', '000', '000', '000', '000', '3', '358', '296', '92', '964', '164', 'total', 'equity', '000', '35', '404', '416', '023', '164', 'total', 'comprehensive', 'income', '336', '11', '756', '12', '092', 'total', 'comprehensive', 'income', 'period', '164', '336', '76', '672', '76', '844', 'transactions', 'owners', 'recorded', 'directly', 'equity', 'capital', 'increase', '8', '167', '8', '167', 'total', 'transactions', 'owners', '8', '167', '8', '167', 'acquisition', 'subsidiary', 'non', 'controlling', 'interests', 'notes', '3', '14', '5', '455', '5', '455', '3', '366', '463', '98', '583', '31', 'december', '2014', '336', '64', '916', '64', '752', '336', '15', '011', '15', '011', '3', '255', '3', '255', '172', '112', '076', '352', '801', 'april', '2014', '76', '180', 'ordinary', 'shares', 'issued', 'prestige', 'motor', 'holdings', 'controlled', 'lnvestindustrial', 'v', 'l', 'p', 'consideration', '3', '750', '000', 'september', '2014', '33', '650', 'shares', 'par', 'value', '0', '001p', 'per', 'share', 'issued', 'daimler', 'ag', 'consideration', '4', '417', '000', 'included', 'capital', 'reserve', 'non', 'controlling', 'interests', '1', '100', '000', 'additional', 'capital', 'reserve', '4', '519', '000', 'non', 'controlling', 'interest', 'relating', 'acquisition', 'additional', '10', 'share', 'capital', 'amws', 'limited', 'parent', 'company', 'aston', 'martin', 'works', 'limited', 'see', 'notes', '3', '14', 'details', 'f', '54', 'company', 'statement', 'changes', 'equity', 'company', 'share', 'capital', '000', 'share', 'premium', 'share', 'capital', 'translation', 'retained', 'warrants', 'reserve', 'reserve', 'earnings', '000', '000', '000', '000', '1', 'january', '2015', '3', '366', '463', '92', '964', 'total', 'comprehensive', 'income', 'period', 'loss', 'total', 'comprehensive', 'expense', 'period', 'transactions', 'owners', 'recorded', 'directly', 'equity', 'capital', 'increase', 'total', 'equity', '000', '17', '716', '441', '714', '35', '137', '35', '137', '35', '137', '35', '137', '11', '398', '11', '398', 'total', 'transactions', 'owners', '11', '398', '11', '398', '31', 'december', '2015', '3', '377', '861', '92', '964', '521', '853', '417', '975', 'capital', 'increase', 'year', 'ended', '31', 'december', '2015', 'represents', 'share', 'premium', 'paid', 'previously', 'partly', 'paid', 'shares', '2', '355', '000', 'fair', 'value', 'share', 'warrants', 'granted', 'connection', 'issue', 'preference', 'shares', 'amounting', '9', '043', '000', 'share', 'capital', '000', 'share', 'premium', '000', 'capital', 'reserve', '000', 'translation', 'reserve', '000', '1', 'january', '2014', '3', '358', '296', '92', '964', 'total', 'comprehensive', 'income', 'period', 'loss', '17', '197', '17', '197', 'total', 'comprehensive', 'expense', 'period', '17', '197', '17', '197', 'transactions', 'owners', 'recorded', 'directly', 'equity', 'capital', 'increase', '8', '167', '8', '167', 'total', 'transactions', 'owners', '8', '167', '8', '167', '31', 'december', '2014', '3', '366', '463', '92', '964', 'company', 'retained', 'earnings', '000', 'total', 'equity', '000', '519', '450', '744', '71', '716', '441', '714', 'april', '2014', '76', '180', 'ordinary', 'shares', 'issued', 'prestige', 'motor', 'holdings', 'controlled', 'investindustrial', 'v', 'l', 'p', 'consideration', '3', '750', '000', 'september', '2014', '33', '650', 'shares', 'par', 'value', '0', '001p', 'issued', 'daimler', 'ag', 'consideration', '4', '417', '000', 'f', '55', 'statements', 'financial', 'position', '31', 'december', '2015', 'non', 'current', 'assets', 'intangible', 'assets', 'property', 'plant', 'equipment', 'investments', 'subsidiary', 'undertakings', 'receivables', 'financial', 'assets', 'deferred', 'tax', 'asset', 'current', 'assets', 'inventories', 'trade', 'receivables', 'financial', 'assets', 'cash', 'cash', 'equivalents', 'notes', 'group', '2015', '000', 'group', '2014', '000', 'company', '2015', '000', 'company', '2014', '000', '11', '13', '14', '16', '19', '10', '677', '297', '166', '314', '2', '169', '63', '48', '303', '625', '805', '174', '379', '44', '024', '667', '982', '667', '982', '894', '146', '844', '208', '667', '982', '667', '982', '80', '363', '69', '113', '52', '65', '562', '98', '427', '51', '538', '527', '89', '250', '161', '233', '1', '95', '223', '1', '15', '16', '19', '17', 'total', 'assets', 'current', 'liabilities', 'borrowings', 'trade', 'payables', 'income', 'tax', 'payable', 'financial', 'liabilities', 'provisions', 'non', 'current', 'liabilities', 'borrowings', 'financial', 'liabilities', 'employee', 'benefits', 'provisions', 'deferred', 'tax', 'liabilities', '19', '18', '19', '21', '19', '19', '22', '21', '10', '215', '090', '239', '742', '161', '234', '95', '224', '1', '109', '236', '1', '083', '950', '829', '216', '763', '206', '16', '597', '180', '293', '894', '8', '200', '6', '361', '19', '808', '160', '048', '1', '208', '3', '088', '9', '171', '179', '180', '207', '297', '212', '345', '193', '323', '179', '180', '207', '297', '532', '103', '1', '584', '4', '947', '8', '218', '85', '959', '412', '598', '2', '819', '12', '404', '8', '111', '101', '894', '232', '061', '114', '195', '632', '811', '537', '826', '232', '061', '114', '195', 'total', 'liabilities', '845', '156', '731', '149', '411', '241', '321', '492', 'net', 'assets', '264', '080', '352', '801', '417', '975', '441', '714', '3', '368', '818', '9', '043', '94', '064', '843', '213', '361', '3', '366', '463', '94', '064', '172', '112', '076', '3', '368', '818', '9', '043', '92', '964', '52', '853', '3', '366', '463', '92', '964', '17', '716', '259', '410', '4', '670', '348', '282', '4', '519', '417', '975', '441', '714', '264', '080', '352', '801', '417', '975', '441', '714', 'capital', 'reserves', 'share', 'capital', 'share', 'premium', 'share', 'warrants', 'capital', 'reserve', 'translation', 'reserve', 'retained', 'earnings', 'equity', 'attributable', 'owners', 'group', 'non', 'controlling', 'interests', 'total', 'shareholders', 'equity', '23', '24', '24', '24', '24', '3', '14', 'financial', 'statements', 'pages', '8', '41', 'approved', 'board', 'directors', '21', 'april', '2016', 'signed', 'behalf', 'dr', 'andrew', 'palmer', 'director', 'company', 'number', '06067176', 'notes', 'pages', '13', '41', 'form', 'integral', 'part', 'financial', 'statements', 'f', '56', 'consolidated', 'statement', 'cash', 'flows', 'year', 'ended', '31', 'december', '2015', 'notes', 'operating', 'activities', 'loss', 'year', 'adjustments', 'reconcile', 'loss', 'year', 'net', 'cash', 'inflow', 'operating', 'activities', 'tax', 'continuing', 'operations', 'share', 'result', 'associates', 'net', 'finance', 'costs', 'non', 'cash', 'movements', 'losses', 'sale', 'property', 'plant', 'equipment', 'gain', 'sale', 'associated', 'company', 'depreciation', 'impairment', 'property', 'plant', 'equipment', 'amortisation', 'impairment', 'intangible', 'assets', 'difference', 'pension', 'contributions', 'paid', 'amounts', 'recognised', 'income', 'statement', 'decrease', 'increase', 'inventories', 'increase', 'trade', 'receivables', 'increase', 'trade', 'payables', 'movement', 'provisions', 'group', '2015', '000', 'group', '2014', '000', '106', '957', '64', '752', '20', '999', '66', '838', '1', '129', '54', '46', '320', '73', '157', '7', '079', '32', '56', '612', '137', '67', '1', '706', '28', '316', '51', '964', '356', '18', '064', '19', '816', '21', '574', '2', '876', '721', '21', '842', '8', '146', '26', '709', '89', 'cash', 'generated', 'operations', 'income', 'taxes', 'paid', '76', '132', '905', '59', '342', '1', '472', 'net', 'cash', 'inflow', 'operating', 'activities', '75', '227', '57', '870', '10', '14', '5', '5', '13', '5', '11', 'cash', 'flows', 'investing', 'activities', 'interest', 'received', 'proceeds', 'disposal', 'property', 'plant', 'equipment', 'payments', 'acquire', 'property', 'plant', 'equipment', 'payments', 'acquire', 'intangible', 'assets', 'acquisition', 'amws', 'limited', '2', '090', '2', '037', '94', '18', '13', '38', '517', '20', '852', '11', '124', '649', '105', '631', '14', '1', '300', 'net', 'cash', 'used', 'investing', 'activities', '160', '982', '123', '128', 'cash', 'flows', 'financing', 'activities', 'interest', 'paid', 'proceeds', 'equity', 'share', 'issue', 'movement', 'borrowings', 'new', 'borrowings', 'transaction', 'fees', 'new', 'borrowings', '8', '32', '252', '2', '355', '3', '751', '100', '000', '3', '536', '31', '938', '8', '167', '5', '348', '99', '620', '585', 'net', 'cash', 'inflow', 'financing', 'activities', '62', '816', '80', '612', 'net', 'decrease', 'increase', 'cash', 'cash', 'equivalents', 'cash', 'cash', 'equivalents', 'beginning', 'year', 'effect', 'exchange', 'rates', 'cash', 'cash', 'equivalents', '22', '939', '89', '250', '749', '15', '354', '74', '653', '757', '65', '562', '89', '250', '23', '24', '19', '19', '25', '25', 'cash', 'cash', 'equivalents', 'end', 'year', 'notes', 'pages', '13', '41', 'form', 'integral', 'part', 'financial', 'statements', 'f', '57', '25', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', '1', 'basis', 'accounting', 'aston', 'martin', 'holdings', 'uk', 'limited', 'company', 'company', 'incorporated', 'england', 'wales', 'domiciled', 'uk', 'group', 'financial', 'statements', 'consolidate', 'company', 'subsidiaries', 'together', 'referred', 'group', 'parent', 'company', 'financial', 'statements', 'present', 'information', 'company', 'separate', 'entity', 'not', 'group', 'parent', 'company', 'financial', 'statements', 'group', 'financial', 'statements', 'prepared', 'approved', 'directors', 'accordance', 'international', 'financial', 'reporting', 'standards', 'adopted', 'eu', 'adopted', 'ifrss', 'publishing', 'parent', 'company', 'financial', 'statements', 'together', 'group', 'financial', 'statements', 'company', 'taking', 'advantage', 'exemption', 's408', 'companies', 'act', '2006', 'not', 'present', 'individual', 'income', 'statement', 'related', 'notes', 'form', 'part', 'approved', 'financial', 'statements', 'financial', 'statements', 'prepared', 'historical', 'cost', 'convention', 'except', 'certain', 'financial', 'instruments', 'carried', 'fair', 'value', 'group', 'financial', 'statements', 'presented', 'sterling', 'values', 'rounded', 'nearest', 'thousand', 'pounds', '000', 'except', 'otherwise', 'indicated', 'group', 'meets', 'day', 'day', 'working', 'capital', 'requirements', 'medium', 'term', 'funding', 'requirements', 'mixture', 'senior', 'secured', 'notes', 'revolving', 'credit', 'facility', 'inventory', 'financing', 'facilities', 'wholesale', 'vehicle', 'financing', 'facility', 'group', 'issued', '304', '000', '000', '9', '25', 'senior', 'secured', 'notes', 'repayable', '2018', 'access', '40', '000', '000', 'revolving', 'credit', 'facility', '2018', 'undrawn', '31', 'december', '2015', '31', 'december', '2014', 'senior', 'secured', 'notes', 'revolving', 'credit', 'facility', 'include', 'certain', 'covenant', 'tests', 'march', '2014', 'company', 'issued', 'senior', 'subordinated', 'pik', 'notes', 'value', '165', '000', '000', 'us', 'dollars', '99', '620', '000', 'due', 'repayment', 'july', '2018', '23', 'april', '2015', 'company', 'accepted', 'binding', 'subscriptions', '200', 'million', 'preference', 'shares', 'first', 'tranche', '100', 'million', 'received', '27', 'april', '2015', 'second', 'tranche', '100', 'million', 'drawn', 'april', '2016', 'subscriptions', 'also', 'included', 'warrants', 'pro', 'rata', 'allocation', 'p', 'shares', 'non', 'voting', 'ordinary', 'shares', 'corresponding', '4', 'current', 'fully', 'diluted', 'share', 'capital', 'company', 'directors', 'prepared', 'trading', 'cash', 'flow', 'forecasts', 'period', '2020', 'date', 'approval', 'financial', 'statements', 'forecasts', 'show', 'group', 'sufficient', 'financial', 'resources', 'meet', 'obligations', 'fall', 'due', 'meet', 'covenant', 'tests', 'period', 'least', '12', 'months', 'date', 'financial', 'statements', 'approved', 'forecasts', 'make', 'assumptions', 'respect', 'future', 'trading', 'conditions', 'particular', 'launch', 'future', 'models', 'nature', 'group', 'business', 'variation', 'timing', 'cash', 'flows', 'around', 'development', 'launch', 'new', 'models', 'availability', 'funds', 'provided', 'vehicle', 'wholesale', 'finance', 'facility', 'availability', 'credit', 'insurance', 'sales', 'volumes', 'vary', 'total', 'seasonally', 'forecasts', 'take', 'account', 'aforementioned', 'factors', 'extent', 'directors', 'consider', 'represent', 'best', 'estimate', 'future', 'events', 'based', 'information', 'available', 'time', 'approval', 'financial', 'statements', 'directors', 'also', 'prepared', 'downside', 'forecast', 'incorporates', 'certain', 'adverse', 'sensitivities', 'not', 'expected', 'still', 'represent', 'reasonably', 'possible', 'scenario', 'forecast', 'group', 'still', 'sufficient', 'financial', 'resources', 'meet', 'obligations', 'fall', 'due', 'meets', 'covenant', 'tests', 'period', 'least', '12', 'months', 'date', 'financial', 'statements', 'approved', 'f', '58', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', 'accordingly', 'considering', 'forecasts', 'appropriate', 'sensitivities', 'current', 'trading', 'available', 'facilities', 'directors', 'reasonable', 'expectation', 'group', 'adequate', 'resources', 'continue', 'operational', 'existence', 'foreseeable', 'future', 'therefore', 'directors', 'continue', 'adopt', 'going', 'concern', 'basis', 'preparing', 'financial', 'statements', '2', 'accounting', 'policies', 'basis', 'consolidation', 'subsidiaries', 'subsidiaries', 'consolidated', 'date', 'acquisition', 'date', 'group', 'obtains', 'control', 'continue', 'consolidated', 'date', 'control', 'ceases', 'control', 'comprises', 'power', 'govern', 'financial', 'operating', 'policies', 'investee', 'obtain', 'benefit', 'activities', 'achieved', 'direct', 'indirect', 'ownership', 'voting', 'rights', 'currently', 'exercisable', 'convertible', 'potential', 'voting', 'rights', 'way', 'contractual', 'agreement', 'financial', 'statements', 'subsidiaries', 'used', 'preparation', 'consolidated', 'financial', 'statements', 'prepared', 'reporting', 'year', 'parent', 'company', 'based', 'consistent', 'accounting', 'policies', 'intercompany', 'balances', 'transactions', 'including', 'unrealised', 'profits', 'arising', 'eliminated', 'investments', 'associates', 'associates', 'entities', 'group', 'significant', 'influence', 'not', 'control', 'financial', 'operating', 'policies', 'significant', 'influence', 'presumed', 'exist', 'group', 'holds', '20', '50', 'per', 'cent', 'voting', 'power', 'another', 'entity', 'associates', 'accounted', 'using', 'equity', 'method', 'equity', 'accounted', 'investees', 'initially', 'recognised', 'cost', 'group', 'investment', 'includes', 'goodwill', 'identified', 'acquisition', 'net', 'accumulated', 'impairment', 'losses', 'consolidated', 'financial', 'statements', 'include', 'group', 'share', 'total', 'comprehensive', 'income', 'equity', 'movements', 'equity', 'accounted', 'investees', 'date', 'significant', 'influence', 'commences', 'date', 'significant', 'influence', 'ceases', 'group', 'share', 'losses', 'exceeds', 'interest', 'equity', 'accounted', 'investee', 'group', 'carrying', 'amount', 'reduced', 'nil', 'recognition', 'losses', 'discontinued', 'except', 'extent', 'group', 'incurred', 'legal', 'constructive', 'obligations', 'made', 'payments', 'behalf', 'investee', 'government', 'grants', 'government', 'grants', 'recognised', 'income', 'statement', 'match', 'related', 'expenses', 'intended', 'compensate', 'foreign', 'currency', 'translation', 'transactions', 'foreign', 'currencies', 'initially', 'recorded', 'functional', 'currency', 'operation', 'applying', 'exchange', 'rate', 'ruling', 'date', 'transaction', 'monetary', 'assets', 'liabilities', 'denominated', 'foreign', 'currencies', 'retranslated', 'functional', 'currency', 'rate', 'exchange', 'ruling', 'reporting', 'date', 'differences', 'taken', 'profit', 'loss', 'except', 'differences', 'monetary', 'assets', 'liabilities', 'form', 'part', 'group', 'net', 'investment', 'foreign', 'operation', 'taken', 'directly', 'equity', 'disposal', 'net', 'investment', 'time', 'recognised', 'comprehensive', 'income', 'assets', 'liabilities', 'foreign', 'operations', 'translated', 'sterling', 'rate', 'exchange', 'ruling', 'reporting', 'date', 'income', 'expenses', 'translated', 'average', 'exchange', 'rates', 'period', 'resulting', 'exchange', 'differences', 'taken', 'directly', 'comprehensive', 'income', 'disposal', 'foreign', 'entity', 'deferred', 'cumulative', 'amount', 'recognised', 'comprehensive', 'income', 'relating', 'particular', 'foreign', 'operation', 'recognised', 'profit', 'loss', 'f', '59', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', 'non', 'monetary', 'items', 'measured', 'terms', 'historical', 'cost', 'foreign', 'currency', 'translated', 'using', 'exchange', 'rates', 'dates', 'initial', 'transactions', 'non', 'monetary', 'items', 'measured', 'fair', 'value', 'foreign', 'currency', 'translated', 'using', 'exchange', 'rates', 'date', 'fair', 'value', 'determined', 'revenue', 'recognition', 'revenue', 'recognised', 'extent', 'probable', 'economic', 'benefits', 'flow', 'group', 'revenue', 'reliably', 'measured', 'revenue', 'measured', 'fair', 'value', 'consideration', 'receivable', 'deducting', 'wholesale', 'anticipated', 'retail', 'discounts', 'rebates', 'vat', 'sales', 'taxes', 'duty', 'following', 'criteria', 'must', 'also', 'met', 'revenue', 'recognised', 'sale', 'vehicles', 'revenue', 'sale', 'vehicles', 'recognised', 'significant', 'risks', 'rewards', 'ownership', 'vehicles', 'passed', 'buyer', 'normally', 'considered', 'point', 'despatch', 'dealer', 'distributor', 'party', 'group', 'acts', 'agent', 'vehicles', 'adopted', 'dealer', 'distributor', 'party', 'dealer', 'aston', 'martin', 'works', 'limited', 'aston', 'martin', 'italy', 'r', 'l', 'indirect', 'subsidiaries', 'aston', 'martin', 'holdings', 'uk', 'limited', 'revenue', 'recognised', 'point', 'sale', 'customer', 'buyer', 'outside', 'group', 'despatch', 'deferred', 'formal', 'request', 'buyer', 'revenue', 'recognised', 'vehicle', 'ready', 'despatch', 'written', 'request', 'hold', 'vehicle', 'specified', 'delivery', 'date', 'received', 'vehicles', 'sold', 'warranty', 'revenue', 'relating', 'warranty', 'service', 'recognised', 'despatch', 'vehicle', 'sales', 'parts', 'revenue', 'sale', 'parts', 'generally', 'recognised', 'upon', 'despatch', 'dealer', 'party', 'group', 'acts', 'agent', 'dealer', 'aston', 'martin', 'works', 'limited', 'aston', 'martin', 'italy', 'r', 'l', 'indirect', 'subsidiaries', 'aston', 'martin', 'holdings', 'uk', 'limited', 'revenue', 'recognised', 'point', 'despatch', 'buyer', 'outside', 'group', 'servicing', 'restoration', 'vehicles', 'bodyshop', 'sales', 'income', 'servicing', 'restoration', 'vehicles', 'bodyshop', 'sales', 'recognised', 'services', 'completed', 'finance', 'income', 'finance', 'income', 'comprises', 'interest', 'receivable', 'funds', 'invested', 'calculated', 'using', 'effective', 'interest', 'rate', 'method', 'net', 'interest', 'income', 'net', 'defined', 'benefit', 'liability', 'asset', 'gains', 'financial', 'instruments', 'recognised', 'profit', 'loss', 'finance', 'expense', 'finance', 'expense', 'comprises', 'interest', 'payable', 'borrowings', 'calculated', 'using', 'effective', 'interest', 'rate', 'method', 'net', 'interest', 'expense', 'net', 'defined', 'benefit', 'liability', 'asset', 'losses', 'financial', 'instruments', 'recognised', 'profit', 'loss', 'net', 'losses', 'financial', 'liabilities', 'measured', 'amortised', 'cost', 'borrowing', 'costs', 'directly', 'attributable', 'acquisition', 'construction', 'production', 'asset', 'takes', 'substantial', 'time', 'prepared', 'use', 'capitalised', 'part', 'cost', 'asset', 'current', 'non', 'current', 'classification', 'current', 'assets', 'include', 'assets', 'held', 'primarily', 'trading', 'purposes', 'cash', 'cash', 'equivalents', 'assets', 'expected', 'realised', 'intended', 'sale', 'consumption', 'course', 'group', 'operating', 'cycle', 'current', 'assets', 'also', 'include', 'assets', 'classified', 'held', 'sale', 'assets', 'classified', 'non', 'current', 'assets', 'f', '60', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', 'current', 'liabilities', 'include', 'liabilities', 'held', 'primarily', 'trading', 'purposes', 'liabilities', 'expected', 'settled', 'course', 'group', 'operating', 'cycle', 'liabilities', 'due', 'within', 'one', 'year', 'reporting', 'date', 'liabilities', 'classified', 'non', 'current', 'liabilities', 'goodwill', 'initial', 'recognition', 'goodwill', 'stated', 'cost', 'less', 'accumulated', 'impairment', 'losses', 'carrying', 'value', 'reviewed', 'impairment', 'least', 'annually', 'whenever', 'events', 'changes', 'circumstances', 'indicate', 'carrying', 'value', 'may', 'impaired', 'purpose', 'impairment', 'testing', 'goodwill', 'allocated', 'related', 'cash', 'generating', 'units', 'monitored', 'management', 'usually', 'business', 'segment', 'level', 'statutory', 'company', 'level', 'case', 'may', 'cash', 'generating', 'unit', 'group', 'aston', 'martin', 'lagonda', 'group', 'limited', 'business', 'recoverable', 'amount', 'cash', 'generating', 'unit', 'less', 'carrying', 'amount', 'including', 'goodwill', 'impairment', 'loss', 'recognised', 'profit', 'loss', 'intangible', 'assets', 'intangible', 'assets', 'acquired', 'separately', 'business', 'carried', 'initially', 'cost', 'intangible', 'asset', 'acquired', 'part', 'business', 'combination', 'recognised', 'outside', 'goodwill', 'asset', 'separable', 'arises', 'contractual', 'legal', 'rights', 'fair', 'value', 'measured', 'reliably', 'purchased', 'intellectual', 'property', 'purchased', 'intellectual', 'property', 'not', 'integral', 'item', 'property', 'plant', 'equipment', 'recognised', 'separately', 'intangible', 'asset', 'stated', 'cost', 'less', 'accumulated', 'depreciation', 'brands', 'acquired', 'brand', 'recognised', 'statement', 'financial', 'position', 'intangible', 'asset', 'supported', 'registered', 'trademark', 'established', 'market', 'place', 'brand', 'earnings', 'separately', 'identifiable', 'brand', 'could', 'sold', 'separately', 'rest', 'business', 'brand', 'achieves', 'earnings', 'excess', 'achieved', 'unbranded', 'products', 'value', 'acquired', 'brand', 'determined', 'allocating', 'purchase', 'price', 'consideration', 'acquired', 'business', 'underlying', 'fair', 'values', 'tangible', 'assets', 'goodwill', 'brands', 'intangible', 'assets', 'acquired', 'using', 'income', 'approach', 'multiperiod', 'excess', 'earnings', 'methodology', 'development', 'costs', 'expenditure', 'internally', 'developed', 'intangible', 'assets', 'excluding', 'development', 'costs', 'taken', 'profit', 'loss', 'year', 'incurred', 'expenditure', 'relating', 'clearly', 'defined', 'identifiable', 'development', 'projects', 'recognised', 'intangible', 'asset', 'following', 'criteria', 'met', 'project', 'technical', 'feasibility', 'commercial', 'viability', 'demonstrated', 'availability', 'adequate', 'technical', 'financial', 'resources', 'intention', 'complete', 'project', 'confirmed', 'correlation', 'development', 'costs', 'future', 'revenues', 'established', 'technology', 'patented', 'unpatented', 'technology', 'acquired', 'business', 'combinations', 'valued', 'using', 'cost', 'approach', 'value', 'determined', 'using', 'substitution', 'principle', 'adjusting', 'actual', 'costs', 'incurred', 'loss', 'due', 'obsolescence', 'date', 'acquisition', 'aston', 'martin', 'lagonda', 'group', 'limited', 'obsolete', 'element', 'determined', 'reference', 'proportion', 'product', 'life', 'cycle', 'expired', 'acquisition', 'date', 'f', '61', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', 'technology', 'acquired', 'third', 'parties', 'included', 'fair', 'value', 'dealer', 'network', 'group', 'sells', 'vehicles', 'exclusively', 'network', 'franchised', 'dealers', 'extent', 'group', 'benefits', 'network', 'means', 'distribution', 'dealer', 'network', 'valued', 'based', 'costs', 'incurred', 'group', 'beneficial', 'lease', 'rent', 'free', 'lease', 'options', 'valued', 'basis', 'net', 'present', 'value', 'market', 'rental', 'cashflows', 'amortisation', 'following', 'initial', 'recognition', 'historic', 'cost', 'model', 'applied', 'intangible', 'assets', 'carried', 'cost', 'less', 'accumulated', 'amortisation', 'accumulated', 'impairment', 'losses', 'amortisation', 'capitalised', 'costs', 'begins', 'date', 'production', 'commences', 'intangible', 'assets', 'finite', 'life', 'no', 'residual', 'value', 'amortised', 'straight', 'line', 'basis', 'expected', 'useful', 'lives', 'charges', 'included', 'profit', 'loss', 'follows', 'years', 'purchased', 'intellectual', 'property', 'brands', 'development', 'costs', 'technology', 'dealer', 'network', 'beneficial', 'lease', '5', 'indefinite', 'life', 'life', 'model', '10', '20', '10', 'following', 'review', 'useful', 'life', 'technology', 'asset', 'year', 'ended', '31', 'december', '2015', 'deemed', 'no', 'future', 'useful', 'life', 'fully', 'impaired', 'property', 'plant', 'equipment', 'property', 'plant', 'equipment', 'stated', 'cost', 'less', 'accumulated', 'depreciation', 'accumulated', 'impairment', 'losses', 'cost', 'comprises', 'aggregate', 'amount', 'paid', 'fair', 'value', 'consideration', 'given', 'acquire', 'asset', 'includes', 'costs', 'directly', 'attributable', 'making', 'asset', 'capable', 'operating', 'intended', 'borrowing', 'costs', 'directly', 'attributable', 'assets', 'construction', 'capitalised', 'depreciation', 'provided', 'property', 'plant', 'equipment', 'land', 'straight', 'line', 'basis', 'residual', 'value', 'expected', 'useful', 'life', 'follows', 'years', 'freehold', 'buildings', 'plant', 'machinery', 'fixtures', 'fittings', 'tooling', 'motor', 'vehicles', '30', '3', '30', '5', '9', 'tooling', 'amortised', 'life', 'project', 'assets', 'course', 'construction', 'included', 'respective', 'category', 'not', 'depreciated', 'completion', 'construction', 'no', 'depreciation', 'provided', 'freehold', 'land', 'carrying', 'values', 'property', 'plant', 'equipment', 'reviewed', 'impairment', 'events', 'changes', 'circumstances', 'indicate', 'carrying', 'value', 'may', 'not', 'recoverable', 'written', 'immediately', 'recoverable', 'amount', 'useful', 'lives', 'residual', 'values', 'reviewed', 'annually', 'adjustments', 'required', 'made', 'prospectively', 'item', 'property', 'plant', 'equipment', 'derecognised', 'upon', 'disposal', 'no', 'future', 'economic', 'benefits', 'expected', 'arise', 'continued', 'use', 'asset', 'gain', 'loss', 'arising', 'derecognition', 'asset', 'included', 'profit', 'loss', 'period', 'derecognition', 'f', '62', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', 'investments', 'subsidiaries', 'associates', 'separate', 'financial', 'statements', 'company', 'recognises', 'investments', 'subsidiaries', 'cost', 'income', 'recognised', 'investments', 'relation', 'distributions', 'received', 'postacquisition', 'profits', 'distributions', 'received', 'excess', 'post', 'acquisition', 'profits', 'deducted', 'cost', 'investment', 'associate', 'entity', 'group', 'significant', 'influence', 'significant', 'influence', 'power', 'participate', 'financial', 'operating', 'policy', 'decisions', 'investee', 'not', 'control', 'joint', 'control', 'policies', 'results', 'assets', 'liabilities', 'associates', 'incorporated', 'consolidated', 'financial', 'statements', 'using', 'equity', 'method', 'accounting', 'equity', 'method', 'investments', 'associates', 'carried', 'consolidated', 'statement', 'financial', 'position', 'cost', 'adjusted', 'post', 'acquisition', 'changes', 'group', 'share', 'net', 'assets', 'associates', 'impairment', 'assets', 'group', 'assesses', 'reporting', 'date', 'whether', 'indication', 'asset', 'may', 'impaired', 'indication', 'exists', 'annual', 'impairment', 'testing', 'asset', 'required', 'group', 'makes', 'estimate', 'asset', 'recoverable', 'amount', 'asset', 'recoverable', 'amount', 'higher', 'asset', 'cash', 'generating', 'unit', 'fair', 'value', 'less', 'costs', 'sell', 'value', 'use', 'determined', 'individual', 'asset', 'unless', 'asset', 'not', 'generate', 'cash', 'inflows', 'largely', 'independent', 'assets', 'groups', 'assets', 'carrying', 'amount', 'asset', 'exceeds', 'recoverable', 'amount', 'asset', 'considered', 'impaired', 'written', 'recoverable', 'amount', 'assessing', 'value', 'use', 'estimated', 'future', 'cash', 'flows', 'discounted', 'present', 'value', 'using', 'pre', 'tax', 'discount', 'rate', 'reflects', 'current', 'market', 'assessments', 'time', 'value', 'money', 'risks', 'specific', 'asset', 'impairment', 'losses', 'continuing', 'operations', 'recognised', 'profit', 'loss', 'expense', 'categories', 'consistent', 'function', 'impaired', 'asset', 'goodwill', 'brands', 'infinite', 'life', 'capitalised', 'development', 'costs', 'not', 'yet', 'available', 'use', 'recoverable', 'amount', 'estimated', 'annually', 'frequently', 'indication', 'asset', 'impaired', 'impairment', 'loss', 'subsequently', 'reverses', 'carrying', 'amount', 'asset', 'cashgenerating', 'unit', 'increased', 'revised', 'estimate', 'recoverable', 'amount', 'increased', 'carrying', 'amount', 'not', 'exceed', 'carrying', 'amount', 'would', 'determined', 'no', 'impairment', 'loss', 'recognised', 'asset', 'cash', 'generating', 'unit', 'prior', 'periods', 'reversal', 'impairment', 'loss', 'recognised', 'income', 'immediately', 'impairment', 'losses', 'recognised', 'goodwill', 'can', 'not', 'reversed', 'inventories', 'inventories', 'stated', 'lower', 'cost', 'net', 'realisable', 'value', 'service', 'restoration', 'projects', 'net', 'realisable', 'value', 'price', 'project', 'invoiced', 'normal', 'course', 'business', 'allowing', 'costs', 'realisation', 'cost', 'includes', 'costs', 'incurred', 'bringing', 'product', 'present', 'location', 'condition', 'follows', 'raw', 'materials', 'service', 'parts', 'spare', 'parts', 'purchase', 'cost', 'first', 'first', 'basis', 'work', 'progress', 'finished', 'vehicles', 'cost', 'direct', 'materials', 'labour', 'plus', 'attributable', 'overheads', 'based', 'normalised', 'level', 'activity', 'excluding', 'borrowing', 'costs', 'provisions', 'made', 'specific', 'basis', 'obsolete', 'slow', 'moving', 'defective', 'stocks', 'cost', 'service', 'restoration', 'project', 'can', 'not', 'fully', 'recovered', 'leases', 'payments', 'made', 'operating', 'leases', 'recognised', 'statement', 'comprehensive', 'income', 'straight', 'line', 'basis', 'term', 'lease', 'predetermined', 'rental', 'increases', 'f', '63', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', 'included', 'lease', 'recognised', 'straight', 'line', 'basis', 'benefits', 'received', 'incentive', 'sign', 'lease', 'whatever', 'form', 'may', 'take', 'credited', 'profit', 'loss', 'straight', 'line', 'basis', 'lease', 'term', 'cash', 'cash', 'equivalents', 'cash', 'short', 'term', 'deposits', 'statement', 'financial', 'position', 'comprise', 'cash', 'banks', 'hand', 'short', 'term', 'deposits', 'original', 'maturity', 'three', 'months', 'less', 'purpose', 'consolidated', 'cash', 'flow', 'statement', 'cash', 'cash', 'equivalents', 'consist', 'cash', 'cash', 'equivalents', 'defined', 'consignment', 'deposit', 'monies', 'received', 'customers', 'dealers', 'included', 'trade', 'payables', 'released', 'profit', 'loss', 'completion', 'sale', 'financial', 'liability', 'deposits', 'derecognised', 'entity', 'not', 'obligation', 'respect', 'deposits', 'derivative', 'financial', 'instruments', 'derivative', 'financial', 'assets', 'liabilities', 'recognised', 'statement', 'financial', 'position', 'fair', 'value', 'group', 'becomes', 'party', 'contractual', 'provisions', 'instrument', 'group', 'uses', 'derivative', 'instruments', 'manage', 'exposure', 'foreign', 'exchange', 'risk', 'arising', 'operating', 'financing', 'activities', 'movements', 'fair', 'value', 'foreign', 'exchange', 'derivatives', 'recognised', 'finance', 'income', 'expense', 'realised', 'gains', 'losses', 'cost', 'sales', 'statement', 'comprehensive', 'income', 'movements', 'fair', 'value', 'interest', 'rate', 'derivatives', 'taken', 'finance', 'income', 'finance', 'expense', 'appropriate', 'financial', 'asset', 'liability', 'derecognised', 'contract', 'gives', 'rise', 'settled', 'sold', 'cancelled', 'expires', 'financial', 'assets', 'liabilities', 'financial', 'assets', 'cash', 'contractual', 'right', 'receive', 'cash', 'another', 'financial', 'asset', 'another', 'entity', 'exchange', 'financial', 'assets', 'liabilities', 'another', 'entity', 'conditions', 'potentially', 'favourable', 'entity', 'addition', 'contracts', 'result', 'another', 'entity', 'delivering', 'variable', 'number', 'equity', 'instruments', 'financial', 'assets', 'trade', 'receivables', 'trade', 'receivables', 'carried', 'lower', 'original', 'invoiced', 'value', 'recoverable', 'amount', 'provision', 'made', 'objective', 'evidence', 'group', 'not', 'able', 'recover', 'balances', 'full', 'amount', 'write', 'determined', 'difference', 'asset', 'carrying', 'amount', 'present', 'value', 'estimated', 'future', 'cash', 'flows', 'receivables', 'not', 'discounted', 'time', 'value', 'money', 'not', 'considered', 'material', 'derivative', 'financial', 'assets', 'derivative', 'financial', 'asset', 'assessed', 'reporting', 'date', 'determine', 'whether', 'objective', 'evidence', 'impaired', 'derivative', 'financial', 'asset', 'considered', 'impaired', 'objective', 'evidence', 'indicates', 'one', 'events', 'negative', 'effect', 'estimated', 'future', 'cash', 'flows', 'asset', 'trade', 'payables', 'trade', 'payables', 'recognised', 'carried', 'original', 'invoiced', 'value', 'payables', 'not', 'discounted', 'take', 'account', 'time', 'value', 'money', 'effect', 'immaterial', 'borrowings', 'borrowings', 'recognised', 'initially', 'fair', 'value', 'less', 'attributable', 'transaction', 'costs', 'subsequent', 'initial', 'recognition', 'borrowings', 'stated', 'amortised', 'cost', 'difference', 'cost', 'f', '64', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', 'redemption', 'value', 'recognised', 'profit', 'loss', 'period', 'borrowings', 'effective', 'interest', 'basis', 'pensions', 'group', 'operates', 'defined', 'contribution', 'pension', 'plan', 'group', 'pays', 'fixed', 'contributions', 'separate', 'entity', 'no', 'legal', 'constructive', 'obligation', 'pay', 'amounts', 'obligations', 'contributions', 'defined', 'contribution', 'pension', 'plans', 'recognised', 'expense', 'income', 'statement', 'periods', 'services', 'rendered', 'employees', 'group', 'operates', 'defined', 'benefit', 'pension', 'plan', 'contracted', 'state', 'scheme', 'group', 'net', 'obligation', 'respect', 'defined', 'benefit', 'plans', 'calculated', 'plan', 'estimating', 'amount', 'future', 'benefit', 'employees', 'earned', 'current', 'prior', 'periods', 'discounting', 'amount', 'deducting', 'fair', 'value', 'plan', 'assets', 'calculation', 'defined', 'benefit', 'obligations', 'performed', 'annually', 'qualified', 'actuary', 'using', 'projected', 'unit', 'credit', 'method', 'calculation', 'results', 'potential', 'asset', 'group', 'recognised', 'asset', 'limited', 'present', 'value', 'economic', 'benefits', 'available', 'form', 'future', 'refunds', 'plan', 'reductions', 'future', 'contributions', 'plan', 'calculate', 'present', 'value', 'economic', 'benefits', 'consideration', 'given', 'minimum', 'funding', 'requirements', 'remeasurements', 'net', 'defined', 'benefit', 'asset', 'liability', 'comprise', 'actuarial', 'gains', 'losses', 'interest', 'plan', 'assets', 'excluding', 'interest', 'effect', 'asset', 'ceiling', 'excluding', 'interest', 'recognised', 'immediately', 'comprehensive', 'income', 'group', 'determines', 'net', 'interest', 'expense', 'income', 'net', 'defined', 'benefit', 'asset', 'liability', 'taking', 'account', 'changes', 'net', 'defined', 'asset', 'liability', 'period', 'result', 'contributions', 'benefit', 'payments', 'net', 'interest', 'expense', 'expenses', 'related', 'defined', 'benefit', 'plans', 'recognised', 'profit', 'loss', 'benefits', 'plan', 'changed', 'plan', 'curtailed', 'resulting', 'change', 'benefit', 'relates', 'past', 'service', 'cost', 'gain', 'loss', 'curtailment', 'recognised', 'immediately', 'profit', 'loss', 'group', 'recognises', 'gains', 'losses', 'settlement', 'defined', 'benefit', 'plan', 'settlement', 'occurs', 'share', 'based', 'payment', 'transactions', 'grant', 'date', 'fair', 'value', 'options', 'granted', 'employees', 'recognised', 'employee', 'expense', 'corresponding', 'increase', 'equity', 'period', 'employees', 'become', 'unconditionally', 'entitled', 'options', 'amount', 'recognised', 'expense', 'adjusted', 'reflect', 'actual', 'number', 'share', 'options', 'related', 'service', 'non', 'market', 'vesting', 'conditions', 'met', 'warranty', 'provision', 'provision', 'recognised', 'group', 'legal', 'constructive', 'obligation', 'result', 'past', 'event', 'probable', 'outflow', 'economic', 'benefits', 'required', 'settle', 'obligation', 'typically', 'despatch', 'vehicle', 'expected', 'future', 'cash', 'flows', 'not', 'discounted', 'present', 'value', 'effect', 'not', 'material', 'group', 'provides', 'estimated', 'liability', 'products', 'warranty', 'provision', 'estimated', 'based', 'past', 'experience', 'level', 'warranty', 'claims', 'settled', 'income', 'taxes', 'tax', 'profit', 'loss', 'period', 'represents', 'sum', 'tax', 'currently', 'payable', 'deferred', 'tax', 'tax', 'recognised', 'profit', 'loss', 'except', 'extent', 'relates', 'items', 'recognised', 'directly', 'equity', 'case', 'recognised', 'comprehensive', 'income', 'f', '65', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', 'current', 'tax', 'assets', 'liabilities', 'measured', 'amount', 'expected', 'recovered', 'paid', 'taxation', 'authorities', 'based', 'tax', 'rates', 'laws', 'enacted', 'substantively', 'enacted', 'reporting', 'date', 'deferred', 'income', 'tax', 'recognised', 'temporary', 'differences', 'arising', 'tax', 'bases', 'assets', 'liabilities', 'carrying', 'amounts', 'financial', 'statements', 'following', 'exceptions', 'temporary', 'difference', 'arises', 'initial', 'recognition', 'goodwill', 'asset', 'liability', 'transaction', 'not', 'business', 'combination', 'time', 'transaction', 'affects', 'neither', 'accounting', 'nor', 'taxable', 'profit', 'loss', 'respect', 'taxable', 'temporary', 'differences', 'associated', 'investments', 'subsidiaries', 'timing', 'reversal', 'temporary', 'differences', 'controlled', 'probable', 'temporary', 'differences', 'not', 'reverse', 'foreseeable', 'future', 'deferred', 'income', 'tax', 'assets', 'recognised', 'extent', 'probable', 'taxable', 'profit', 'available', 'deductible', 'temporary', 'differences', 'carried', 'forward', 'tax', 'credits', 'tax', 'losses', 'utilised', 'deferred', 'income', 'tax', 'assets', 'liabilities', 'measured', 'undiscounted', 'basis', 'tax', 'rates', 'expected', 'apply', 'related', 'asset', 'realised', 'liability', 'settled', 'based', 'tax', 'rates', 'laws', 'enacted', 'substantively', 'enacted', 'reporting', 'date', 'equity', 'instruments', 'equity', 'instrument', 'contract', 'evidences', 'residual', 'interest', 'assets', 'group', 'deducting', 'liabilities', 'equity', 'instruments', 'issued', 'group', 'recorded', 'proceeds', 'received', 'net', 'direct', 'issue', 'costs', 'dividends', 'distributions', 'relating', 'equity', 'instruments', 'debited', 'direct', 'equity', 'critical', 'accounting', 'assumptions', 'key', 'sources', 'estimation', 'uncertainty', 'preparation', 'financial', 'statements', 'requires', 'management', 'make', 'estimates', 'assumptions', 'affect', 'amounts', 'reported', 'assets', 'liabilities', 'reporting', 'date', 'amounts', 'reported', 'revenues', 'expenses', 'period', 'nature', 'estimation', 'means', 'actual', 'outcomes', 'could', 'differ', 'estimates', 'process', 'applying', 'group', 'accounting', 'policies', 'described', 'note', 'management', 'made', 'following', 'judgements', 'significant', 'effect', 'amounts', 'recognised', 'financial', 'statements', 'point', 'capitalisation', 'amortisation', 'development', 'costs', 'useful', 'lives', 'tangible', 'intangible', 'assets', 'key', 'sources', 'estimation', 'uncertainty', 'significant', 'risk', 'causing', 'material', 'adjustments', 'carrying', 'amounts', 'assets', 'liabilities', 'within', 'next', 'financial', 'year', 'follows', 'measurement', 'impairment', 'indefinite', 'life', 'intangible', 'assets', 'including', 'goodwill', 'measurement', 'warranty', 'liabilities', 'measurement', 'defined', 'benefit', 'pension', 'assets', 'obligations', 'measurement', 'intangible', 'assets', 'goodwill', 'business', 'combination', 'involves', 'estimation', 'future', 'cash', 'flows', 'selection', 'suitable', 'discount', 'rate', 'group', 'determines', 'whether', 'indefinite', 'life', 'intangible', 'assets', 'impaired', 'annual', 'basis', 'requires', 'estimation', 'value', 'use', 'cash', 'generating', 'units', 'intangible', 'assets', 'allocated', 'involves', 'estimation', 'future', 'cash', 'flows', 'choosing', 'suitable', 'discount', 'rate', 'see', 'note', '12', 'f', '66', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', 'measurement', 'warranty', 'liabilities', 'estimated', 'past', 'experience', 'actual', 'level', 'warranty', 'claims', 'received', 'management', 'establishes', 'estimates', 'based', 'historical', 'information', 'nature', 'frequency', 'average', 'cost', 'warranty', 'claims', 'measurement', 'defined', 'benefit', 'pension', 'obligations', 'requires', 'estimation', 'future', 'changes', 'salaries', 'inflation', 'well', 'mortality', 'rates', 'expected', 'return', 'assets', 'suitable', 'discount', 'rates', 'see', 'note', '22', 'following', 'new', 'standards', 'not', 'yet', 'effective', 'endorsed', 'european', 'union', 'could', 'relevant', 'group', 'no', 'new', 'standards', 'endorsed', 'european', 'union', 'deemed', 'significant', 'group', 'relevant', 'standards', 'not', 'yet', 'endorsed', 'european', 'union', 'significant', 'impact', 'group', 'ifrs', '9', 'financial', 'instruments', 'first', 'chapters', 'new', 'standard', 'accounting', 'financial', 'instruments', 'replace', 'ias', '39', 'financial', 'instruments', 'recognition', 'measurement', 'effective', 'periods', '1', 'january', '2018', 'ifrs', '15', 'revenue', 'contracts', 'customers', 'standard', 'introduces', 'new', 'revenue', 'recognition', 'model', 'recognises', 'revenue', 'either', 'point', 'time', 'time', 'effective', 'periods', '1', 'january', '2018', '3', 'acquisition', 'subsidiary', 'acquisitions', 'prior', 'period', '30', 'apri1', '2014', 'aston', 'martin', 'holdings', 'uk', 'limited', 'aston', 'martin', 'lagonda', 'limited', 'indirect', 'subsidiary', 'exercised', 'option', 'acquire', 'additional', '10', 'share', 'capital', 'amws', 'limited', 'parent', 'company', 'aston', 'martin', 'works', 'limited', 'increasing', 'interest', 'ordinary', 'share', 'capital', 'company', '40', '50', 'aston', 'martin', 'works', 'limited', 'principal', 'activities', 'servicing', 'restoration', 'sale', 'luxury', 'high', 'performance', 'motor', 'cars', 'brand', 'name', 'aston', 'martin', '4', 'months', '30', 'april', '2014', 'subsidiary', 'contributed', 'net', 'profit', '32', '000', 'consolidated', 'net', 'profit', 'year', 'effect', 'acquisition', 'acquisition', 'following', 'effect', 'group', 'assets', 'liabilities', 'recognised', 'values', 'acquisition', '000', 'acquiree', 'net', 'assets', 'acquisition', 'date', 'property', 'plant', 'equipment', 'intangible', 'assets', 'inventories', 'trade', 'receivables', 'cash', 'cash', 'equivalents', 'trade', 'payables', '1', '318', '751', '6', '620', '2', '947', '1', '300', '4', '226', 'net', 'identifiable', 'assets', 'liabilities', '8', '710', 'consideration', 'cash', 'price', 'paid', 'fair', 'value', '50', 'investment', 'fair', 'value', '50', 'non', 'controlling', 'interest', '4', '800', '4', '355', 'total', 'consideration', '9', '155', 'goodwill', 'acquisition', '445', 'f', '67', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', '4', 'revenue', 'group', 'analysis', 'category', 'sale', 'vehicles', 'sale', 'parts', 'servicing', 'vehicles', '2015', '000', '2014', '000', '457', '404', '44', '700', '8', '068', '418', '182', '42', '072', '8', '101', '510', '172', '468', '355', '2015', '000', '2014', '000', '5', 'operating', 'loss', 'group', 'group', 'operating', 'loss', 'stated', 'charging', 'crediting', 'depreciation', 'property', 'plant', 'equipment', 'note', '13', 'amortisation', 'intangible', 'assets', 'note', '11', 'provision', 'impairment', 'trade', 'receivables', 'note', '16', 'loss', 'sale', 'property', 'plant', 'equipment', 'net', 'foreign', 'currency', 'differences', 'cost', 'inventories', 'recognised', 'expense', 'write', 'inventories', 'net', 'realisable', 'value', 'operating', 'lease', 'payments', 'land', 'buildings', 'plant', 'machinery', 'auditor', 'remuneration', 'audit', 'financial', 'statements', 'audit', 'financial', 'statements', 'subsidiaries', 'pursuant', 'legislation', 'services', 'relating', 'taxation', 'services', 'government', 'grants', 'research', 'development', 'expenditure', 'recognised', 'expense', '46', '320', '73', '157', '352', '54', '3', '204', '264', '930', '964', '28', '316', '51', '964', '84', '67', '2', '215', '249', '290', '61', '2', '818', '1', '615', '2', '580', '1', '055', '15', '15', '121', '366', '147', '10', '570', '118', '595', '99', '4', '487', '10', '100', 'research', 'development', 'expenditure', 'analysed', 'follows', 'total', 'research', 'development', 'expenditure', 'capitalised', 'research', 'development', 'expenditure', '132', '601', '122', '031', '106', '193', '96', '093', 'research', 'development', 'expenditure', 'recognised', 'expense', '10', '570', '10', '100', 'group', 'received', 'grants', 'united', 'kingdom', 'government', 'support', 'incremental', 'development', 'activities', 'safeguard', 'increase', 'employment', 'within', 'group', 'designated', 'areas', 'united', 'kingdom', 'f', '68', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', '6', 'non', 'recurring', 'items', '2015', '000', 'non', 'recurring', 'operating', 'income', 'expenses', 'impairment', 'intangible', 'tangible', 'assets', 'restructuring', 'costs', 'including', 'related', 'consultancy', 'costs', 'payment', 'former', 'director', 'relating', 'settlement', 'shares', 'gain', 'disposal', 'associated', 'company', 'concept', 'vehicle', 'development', 'costs', '2014', '000', 'b', '30', '169', '7', '547', 'c', 'e', '2', '636', '1', '706', '5', '977', 'non', 'recurring', 'items', 'tax', 'tax', 'non', 'recurring', 'items', '40', '352', '4', '271', 'non', 'recurring', 'items', 'tax', '40', '352', '4', '271', 'view', 'launch', 'new', 'models', '2016', 'onwards', 'group', 'performed', 'review', 'carrying', 'value', 'intangible', 'tangible', 'assets', 'resulted', 'impairment', 'charge', 'b', 'october', '2015', 'group', 'announced', 'business', 'rebalancing', 'programme', 'deliver', 'significant', 'efficiency', 'stability', 'business', 'mostly', 'affecting', 'administrative', 'managerial', 'positions', 'opposed', 'manufacturing', 'operations', 'charge', 'income', 'statement', 'includes', 'related', 'consultancy', 'costs', 'c', 'group', 'made', 'contractual', 'payment', 'former', 'director', 'relating', 'settlement', 'partly', 'paid', 'shares', '30', 'april', '2014', 'group', 'exercised', 'option', 'acquire', 'additional', '10', 'share', 'capital', 'amws', 'limited', 'parent', 'company', 'aston', 'martin', 'works', 'limited', 'consideration', '100', 'increasing', 'interest', 'ordinary', 'share', 'capital', 'company', '40', '50', 'aston', 'martin', 'works', 'limited', 'principal', 'activities', 'servicing', 'restoration', 'sale', 'luxury', 'high', 'performance', 'motor', 'cars', 'brand', 'name', 'aston', 'martin', 'previously', 'aston', 'martin', 'works', 'limited', 'accounted', 'associated', 'company', 'using', 'equity', 'method', 'accounting', 'following', 'increase', 'shareholding', '50', 'became', 'subsidiary', 'fully', 'consolidated', '1', 'may', '2014', 'accordance', 'ifrs', '3', 'accounting', 'purposes', 'transaction', 'treated', 'disposal', '40', 'interest', 'acquisition', 'new', '50', 'interest', 'giving', 'rise', 'gain', 'disposal', 'associated', 'company', '1', '706', '000', 'treated', 'non', 'recurring', 'item', 'recorded', 'administrative', 'expenses', 'condensed', 'consolidated', 'statement', 'comprehensive', 'income', '1', 'may', '2014', 'condensed', 'consolidated', 'statement', 'comprehensive', 'income', 'includes', 'revenues', 'costs', 'aston', 'martin', 'works', 'limited', 'whilst', 'condensed', 'consolidated', 'statement', 'financial', 'position', 'shows', 'assets', 'liabilities', 'e', 'year', 'ended', '31', 'december', '2014', 'group', 'incurred', 'significant', 'one', 'costs', 'relation', 'concept', 'vehicles', 'continues', 'largest', 'investment', 'future', 'models', '103', 'year', 'history', 'no', 'tax', 'effect', 'non', 'recurring', 'items', 'either', 'year', 'f', '69', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', '7', 'staff', 'costs', 'directors', 'emoluments', 'group', 'staff', 'costs', 'year', 'ended', '31', 'december', '2015', '000', 'year', 'ended', '31', 'december', '2014', '000', '75', '766', '7', '641', '9', '717', '1', '831', '62', '473', '5', '858', '8', '709', '1', '183', '94', '955', '78', '223', 'wages', 'salaries', 'social', 'security', 'costs', 'expenses', 'related', 'post', 'employment', 'defined', 'benefit', 'plan', 'contributions', 'defined', 'contribution', 'plans', 'year', 'company', 'no', 'employees', 'staff', 'costs', '2014', 'none', 'average', 'monthly', 'number', 'employees', 'years', 'ended', '31', 'december', '2015', '31', 'december', '2014', 'activity', 'production', 'selling', 'distribution', 'administration', '2015', '2014', '681', '206', '589', '666', '200', '512', '1', '476', '1', '378', '2015', '000', '2014', '000', '3', '498', '1', '094', 'b', 'directors', 'emoluments', 'transactions', 'directors', 'emoluments', 'none', 'directors', 'received', 'amounts', 'long', 'term', 'incentive', 'plans', 'one', 'director', 'member', 'group', 'pension', 'scheme', 'years', 'highest', 'paid', 'director', 'aggregate', 'emoluments', '2', '598', '194', '2015', '000', '2014', '000', '7', '549', '615', '8', '164', '4', '004', '445', '4', '449', 'compensation', 'key', 'management', 'personnel', 'including', 'directors', 'short', 'term', 'employee', 'benefits', 'post', 'employment', 'benefits', 'compensation', 'loss', 'office', 'payments', 'included', 'amounted', '18', '563', '2014', '13', '338', 'directors', 'benefited', 'qualifying', 'third', 'party', 'indemnity', 'provisions', 'f', '70', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', '8', 'finance', 'income', 'group', 'year', 'ended', '31', 'december', '2015', '000', 'year', 'ended', '31', 'december', '2014', '000', 'bank', 'deposit', 'interest', 'income', 'net', 'interest', 'income', 'net', 'defined', 'benefit', 'liability', 'net', 'gain', 'financial', 'instruments', 'recognised', 'fair', 'value', 'profit', 'loss', '2', '090', '2', '037', '287', '224', 'total', 'finance', 'income', '2', '090', '2', '548', '9', 'finance', 'expense', 'group', '2015', '000', 'bank', 'loans', 'overdrafts', 'net', 'interest', 'expense', 'net', 'defined', 'benefit', 'liability', 'interest', 'preference', 'shares', 'classified', 'financial', 'liabilities', 'net', 'loss', 'financial', 'instruments', 'recognised', 'fair', 'value', 'profit', 'loss', 'net', 'foreign', 'exchange', 'loss', 'total', 'finance', 'expense', '2014', '000', '46', '670', '42', '159', '277', '10', '838', '6', '850', '7', '101', '7', '129', '6', '758', '71', '764', '56', '018', '10', 'tax', 'expense', 'continuing', 'operations', 'group', '2015', '000', 'current', 'tax', 'expense', 'uk', 'corporation', 'tax', 'profits', 'overseas', 'tax', 'prior', 'period', 'movement', 'total', 'current', 'income', 'tax', 'deferred', 'tax', 'expense', 'origination', 'reversal', 'temporary', 'differences', 'effect', 'change', 'tax', 'laws', 'prior', 'period', 'movement', 'total', 'deferred', 'tax', 'total', 'tax', 'credit', 'tax', 'relating', 'items', 'charged', 'comprehensive', 'income', 'deferred', 'tax', 'actuarial', 'gains', 'losses', 'defined', 'benefit', 'pension', 'plan', 'f', '71', '2014', '000', '47', '43', '430', '1', '620', '16', '67', '493', '1', '596', '15', '388', '6', '004', '100', '21', '492', '20', '999', '8', '292', '383', '8', '675', '7', '079', '1', '278', '3', '255', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', 'b', 'reconciliation', 'total', 'tax', 'charge', 'tax', 'credit', '2014', 'credit', 'consolidated', 'statement', 'comprehensive', 'income', 'year', 'lower', '2014', 'lower', 'standard', 'rate', 'corporation', 'tax', 'uk', '20', '25', '2014', '21', '5', 'differences', 'reconciled', '2015', '000', 'loss', 'operations', 'taxation', '2014', '000', '127', '956', 'loss', 'operations', 'taxation', 'multiplied', 'standard', 'rate', 'corporation', 'tax', 'uk', '20', '25', '2014', '21', '5', '20', '25', '71', '831', '25', '911', '21', '5', '15', '444', 'difference', 'current', 'tax', 'credit', 'due', 'effects', 'unrecognised', 'tax', 'losses', 'additional', 'tax', 'credit', 'research', 'development', 'expenses', 'not', 'deductible', 'tax', 'purposes', 'adjustments', 'respect', 'prior', 'periods', 'effect', 'change', 'tax', 'laws', '6', '701', '2', '100', '84', '4', '201', '396', '6', '638', '8', '1', '165', '450', '1', '020', 'total', 'tax', 'credit', '20', '999', '7', '079', 'c', 'factors', 'affecting', 'future', 'tax', 'charges', 'reductions', 'uk', 'corporation', 'tax', 'rate', '23', '21', 'effective', '1', 'april', '2014', '20', 'effective', '1', 'april', '2015', 'substantively', 'enacted', '2', 'july', '2013', 'reductions', '19', 'effective', '1', 'april', '2017', '18', 'effective', '1', 'april', '2020', 'substantively', 'enacted', '26', 'october', '2015', 'deferred', 'tax', 'liability', '31', 'december', '2015', 'calculated', 'based', 'rates', 'additional', 'reduction', '17', 'effective', '1', 'april', '2020', 'announced', 'budget', '16', 'march', '2016', 'reduce', 'group', 'future', 'current', 'tax', 'charge', 'accordingly', 'deferred', 'tax', 'recognised', 'deferred', 'tax', 'assets', 'liabilities', 'deferred', 'tax', 'assets', 'liabilities', 'attributable', 'following', 'assets', '2015', '000', 'assets', '2014', '000', 'liabilities', '2015', '000', 'liabilities', '2014', '000', 'property', 'plant', 'equipment', 'intangible', 'assets', 'employee', 'benefits', 'provisions', 'losses', '33', '819', '27', '102', '890', '2', '481', '2', '416', '2', '910', '11', '178', '11', '531', '85', '959', '101', '894', 'tax', 'assets', 'liabilities', '48', '303', '44', '024', '85', '959', '101', '894', '48', '303', '44', '024', 'set', 'tax', 'liabilities', 'assets', 'f', '72', '48', '303', '44', '024', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', 'movement', 'deferred', 'tax', '2015', '1', 'january', '2015', '000', 'property', 'plant', 'equipment', 'intangible', 'assets', 'employee', 'benefits', 'provisions', 'losses', 'recognised', 'income', '000', 'recognised', 'equity', '000', '31', 'december', '2015', '000', '27', '102', '101', '894', '2', '481', '2', '910', '11', '531', '6', '717', '15', '935', '313', '494', '353', '1', '278', '33', '819', '85', '959', '890', '2', '416', '11', '178', '57', '870', '21', '492', '1', '278', '37', '656', 'recognised', 'equity', '000', '31', 'december', '2014', '000', 'movement', 'deferred', 'tax', '2014', '1', 'january', '2014', '000', 'property', 'plant', 'equipment', 'intangible', 'assets', 'employee', 'benefits', 'provisions', 'losses', 'recognised', 'income', '000', '20', '414', '91', '597', '377', '842', '2', '602', '6', '688', '10', '297', '397', '3', '752', '8', '929', '3', '255', '27', '102', '101', '894', '2', '481', '2', '910', '11', '531', '69', '800', '8', '675', '3', '255', '57', '870', 'deferred', 'tax', 'assets', 'not', 'recognised', 'respect', 'following', 'items', 'tax', 'losses', '2015', '000', '2014', '000', '26', '804', '23', '181', 'deferred', 'tax', 'assets', 'not', 'recognised', 'not', 'probable', 'future', 'taxable', 'profit', 'available', 'group', 'utilise', 'benefits', 'therefrom', 'deferred', 'tax', 'asset', 'recognised', 'respect', 'losses', 'trading', 'companies', 'future', 'trading', 'profits', 'foreseen', 'f', '73', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', '11', 'intangible', 'assets', 'group', 'dealer', 'network', '000', 'brands', '000', 'technology', '000', '000', 'goodwill', '000', 'total', '000', 'cost', 'balance', '1', 'january', '2014', 'additions', 'transfer', '242', '600', '96', '885', '4', '417', '15', '400', '309', '993', '101', '214', '84', '131', '749', '009', '445', '106', '076', '860', '860', 'balance', '31', 'december', '2014', '242', '600', '101', '302', '15', '400', '411', '207', '85', '436', '855', '945', 'balance', '1', 'january', '2015', 'additions', '242', '600', '101', '302', '15', '400', '411', '207', '124', '649', '85', '436', '855', '945', '124', '649', 'balance', '31', 'december', '2015', '242', '600', '101', '302', '15', '400', '535', '856', '85', '436', '980', '594', 'amortisation', 'balance', '1', 'january', '2014', 'amortisation', 'year', 'transfer', '52', '733', '8', '010', '5', '069', '120', '265', '770', '43', '093', '178', '067', '91', '51', '964', '109', '109', 'balance', '31', 'december', '2014', '60', '743', '5', '839', '163', '358', '200', '230', '140', 'balance', '1', 'january', '2015', 'amortisation', 'year', '60', '743', '19', '357', '5', '839', '163', '358', '770', '52', '898', '200', '230', '140', '132', '73', '157', 'balance', '31', 'december', '2015', '80', '100', '6', '609', '216', '256', '332', '303', '297', 'carrying', 'amounts', '1', 'january', '2014', '242', '600', '44', '152', '10', '331', '189', '728', '84', '131', '570', '942', '31', 'december', '2014', '242', '600', '40', '559', '9', '561', '247', '849', '85', '236', '625', '805', '1', 'january', '2015', '242', '600', '40', '559', '9', '561', '247', '849', '85', '236', '625', '805', '31', 'december', '2015', '242', '600', '21', '202', '8', '791', '319', '600', '85', '104', '677', '297', 'brand', 'identified', 'valued', 'acquisition', 'aston', 'martin', 'lagonda', 'group', 'limited', 'identified', 'indefinite', 'life', 'due', 'long', 'history', 'wide', 'recognition', 'brand', 'meant', 'not', 'possible', 'identify', 'future', 'lifetime', 'intangible', 'assets', '319', '600', '000', '2014', '247', '849', '000', 'include', '315', '756', '000', '2014', '237', '700', '000', 'relating', 'capitalised', 'development', 'costs', '1', '535', '000', 'relating', 'chinese', 'distribution', 'rights', '2014', '2', '762', '000', '2', '098', '000', 'relating', 'software', 'development', '2014', '7', '026', '000', 'goodwill', '85', '104', '000', '2014', '85', '236', '000', 'arose', 'acquisition', 'aston', 'martin', 'lagonda', 'group', 'limited', 'aston', 'martin', 'holdings', 'uk', 'limited', 'via', 'aston', 'martin', 'investments', 'limited', '2007', 'addition', '445', '000', 'year', 'ended', '31', 'december', '2014', 'arose', 'acquisition', 'amws', 'limited', 'parent', 'company', 'aston', 'martin', 'works', 'limited', 'transfer', 'net', 'book', 'value', '751', '000', '2014', 'relates', 'acquisition', 'aston', 'martin', 'works', 'limited', 'amortisation', 'year', 'ended', '31', 'december', '2015', 'relates', 'amortisation', 'goodwill', 'acquisition', 'amws', 'limited', '89', '000', '2014', '59', '000', 'amortisation', 'goodwill', 'within', 'aston', 'martin', 'works', 'limited', '43', '000', '2014', '32', '000', 'no', 'intangible', 'assets', 'company', 'f', '74', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', '12', 'impairment', 'testing', 'goodwill', 'intangible', 'fixed', 'assets', 'indefinite', 'useful', 'lives', 'group', 'goodwill', 'brands', 'acquired', 'business', 'combinations', 'allocated', 'impairment', 'testing', 'purposes', 'one', 'cash', 'generating', 'unit', 'aston', 'martin', 'lagonda', 'group', 'limited', 'business', 'represents', 'lowest', 'level', 'within', 'group', 'goodwill', 'brands', 'monitored', 'internal', 'purposes', 'group', 'tests', 'carrying', 'value', 'goodwill', 'brands', 'cash', 'generating', 'unit', 'level', 'impairment', 'annually', 'frequently', 'indications', 'goodwill', 'brands', 'might', 'impaired', 'year', 'end', 'reporting', 'date', 'review', 'undertaken', 'value', 'use', 'basis', 'assessing', 'whether', 'carrying', 'values', 'goodwill', 'brands', 'supported', 'net', 'present', 'value', 'future', 'cash', 'flows', 'derived', 'assets', 'key', 'assumptions', 'used', 'value', 'use', 'calculations', 'calculation', 'value', 'use', 'cash', 'generating', 'unit', 'sensitive', 'following', 'assumptions', 'cash', 'flows', 'projected', 'based', 'actual', 'operating', 'results', 'five', 'year', 'business', 'plan', 'beyond', 'cash', 'flows', 'extrapolated', 'using', 'constant', 'growth', 'rate', '2', 'per', 'annum', 'key', 'assumptions', 'revenue', 'gross', 'margin', 'fixed', 'costs', 'within', 'forecasts', 'based', 'past', 'experience', 'current', 'business', 'strategy', 'discount', 'rates', 'calculated', 'using', 'weighted', 'average', 'cost', 'capital', 'approach', 'reflect', 'individual', 'nature', 'specific', 'risks', 'relating', 'business', 'market', 'operates', 'pre', 'tax', 'discount', 'rate', 'used', '12', '0', 'exchange', 'rate', '1', '56', 'used', 'forecast', 'sensitivity', 'analysis', 'pre', 'tax', 'discount', 'rate', 'would', 'need', 'increase', '16', '3', 'order', 'assets', 'become', 'impaired', 'rate', 'growth', '2', 'per', 'annum', 'beyond', 'six', 'year', 'plan', 'would', 'need', 'decline', '6', '5', 'order', 'assets', 'become', 'impaired', 'exchange', 'rate', 'would', 'need', 'increase', '2', '38', 'currencies', 'moving', 'line', 'order', 'assets', 'become', 'impaired', 'f', '75', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', '13', 'property', 'plant', 'equipment', 'group', 'freehold', 'land', 'buildings', '000', 'plant', 'machinery', 'fixtures', 'fittings', 'tooling', '000', 'motor', 'vehicles', '000', 'total', '000', 'cost', 'balance', '1', 'january', '2014', 'additions', 'transfer', 'note', '14', 'disposals', 'effect', 'movements', 'exchange', 'rates', '63', '118', '5', '158', '88', '219', '290', '764', '15', '618', '1', '395', '435', '49', '819', '354', '701', '76', '20', '852', '1', '483', '435', '7', '275', 'balance', '31', 'december', '2014', '68', '145', '307', '293', '888', '376', '326', 'balance', '1', 'january', '2015', 'additions', 'disposals', 'effect', 'movements', 'exchange', 'rates', '68', '145', '23', '155', '307', '293', '38', '517', '184', '29', '888', '376', '326', '38', '517', '50', '257', '5', '189', 'balance', '31', 'december', '2015', '67', '967', '345', '597', '833', '414', '397', 'depreciation', 'balance', '1', 'january', '2014', 'charge', 'year', 'transfer', 'note', '14', 'disposals', 'effect', 'movements', 'exchange', 'rates', '13', '691', '2', '231', '2', '45', '160', '138', '26', '069', '163', '350', '26', '63', '173', '892', '16', '28', '316', '165', '350', '5', '76', 'balance', '31', 'december', '2014', '15', '879', '185', '994', '74', '201', '947', 'balance', '1', 'january', '2015', 'charge', 'year', 'disposals', 'effect', 'movements', 'exchange', 'rates', '15', '879', '2', '305', '9', '35', '185', '994', '43', '990', '101', '37', '74', '201', '947', '25', '46', '320', '110', '2', '74', 'balance', '31', 'december', '2015', '18', '140', '229', '846', '97', '248', '083', 'carrying', 'amounts', '1', 'january', '2014', '49', '427', '130', '626', '756', '180', '809', '31', 'december', '2014', '52', '266', '121', '299', '814', '174', '379', '1', 'january', '2015', '52', '266', '121', '299', '814', '174', '379', '31', 'december', '2015', '49', '827', '115', '751', '736', '166', '314', 'detailed', 'note', '19', 'property', 'plant', 'equipment', 'provides', 'security', 'fixed', 'floating', 'charge', 'favour', 'holders', '9', '25', 'senior', 'secured', 'notes', 'assets', 'course', 'construction', 'cost', '125', '000', '2014', '13', '171', '000', 'included', 'within', 'land', 'buildings', 'assets', 'course', 'construction', 'cost', '20', '113', '000', '2014', '15', '115', '000', 'included', 'within', 'plant', 'machinery', 'capital', 'expenditure', 'contracts', 'value', '43', '879', '000', 'placed', 'not', 'provided', '31', 'december', '2015', '2014', '26', '135', '000', 'no', 'property', 'plant', 'equipment', 'company', '2014', 'nil', 'f', '76', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', '14', 'investments', 'investments', 'subsidiary', 'undertakings', 'company', 'proportion', 'voting', 'rights', 'shares', 'held', 'subsidiary', 'undertakings', 'holding', 'aston', 'martin', 'capital', 'limited', 'ordinary', '100', 'aston', 'martin', 'investments', 'limited', 'aston', 'martin', 'lagonda', 'group', 'limited', 'aston', 'martin', 'lagonda', 'north', 'america', 'incorporated', 'lagonda', 'properties', 'limited', 'aston', 'martin', 'lagonda', 'pension', 'trustees', 'limited', 'ordinary', '100', 'financing', 'company', 'holding', 'senior', 'secured', 'notes', 'holding', 'company', 'ordinary', '100', 'holding', 'company', 'ordinary', 'ordinary', '100', '100', 'ordinary', '100', 'aston', 'martin', 'lagonda', 'limited', 'ordinary', '100', 'aston', 'martin', 'lagonda', 'europe', 'gmbh', 'aml', 'overseas', 'services', 'limited', 'ordinary', 'ordinary', '100', '100', 'aston', 'martin', 'italy', 'r', 'l', 'ordinary', '100', 'aml', 'italy', 'r', 'l', 'aston', 'martin', 'lagonda', 'china', 'automobile', 'distribution', 'co', 'ltd', 'nurburgring', 'racing', 'limited', 'aston', 'martin', 'japan', 'gk', 'ordinary', '100', 'luxury', 'sports', 'car', 'distributor', 'dormant', 'company', 'trustee', 'aston', 'martin', 'lagonda', 'limited', 'pension', 'scheme', 'manufacture', 'sale', 'luxury', 'sports', 'cars', 'sale', 'parts', 'provision', 'engineering', 'sales', 'marketing', 'services', 'provision', 'management', 'services', 'aston', 'martin', 'lagonda', 'limited', 'sale', 'servicing', 'luxury', 'sports', 'cars', 'sale', 'parts', 'dormant', 'company', 'ordinary', 'ordinary', 'ordinary', '100', '100', '100', 'amws', 'limited', 'aston', 'martin', 'works', 'limited', 'ordinary', 'ordinary', '50', '50', 'subsidiaries', 'incorporated', 'england', 'wales', 'unless', 'otherwise', 'stated', 'incorporated', 'jersey', 'incorporated', 'united', 'states', 'america', 'incorporated', 'germany', 'incorporated', 'italy', 'incorporated', 'japan', 'incorporated', 'people', 'republic', 'china', 'held', 'directly', 'aston', 'martin', 'holdings', 'uk', 'limited', 'held', 'indirectly', 'aston', 'martin', 'holdings', 'uk', 'limited', 'f', '77', 'nature', 'business', 'luxury', 'sports', 'car', 'distributor', 'dormant', 'company', 'aston', 'martin', 'japan', 'gk', 'operates', 'sales', 'office', 'japan', 'certain', 'countries', 'asia', 'pacific', 'region', 'holding', 'company', 'sale', 'servicing', 'restoration', 'aston', 'martin', 'cars', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', 'shares', 'subsidiary', 'undertakings', '000', 'cost', 'carrying', 'value', '1', 'january', '2015', 'additions', '667', '982', '31', 'december', '2015', '667', '982', '30', 'april', '2014', 'group', 'exercised', 'option', 'acquire', 'additional', '10', 'share', 'capital', 'amws', 'limited', 'parent', 'company', 'aston', 'martin', 'works', 'limited', 'consideration', '100', 'increasing', 'interest', 'ordinary', 'share', 'capital', 'company', '40', '50', 'previously', 'aston', 'martin', 'works', 'limited', 'accounted', 'associated', 'company', 'using', 'equity', 'method', 'accounting', 'following', 'increase', 'shareholding', '50', 'became', 'subsidiary', 'fully', 'consolidated', '1', 'may', '2014', '1', 'may', '2014', 'condensed', 'consolidated', 'statement', 'comprehensive', 'income', 'includes', 'revenues', 'costs', 'aston', 'martin', 'works', 'limited', 'whilst', 'condensed', 'consolidated', 'statement', 'financial', 'position', 'shows', 'assets', 'liabilities', 'investments', 'associates', 'investment', 'associated', 'undertakings', '000', 'cost', 'carrying', 'value', '1', 'january', '2015', '31', 'december', '2015', 'company', '40', 'share', 'post', 'acquisition', 'result', 'amws', 'limited', 'date', 'disposal', 'immediate', 'acquisition', 'subsidiary', '30', 'april', '2014', 'detailed', 'year', 'ended', '31', 'december', '2015', '000', 'period', '30', 'april', '2014', '000', 'turnover', '2', '783', 'profit', 'tax', 'taxation', '32', 'profit', 'tax', '32', 'fixed', 'assets', 'current', 'assets', 'liabilities', 'due', 'within', 'one', 'year', '15', 'inventories', 'group', '2015', '000', 'service', 'parts', 'spares', 'production', 'stock', 'work', 'progress', 'finished', 'cars', 'parts', 'resale', '2014', '000', '33', '902', '31', '758', '14', '034', '12', '465', '32', '427', '54', '204', '80', '363', '98', '427', 'finished', 'cars', 'parts', 'resale', 'includes', 'group', 'owned', 'service', 'vehicles', 'net', 'realisable', 'value', '11', '777', '000', '31', 'december', '2014', '14', '867', '000', 'vehicles', 'used', 'employees', 'group', 'not', 'retained', 'group', 'periods', 'excess', 'one', 'year', 'no', 'inventories', 'company', '2015', 'nil', 'f', '78', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', '16', 'trade', 'receivables', 'group', 'company', 'group', '2015', '000', 'amounts', 'included', 'current', 'assets', 'trade', 'receivables', 'owed', 'group', 'undertakings', 'see', 'note', '28', 'owed', 'related', 'parties', 'see', 'note', '28', 'receivables', 'including', 'taxation', 'prepayments', 'amounts', 'included', 'non', 'current', 'assets', 'receivables', 'group', '2014', '000', 'company', '2015', '000', 'company', '2014', '000', '47', '227', '28', '247', '16', '630', '17', '513', '5', '256', '5', '778', '160', '566', '667', '94', '968', '255', '69', '113', '51', '538', '161', '233', '95', '223', '2', '169', 'trade', 'receivables', 'receivables', 'non', 'interest', 'bearing', 'generally', 'terms', '10', '30', 'days', 'amounts', 'financed', 'trade', 'finance', 'facility', 'standard', 'chartered', 'bank', 'plc', 'see', 'terms', '30', '60', 'days', 'due', 'short', 'maturities', 'fair', 'value', 'trade', 'receivables', 'approximates', 'book', 'value', 'majority', 'group', 'receivables', 'derived', 'sales', 'franchised', 'dealers', 'appointed', 'group', 'receivables', 'supported', 'credit', 'risk', 'insurance', 'credit', 'limit', 'franchised', 'dealer', 'set', 'insurance', 'company', 'consultation', 'group', 'credit', 'risk', 'discussed', 'note', '19', 'financed', 'vehicle', 'sales', 'made', 'directly', 'third', 'party', 'aston', 'martin', 'franchised', 'dealers', 'large', 'proportion', 'financed', '100', '000', '000', 'trade', 'finance', 'facility', 'standard', 'chartered', 'bank', 'plc', 'associated', 'credit', 'insurance', 'policy', 'group', 'entered', 'financing', 'agreement', 'standard', 'chartered', 'bank', 'plc', 'whereby', 'standard', 'chartered', 'bank', 'plc', 'advance', 'group', 'sales', 'value', 'vehicles', 'despatched', 'upon', 'receipt', 'transportation', 'documentation', 'substantially', 'risks', 'associated', 'receivables', 'reside', 'standard', 'chartered', 'bank', 'plc', 'therefore', 'financing', 'arrangement', 'treated', 'balance', 'sheet', 'utilisation', 'facility', '31', 'december', '2015', '84', '415', '000', '2014', '89', '988', '000', 'carrying', 'amount', 'trade', 'receivables', 'excluding', 'prepayments', 'denominated', 'following', 'currencies', 'group', '2015', '000', 'sterling', 'chinese', 'renminbi', 'euro', 'us', 'dollar', 'f', '79', 'group', '2014', '000', 'company', '2015', '000', 'company', '2014', '000', '37', '963', '22', '306', '8', '207', '9', '778', '1', '887', '5', '792', '12', '565', '7', '490', '5', '404', '394', '160', '566', '94', '968', '66', '026', '45', '760', '160', '566', '94', '968', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', 'provision', 'impairment', 'receivables', 'trade', 'receivables', 'value', '428', '000', 'impaired', 'group', '31', 'december', '2015', '31', 'december', '2014', '331', '000', 'management', 'review', 'trade', 'receivables', 'individual', 'account', 'basis', 'make', 'provision', 'recoverability', 'doubtful', 'group', '2015', '000', 'group', '2014', '000', 'company', '2015', '000', 'company', '2014', '000', '1', 'january', 'charge', 'year', 'utilised', 'transfer', 'acquisition', 'amws', 'limited', 'note', '14', 'effect', 'movements', 'exchange', 'rates', '331', '352', '19', '236', '356', '84', '50', '3', '62', '31', 'december', '428', '331', '31', 'december', '2015', 'trade', 'receivables', '13', '134', '000', 'overdue', 'not', 'impaired', '31', 'december', '2014', '6', '268', '000', 'ageing', 'analysis', 'trade', 'receivables', 'follows', 'group', '2015', '000', 'group', '2014', '000', 'company', '2015', '000', 'company', '2014', '000', '3', 'months', 'overdue', '3', '6', 'months', 'overdue', '6', 'months', 'overdue', '9', '716', '2', '862', '556', '2', '649', '114', '3', '505', 'total', '13', '134', '6', '268', 'group', '2015', '000', 'group', '2014', '000', 'company', '2015', '000', 'company', '2014', '000', '65', '562', '89', '250', '1', '1', 'no', 'impairments', 'company', 'either', 'year', '17', 'cash', 'cash', 'equivalents', 'group', 'company', 'cash', 'bank', 'hand', 'cash', 'bank', 'earns', 'interest', 'floating', 'rates', 'based', 'daily', 'bank', 'deposit', 'rates', 'book', 'value', 'cash', 'cash', 'equivalents', 'approximates', 'fair', 'value', 'cash', 'held', 'following', 'currencies', 'held', 'currencies', 'sterling', 'converted', 'sterling', 'year', 'end', 'exchange', 'rates', 'sterling', 'chinese', 'renminbi', 'us', 'dollar', 'f', '80', 'group', '2015', '000', 'group', '2014', '000', 'company', '2015', '000', 'company', '2014', '000', '16', '986', '12', '783', '10', '025', '25', '768', '15', '619', '28', '298', '27', '642', '17', '691', '1', '1', '65', '562', '89', '250', '1', '1', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', '18', 'trade', 'payables', 'current', 'trade', 'payables', 'group', 'company', 'trade', 'payables', 'due', 'group', 'undertakings', 'see', 'note', '28', 'due', 'related', 'parties', 'see', 'note', '28', 'accruals', 'payables', 'group', '2015', '000', 'group', '2014', '000', 'company', '2015', '000', 'company', '2014', '000', '63', '633', '483', '116', '177', '61', '004', '269', '98', '775', '178', '192', '988', '206', '317', '980', '180', '293', '160', '048', '179', '180', '207', '297', 'trade', 'payables', 'non', 'interest', 'bearing', 'group', 'policy', 'pay', 'within', 'stated', 'terms', 'vary', '14', '60', 'days', 'trade', 'payables', 'held', 'amortised', 'cost', 'amortised', 'cash', 'flows', 'expected', 'mature', 'within', '12', 'months', 'year', 'end', '19', 'financial', 'instruments', 'group', 'company', 'group', 'principal', 'financial', 'instruments', 'comprise', 'senior', 'secured', 'notes', 'senior', 'subordinated', 'pik', 'notes', 'preference', 'shares', 'revolving', 'credit', 'facility', 'inventory', 'financing', 'facilities', 'cash', 'forward', 'currency', 'contracts', 'group', 'also', 'trade', 'payables', 'trade', 'receivables', 'arise', 'directly', 'operations', 'short', 'term', 'assets', 'liabilities', 'included', 'currency', 'risk', 'disclosure', 'main', 'risks', 'arising', 'group', 'financial', 'instruments', 'credit', 'risk', 'interest', 'rate', 'risk', 'currency', 'risk', 'liquidity', 'risk', 'shown', 'board', 'directors', 'overall', 'responsibility', 'establishment', 'oversight', 'group', 'risk', 'management', 'framework', 'group', 'risk', 'policies', 'established', 'identify', 'analyse', 'risks', 'faced', 'group', 'set', 'appropriate', 'risk', 'limits', 'controls', 'monitor', 'risk', 'adherence', 'limits', 'board', 'directors', 'oversees', 'management', 'monitor', 'compliance', 'group', 'risk', 'management', 'policies', 'procedures', 'reviews', 'adequacy', 'risk', 'management', 'framework', 'relation', 'risks', 'faced', 'group', 'credit', 'risk', 'group', 'sells', 'vehicles', 'dedicated', 'dealer', 'network', 'dealers', 'outside', 'north', 'america', 'required', 'pay', 'vehicles', 'advance', 'despatch', 'use', 'wholesale', 'financing', 'scheme', 'standard', 'chartered', 'bank', 'plc', 'see', 'liquidity', 'risk', 'dealers', 'within', 'north', 'america', 'allowed', '10', 'day', 'credit', 'terms', 'date', 'invoice', 'use', 'wholesale', 'financing', 'scheme', 'standard', 'chartered', 'bank', 'plc', 'substantially', 'risk', 'associated', 'wholesale', 'financing', 'scheme', 'addition', 'vehicle', 'sales', 'wholesale', 'financing', 'scheme', 'covered', 'credit', 'risk', 'insurance', 'exceptional', 'circumstances', 'thorough', 'consideration', 'credit', 'history', 'individual', 'dealer', 'group', 'may', 'sell', 'vehicles', 'dealer', 'outside', 'credit', 'risk', 'insurance', 'policy', 'deferred', 'payment', 'terms', 'parts', 'sales', 'represent', 'smaller', 'element', 'total', 'revenue', 'made', 'dealers', '30', 'day', 'credit', 'terms', 'service', 'receivables', 'due', 'payment', 'collection', 'vehicle', 'interest', 'rate', 'risk', 'group', 'uses', 'wholesale', 'financing', 'scheme', 'fund', 'certain', 'vehicle', 'receivables', 'also', 'places', 'surplus', 'cash', 'funds', 'deposit', 'arrangements', 'attract', 'interest', 'rate', 'varies', 'depending', 'libor', 'f', '81', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', 'group', 'entered', 'number', 'arrangements', 'finance', 'group', 'inventory', 'order', 'pipeline', 'aston', 'martin', 'lagonda', 'limited', 'aston', 'martin', 'lagonda', 'china', 'automobile', 'distribution', 'co', 'ltd', 'total', 'borrowings', 'facilities', '31', 'december', '2015', '16', '6m', '2014', '19', '8m', 'interest', 'rate', 'charged', 'facilities', 'determined', 'borrowings', 'made', 'borrowings', 'made', 'periods', 'not', 'excess', 'six', 'months', 'interest', 'rates', 'charged', 'inventory', 'financing', 'based', 'libor', 'interest', 'rates', 'charged', 'order', 'pipeline', 'financing', 'rates', 'charged', 'chinese', 'banks', 'borrowings', 'following', 'table', 'analyses', 'borrowings', 'group', '2015', '000', 'group', '2014', '000', 'company', '2015', '000', 'company', '2014', '000', '16', '597', '19', '808', 'non', 'current', 'senior', 'secured', 'notes', 'senior', 'subordinated', 'pik', 'notes', 'preference', 'shares', '300', '042', '298', '403', '133', '796', '114', '195', '98', '265', '133', '796', '98', '265', '114', '195', 'total', 'non', 'current', 'borrowings', '532', '103', '412', '598', '232', '061', '114', '195', 'total', 'borrowings', '548', '700', '432', '406', '232', '061', '114', '195', 'current', 'bank', 'loans', 'overdrafts', 'june', '2011', 'group', 'issued', '304', '000', '000', '9', '25', 'senior', 'secured', 'notes', 'repayable', 'july', '2018', 'senior', 'secured', 'notes', 'quoted', 'luxembourg', 'stock', 'exchange', 'interest', 'rate', 'payable', 'senior', 'secured', 'notes', 'fixed', '9', '25', 'per', 'annum', 'repayment', 'date', 'described', 'accounting', 'policies', 'borrowings', 'initially', 'recognised', 'fair', 'value', 'less', 'attributable', 'transaction', 'costs', 'subject', 'initial', 'recognition', 'borrowings', 'stated', 'amortised', 'cost', 'difference', 'cost', 'redemption', 'value', 'recognised', 'statement', 'comprehensive', 'income', 'period', 'borrowings', 'effective', 'interest', 'basis', 'senior', 'secured', 'notes', 'secured', 'fixed', 'floating', 'charges', 'certain', 'assets', 'group', 'attached', 'senior', 'secured', 'notes', '40', '000', '000', 'revolving', 'credit', 'facility', 'undrawn', '31', 'december', '2015', '31', 'december', '2014', 'group', 'entered', 'number', 'arrangements', 'finance', 'group', 'inventory', 'order', 'pipeline', 'aston', 'martin', 'lagonda', 'limited', 'aston', 'martin', 'lagonda', 'china', 'automobile', 'distribution', 'co', 'ltd', 'total', 'borrowings', 'facilities', '31', 'december', '2015', '16', '597', '000', 'year', 'ended', '31', 'december', '2014', '19', '808', '000', 'march', '2014', 'group', 'issued', '165', '000', '000', '99', '620', '000', 'senior', 'subordinated', 'pik', 'notes', 'repayable', 'july', '2018', 'interest', 'rate', 'payable', 'senior', 'secured', 'pik', 'notes', '10', '25', 'per', 'annum', 'interest', 'charged', 'semi', 'annually', 'arrears', 'january', '15th', 'july', '15th', 'year', 'interest', 'charged', 'increases', 'principal', 'amount', 'senior', 'subordinated', 'pik', 'notes', 'payable', 'repayment', 'senior', 'subordinated', 'pik', 'notes', 'july', '2018', 'april', '2015', 'group', 'issued', '100', '000', '000', 'preference', 'shares', 'redeemable', 'april', '2025', 'preference', 'shares', 'initially', 'recognised', 'fair', 'value', 'date', 'issue', 'par', 'value', 'preference', 'shares', '100', '000', '000', 'rate', 'interest', 'group', 'redeemable', 'cumulative', 'preference', 'shares', '15', 'per', 'annum', 'payable', 'redemption', 'shares', 'borrowing', 'costs', '4', '246', '000', '2014', '585', '000', 'capitalised', 'year', 'ended', '31', 'december', '2015', 'includes', '3', '536', '000', 'relating', 'issue', 'preference', 'shares', 'f', '82', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', 'interest', 'rate', 'risks', 'sensitivity', 'june', '2011', 'group', 'issued', '304', '000', '000', '9', '25', 'senior', 'secured', 'notes', 'repayable', 'july', '2018', 'senior', 'secured', 'notes', 'attract', 'fixed', 'rate', 'interest', 'no', 'interest', 'rate', 'risk', 'attached', 'attached', 'senior', 'secured', 'notes', '40', '000', '000', 'revolving', 'credit', 'facility', 'undrawn', '31', 'december', '2015', '31', 'december', '2014', 'group', 'entered', 'number', 'arrangements', 'finance', 'group', 'inventory', 'order', 'pipeline', 'aston', 'martin', 'lagonda', 'limited', 'aston', 'martin', 'lagonda', 'china', 'automobile', 'distribution', 'co', 'ltd', 'total', 'borrowings', 'facilities', '31', 'december', '2015', '16', '597', '000', '2014', '19', '808', '000', 'interest', 'rate', 'charged', 'facilities', 'determined', 'borrowings', 'made', 'borrowings', 'made', 'periods', 'not', 'excess', 'six', 'months', 'march', '2014', 'group', 'issued', '165', '000', '000', '99', '620', '000', 'senior', 'subordinated', 'pik', 'notes', 'repayable', 'july', '2018', 'interest', 'rate', 'payable', 'senior', 'secured', 'pik', 'notes', 'fixed', '10', '25', 'per', 'annum', 'april', '2015', 'group', 'issued', '100', '000', '000', 'preference', 'shares', 'redeemable', 'april', '2025', 'rate', 'interest', 'group', 'redeemable', 'cumulative', 'preference', 'shares', '15', 'per', 'annum', '304', '000', '000', '9', '25', 'senior', 'secured', 'notes', 'fixed', 'interest', 'rate', '9', '25', 'per', 'annum', 'senior', 'subordinated', 'pik', 'notes', 'fixed', 'interest', 'rate', '10', '25', 'per', 'annum', 'redeemable', 'cumulative', 'preference', 'shares', 'fixed', 'rate', '15', 'per', 'annum', 'interest', 'rate', 'payable', 'revolving', 'credit', 'facility', 'determined', 'time', 'drawing', 'facility', 'therefore', 'group', 'no', 'sensitivity', 'increase', 'interest', 'rates', 'based', 'borrowings', 'either', 'year', 'end', 'foreign', 'currency', 'risk', 'management', 'addition', 'functional', 'currency', 'sterling', 'group', 'buys', 'sells', 'currencies', 'group', 'manages', 'movement', 'funds', 'via', 'individual', 'bank', 'accounts', 'relating', 'currency', 'thereby', 'reducing', 'exposure', 'exchange', 'rate', 'fluctuations', 'group', 'may', 'time', 'time', 'use', 'derivative', 'financial', 'instruments', 'manage', 'exchange', 'rate', 'risk', 'significant', 'exposure', 'foreign', 'currency', 'year', 'ends', 'group', 'derivative', 'instruments', 'several', 'currencies', 'form', 'forward', 'exchange', 'contracts', 'foreign', 'currency', 'exposure', 'group', 'sterling', 'equivalents', 'financial', 'assets', 'liabilities', 'denominated', 'foreign', 'currencies', '31', 'december', '2015', '31', 'december', '2014', 'euros', '000', 'us', 'dollars', '000', '1', '887', '20', '427', 'chinese', 'renminbi', '000', '000', 'total', '000', '12', '565', '115', '10', '025', '8', '207', '5', '404', '12', '782', '22', '328', '28', '063', '115', '65', '562', '22', '314', '22', '705', '20', '989', '27', '732', '93', '740', '13', '979', '3', '921', '9', '784', '8', '978', '2', '722', '29', '600', '9', '784', '13', '979', '13', '705', '8', '978', '2', '722', '39', '384', '8', '335', '9', '000', '31', 'december', '2015', 'financial', 'assets', 'trade', 'receivables', 'foreign', 'exchange', 'contracts', 'cash', 'balances', 'financial', 'liabilities', 'trade', 'payables', 'foreign', 'exchange', 'contracts', 'net', 'balance', 'sheet', 'exposure', 'f', '83', '12', '011', '25', '010', '54', '356', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', 'euros', '000', 'us', 'dollars', '000', 'chinese', 'renminbi', '000', '000', '000', '5', '792', '13', '902', '7', '490', '233', '27', '642', '9', '778', '28', '298', '394', '294', '3', '789', '23', '454', '527', '73', '631', '19', '694', '35', '365', '38', '076', '4', '477', '97', '612', '16', '728', '4', '982', '5', '907', '14', '371', '1', '112', '37', '193', '5', '907', '16', '728', '10', '889', '14', '371', '1', '112', '43', '100', '2', '966', '24', '476', '31', 'december', '2014', 'financial', 'assets', 'trade', 'receivables', 'foreign', 'exchange', 'contracts', 'cash', 'balances', 'financial', 'liabilities', 'trade', 'payables', 'foreign', 'exchange', 'contracts', 'net', 'balance', 'sheet', 'exposure', '23', '705', '3', '365', '54', '512', 'following', 'significant', 'exchange', 'rates', 'applied', 'euro', 'chinese', 'renminbi', 'us', 'dollar', 'average', 'rate', '2015', 'average', 'rate', '2014', 'reporting', 'date', 'spot', 'rate', '2015', 'reporting', 'date', 'spot', 'rate', '2014', '1', '3598', '9', '5647', '1', '5328', '1', '2360', '10', '2373', '1', '6637', '1', '3568', '9', '6820', '1', '4739', '1', '2886', '9', '6736', '1', '5593', 'currency', 'risk', 'sensitivity', 'following', 'table', 'demonstrates', 'sensitivity', 'reasonably', 'possible', 'change', 'us', 'dollar', 'exchange', 'rates', 'variables', 'held', 'constant', 'group', 'loss', 'tax', 'due', 'changes', 'fair', 'value', 'monetary', 'assets', 'liabilities', 'increase', 'decrease', 'usd', 'rate', 'us', 'dollar', 'five', 'per', 'cent', 'effect', 'profit', 'tax', '2015', '000', '4', '401', 'effect', 'profit', 'tax', '2014', '000', '4', '356', 'company', 'trades', 'almost', 'entirely', 'sterling', 'therefore', 'no', 'significant', 'foreign', 'currency', 'risk', 'liquidity', 'risk', 'group', 'seeks', 'manage', 'liquidity', 'risk', 'ensure', 'sufficient', 'liquidity', 'available', 'meet', 'foreseeable', 'needs', 'invest', 'cash', 'assets', 'safely', 'profitably', 'group', 'uses', 'wholesale', 'financing', 'scheme', 'finance', 'certain', 'vehicle', 'sales', 'despatch', 'vehicle', '31', 'december', '2015', '84', '415', '000', '2014', '89', '988', '000', 'received', 'sales', 'invoices', 'wholesale', 'finance', 'scheme', 'credit', 'insurance', 'supporting', 'facility', 'run', 'august', '2016', 'negotiations', 'commenced', 'renew', 'facilities', 'expectation', 'positive', 'outcome', 'negotiations', 'june', '2011', 'group', 'issued', '304', '000', '000', '9', '25', 'senior', 'secured', 'notes', 'repayable', 'july', '2018', 'group', 'also', 'access', '40', '000', '000', 'revolving', 'credit', 'facility', '2018', 'undrawn', '31', 'december', '2015', '31', 'december', '2014', 'group', 'also', 'facilities', 'finance', 'certain', 'inventories', 'order', 'pipeline', 'aston', 'martin', 'lagonda', 'limited', 'aston', 'martin', 'lagonda', 'china', 'automobile', 'distribution', 'co', 'ltd', 'total', 'size', 'facilities', '31', 'december', '2015', '23', '506', '000', '2014', '23', '058', '000', 'utilisation', 'facilities', '31', 'december', '2015', '16', '597', '000', '2014', '19', '808', '000', 'f', '84', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', 'march', '2014', 'company', 'issued', 'senior', 'subordinated', 'pik', 'notes', 'value', '165', '000', '000', 'us', 'dollars', '99', '620', '000', 'due', 'repayment', 'july', '2018', '22', 'april', '2015', 'company', 'accepted', 'binding', 'subscriptions', '200', 'million', 'preference', 'shares', 'first', 'tranche', '100', 'million', 'received', '27', 'april', '2015', 'second', 'tranche', '100', 'million', 'drawn', 'april', '2016', 'subscriptions', 'also', 'included', 'warrants', 'pro', 'rata', 'allocation', 'p', 'shares', 'non', 'voting', 'ordinary', 'shares', 'corresponding', '4', 'current', 'fully', 'diluted', 'share', 'capital', 'company', 'table', 'summarises', 'maturity', 'profile', 'group', 'financial', 'liabilities', '31', 'december', '2015', 'based', 'contractual', 'undiscounted', 'payments', 'less', 'contractual', 'cash', 'demand', '3', 'months', '3', '12', 'months', '1', '5', 'years', '5', 'years', 'flows', 'total', '000', '000', '000', '000', '000', '000', 'non', 'derivative', 'financial', 'liabilities', 'bank', 'loans', 'overdrafts', 'senior', 'secured', 'notes', 'senior', 'subordinated', 'pik', 'notes', 'preference', 'shares', 'trade', 'payables', 'derivative', 'financial', 'liabilities', 'forward', 'exchange', 'contracts', '8', '804', '14', '060', '8', '003', '14', '060', '483', '179', '810', '180', '293', '2', '070', '6', '130', '1', '584', '9', '784', '483', '204', '744', '28', '193', '534', '557', '404', '556', '1', '172', '533', '360', '240', '16', '807', '388', '360', '172', '733', '404', '556', '172', '733', '404', '556', 'included', 'table', 'respect', 'group', 'interest', 'bearing', 'loans', 'borrowings', 'carrying', 'value', '548', '700', '000', 'table', 'summarises', 'maturity', 'profile', 'group', 'financial', 'liabilities', '31', 'december', '2014', 'based', 'contractual', 'undiscounted', 'payments', 'less', 'contractual', 'cash', 'demand', '3', 'months', '3', '12', 'months', '1', '5', 'years', '5', 'years', 'flows', 'total', '000', '000', '000', '000', '000', '000', 'non', 'derivative', 'financial', 'liabilities', 'bank', 'loans', 'overdrafts', 'senior', 'secured', 'notes', 'senior', 'subordinated', 'pik', 'notes', 'trade', 'payables', 'derivative', 'financial', 'liabilities', 'forward', 'exchange', 'contracts', '14', '823', '14', '060', '5', '310', '14', '060', '388', '360', '20', '133', '416', '480', '161', '879', '161', '879', '269', '159', '779', '160', '048', '701', '2', '387', '2', '819', '5', '907', '269', '189', '363', '21', '757', '553', '058', '764', '447', 'included', 'table', 'respect', 'group', 'interest', 'bearing', 'loans', 'borrowings', 'carrying', 'value', '432', '406', '000', 'f', '85', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', 'table', 'summarises', 'maturity', 'profile', 'company', 'financial', 'liabilities', '31', 'december', '2015', 'based', 'contractual', 'undiscounted', 'payments', 'less', 'contractual', 'cash', 'demand', '3', 'months', '3', '12', 'months', '1', '5', 'years', '5', 'years', 'flows', 'total', '000', '000', '000', '000', '000', '000', 'non', 'derivative', 'financial', 'liabilities', 'trade', 'payables', '178', '192', '988', '179', '180', '178', '192', '988', '179', '180', 'table', 'summarises', 'maturity', 'profile', 'company', 'financial', 'liabilities', '31', 'december', '2014', 'based', 'contractual', 'undiscounted', 'payments', 'less', 'contractual', 'cash', 'demand', '3', 'months', '3', '12', 'months', '1', '5', 'years', '5', 'years', 'flows', 'total', '000', '000', '000', '000', '000', '000', 'non', 'derivative', 'financial', 'liabilities', 'trade', 'payables', '206', '317', '980', '207', '297', '206', '317', '980', '207', '297', 'estimation', 'fair', 'values', 'forward', 'currency', 'contracts', 'carried', 'fair', 'value', 'valued', 'using', 'pricing', 'models', 'discounted', 'cash', 'flow', 'techniques', 'based', 'assumptions', 'provided', 'standard', 'chartered', 'bank', 'plc', 'morgan', 'stanley', 'co', 'international', 'plc', '9', '25', 'senior', 'secured', 'notes', 'issued', '2011', 'valued', 'amortised', 'cost', 'fair', 'value', '9', '25', 'senior', 'secured', 'notes', 'determined', 'reference', 'quoted', 'price', '31', 'december', '9', '25', 'senior', 'secured', 'notes', 'quoted', 'luxembourg', 'stock', 'exchange', 'bourse', 'de', 'luxembourg', '31', 'december', '2015', 'fair', 'value', 'senior', 'secured', 'notes', '304', '000', '000', '2014', '291', '080', '000', '31', 'december', '2015', 'effective', 'interest', 'rate', 'senior', 'secured', 'notes', '10', '25', '2014', '10', '25', 'receivables', 'payables', 'carrying', 'amount', 'deemed', 'reflect', 'fair', 'value', 'ifrs', '7', 'assets', 'liabilities', 'classified', 'way', 'fair', 'value', 'calculated', 'interest', 'bearing', 'loans', 'borrowings', 'considered', 'level', '1', 'liabilities', 'remaining', 'financial', 'assets', 'liabilities', 'considered', 'level', '2', 'assets', 'liabilities', 'ifrs', '7', 'defines', 'level', '2', 'assets', 'liabilities', 'inputs', 'quoted', 'prices', 'included', 'within', 'level', '1', 'observable', 'asset', 'liability', 'either', 'directly', 'e', 'prices', 'indirectly', 'e', 'derived', 'prices', 'capital', 'management', 'board', 'policy', 'maintain', 'strong', 'capital', 'base', 'maintain', 'investor', 'creditor', 'confidence', 'sustain', 'future', 'development', 'business', 'given', 'objective', 'group', 'capital', 'management', 'ensure', 'maintains', 'healthy', 'capital', 'ratios', 'order', 'support', 'business', 'maximise', 'shareholder', 'value', 'capital', 'structure', 'group', 'consists', 'debt', 'includes', 'borrowings', 'disclosed', 'note', 'cash', 'cash', 'equivalents', 'equity', 'attributable', 'equity', 'holders', 'parent', 'comprising', 'share', 'capital', 'reserves', 'disclosed', 'notes', '23', '24', 'consolidated', 'statements', 'changes', 'equity', 'no', 'changes', 'made', 'objectives', 'policies', 'processes', 'either', 'year', 'f', '86', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', '20', 'obligations', 'leases', 'group', 'group', 'entered', 'commercial', 'leases', 'certain', 'properties', 'items', 'machinery', 'leases', 'duration', '1', '10', 'years', 'future', 'minimum', 'rentals', 'payable', 'non', 'cancellable', 'operating', 'leases', 'follows', 'not', 'later', 'one', 'year', 'one', 'year', 'not', 'five', 'years', 'five', 'years', '2015', '000', '2014', '000', '503', '4', '456', '15', '035', '2', '618', '8', '260', '2', '571', '19', '994', '13', '449', 'none', 'leases', 'contain', 'contingent', 'rents', 'no', 'obligations', 'leases', 'company', '2014', 'nil', '21', 'provisions', 'liabilities', 'charges', 'group', 'warranty', '2015', '000', 'beginning', 'year', 'additions', 'utilisation', 'effect', 'movements', 'exchange', 'rates', '17', '282', '12', '837', '15', '713', '173', 'end', 'year', '14', '579', 'analysed', 'current', 'non', 'current', '6', '361', '8', '218', '14', '579', 'warranty', 'provision', 'represents', 'costs', 'provided', 'respect', 'group', 'warranty', 'scheme', 'provision', '14', '579', '000', '2014', '17', '282', '000', 'recognised', 'expected', 'claims', 'based', 'past', 'experience', 'level', 'actual', 'warranty', 'claims', 'received', 'expected', 'substantially', 'utilised', 'within', 'next', 'three', 'years', 'no', 'provisions', 'liabilities', 'charges', 'company', '22', 'pension', 'obligations', 'group', 'defined', 'contribution', 'scheme', 'group', 'opened', 'defined', 'contribution', 'scheme', 'june', '2011', 'total', 'expense', 'relating', 'scheme', 'current', 'year', '1', '831', '000', '2014', '1', '183', '000', 'outstanding', 'contributions', 'year', 'end', '178', '000', '2014', '123', '000', 'defined', 'benefit', 'scheme', 'group', 'operates', 'defined', 'benefit', 'pension', 'scheme', 'providing', 'benefits', 'based', 'final', 'pensionable', 'salary', 'scheme', 'closed', 'new', 'entrants', '31', 'may', '2011', 'benefits', 'existing', 'members', 'not', 'affected', 'closure', 'scheme', 'defined', 'contribution', 'scheme', 'available', 'new', 'employees', 'date', 'scheme', 'assets', 'invested', 'standard', 'life', 'f', '87', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', 'pension', 'limited', 'legal', 'general', 'assurance', 'mfs', 'international', 'uk', 'limited', 'eaton', 'vance', 'management', 'international', 'limited', 'morgan', 'stanley', 'investment', 'management', 'limited', 'majedie', 'asset', 'management', 'scheme', 'administered', 'buck', 'consultants', 'administration', 'investment', 'limited', 'assets', 'scheme', 'held', 'separately', 'group', 'pension', 'scheme', 'operates', 'regulatory', 'framework', 'pensions', 'act', '2004', 'trustee', 'primary', 'responsibility', 'governance', 'scheme', 'benefit', 'payments', 'trustee', 'administered', 'funds', 'scheme', 'assets', 'held', 'trust', 'governed', 'uk', 'regulation', 'responsibility', 'governance', 'scheme', 'lies', 'mainly', 'trustee', 'trustee', 'comprised', 'representatives', 'group', 'members', 'scheme', 'pension', 'scheme', 'exposes', 'group', 'following', 'risks', 'asset', 'volatility', 'scheme', 'statement', 'investment', 'principles', 'targets', '55', 'return', 'enhancing', 'assets', '45', 'risk', 'reducing', 'assets', 'trustee', 'monitors', 'appropriateness', 'scheme', 'investment', 'strategy', 'consultation', 'group', 'going', 'basis', 'inflation', 'risk', 'majority', 'benefits', 'linked', 'inflation', 'increases', 'inflation', 'lead', 'higher', 'liabilities', 'although', 'cases', 'caps', 'place', 'protect', 'extreme', 'inflation', 'longevity', 'increases', 'life', 'expectancy', 'increase', 'period', 'benefits', 'expected', 'payable', 'increases', 'value', 'placed', 'scheme', 'liabilities', 'no', 'scheme', 'amendments', 'settlements', 'either', 'year', 'ended', '31', 'december', '2015', '31', 'december', '2014', 'curtailment', 'events', 'year', 'ended', '31', 'december', '2015', 'resulted', 'past', 'service', 'credit', 'scheme', '287', '000', '2014', 'nil', 'projected', 'unit', 'method', 'used', 'determine', 'liabilities', 'pension', 'cost', 'assessed', 'accordance', 'advice', 'independent', 'qualified', 'actuary', 'using', 'projected', 'unit', 'method', 'latest', 'actuarial', 'valuation', 'scheme', 'effective', 'date', '6', 'april', '2011', 'assumptions', 'make', 'significant', 'effect', 'valuation', 'relating', 'rate', 'return', 'investments', 'rate', 'increase', 'salaries', 'pensions', 'expected', 'longevity', 'assumed', 'pre', 'retirement', 'investment', 'return', 'would', '6', '2', 'per', 'annum', 'post', 'retirement', 'return', '4', '9', 'salary', 'increases', 'would', 'average', '3', '25', 'per', 'annum', 'next', 'four', 'calendar', 'years', 'starting', '1', 'january', '2011', '4', '05', 'thereafter', '6', 'april', '2011', 'actuarial', 'valuation', 'actuarial', 'value', 'scheme', 'assets', '114', '306', '000', 'sufficient', 'cover', '109', 'benefits', 'accrued', 'members', 'allowing', 'expected', 'future', 'increases', 'earnings', 'following', 'latest', 'actuarial', 'valuation', 'scheme', '6', 'april', '2011', 'contributions', 'remained', '15', '5', 'group', 'active', 'member', 'not', 'participate', 'salary', 'sacrifice', 'scheme', 'active', 'members', 'participating', 'salary', 'sacrifice', 'scheme', 'employees', 'make', 'no', 'contributions', 'group', 'contribution', '22', 'latest', 'actuarial', 'valuation', '6', 'april', '2011', 'showed', 'surplus', 'scheme', '9', '645', '000', 'valuation', 'rolled', 'forward', '6', 'april', '2012', 'date', 'deficit', 'scheme', '28', '856', '000', 'representing', 'funding', 'level', '82', 'basis', 'group', 'agreed', 'recovery', 'plan', 'fund', 'deficit', 'period', '9', 'years', '6', 'april', '2012', 'estimated', 'group', 'contributions', 'year', 'ending', '31', 'december', '2016', '11', '226', '000', 'full', 'actuarial', 'valuation', 'carried', '6', 'april', '2011', 'qualified', 'independent', 'actuary', 'valuation', 'updated', 'independent', 'qualified', 'actuary', '31', 'december', '2014', '31', 'december', '2015', 'accordance', 'ias', '19r', 'actuarial', 'valuation', '6', 'april', '2014', 'currently', 'progress', 'due', 'completed', 'june', '2016', 'f', '88', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', 'principal', 'assumptions', 'used', 'actuary', '31', 'december', '2015', '31', 'december', '2014', '3', '95', '3', '20', '2', '20', '3', '10', '3', '95', '3', '20', '2', '20', '3', '70', '3', '10', '2', '10', '3', '15', '4', '65', '3', '30', '2', '10', 'discount', 'rate', 'rate', 'increase', 'salaries', 'see', 'rate', 'revaluation', 'deferment', 'rate', 'increase', 'pensions', 'payment', 'attracting', 'lpi', 'expected', 'return', 'scheme', 'assets', 'rpi', 'inflation', 'assumption', 'cpi', 'inflation', 'assumption', 'salary', 'escalation', 'assumption', 'applies', '2021', 'salary', 'assumption', 'increase', '2016', '2021', '3', 'per', 'annum', 'salary', 'increase', '3', '2', 'table', 'applies', '2021', 'group', 'inflation', 'assumption', 'reflects', 'long', 'term', 'expectations', 'not', 'amended', 'short', 'term', 'variability', 'post', 'mortality', 'assumptions', 'allow', 'expected', 'increases', 'longevity', 'current', 'disclosures', 'relate', 'assumptions', 'based', 'longevity', 'years', 'following', 'retirement', 'reporting', 'date', 'future', 'relating', 'employee', 'retiring', '2035', '2015', 'assumptions', '2034', '2014', 'assumptions', 'projected', 'life', 'expectancy', 'age', '65', 'future', 'currently', 'aged', '45', '2015', 'current', 'currently', 'aged', '65', '2015', 'future', 'currently', 'aged', '45', '2014', 'current', 'currently', 'aged', '65', '2014', '23', '6', '27', '6', '22', '3', '26', '1', '23', '6', '27', '5', '22', '3', '26', '0', 'male', 'female', 'years', 'duration', 'liabilities', 'years', '31', 'december', '2015', 'duration', 'liabilities', 'years', '31', 'december', '2014', '27', '27', 'following', 'table', 'provide', 'information', 'composition', 'fair', 'value', 'assets', 'scheme', 'asset', 'class', '31', 'december', '31', 'december', '31', 'december', '31', 'december', '31', 'december', '31', 'december', '2015', '2015', '2015', '2014', '2014', '2014', 'quoted', 'unquoted', 'total', 'quoted', 'unquoted', 'total', '000', '000', '000', '000', '000', '000', 'uk', 'equities', 'overseas', 'equities', 'property', 'index', 'linked', 'gilts', 'corporate', 'bonds', 'diversified', 'alternatives', 'high', 'yield', 'bonds', 'cash', 'insurance', 'policies', '31', '968', '34', '946', '43', '918', '21', '710', '43', '172', '31', '968', '34', '946', '21', '710', '43', '918', '43', '172', '32', '029', '32', '470', '44', '478', '18', '716', '42', '056', '32', '029', '32', '470', '18', '718', '44', '478', '42', '056', '1', '856', '18', '907', '9', '715', '2', '051', '18', '907', '9', '715', '1', '856', '2', '051', '675', '18', '732', '8', '973', '2', '163', '18', '732', '8', '973', '675', '2', '163', 'total', '112', '688', '95', '555', '208', '243', '109', '652', '90', '642', '200', '294', 'f', '89', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', '31', 'december', '2015', '000', '31', 'december', '2014', '000', 'total', 'fair', 'value', 'scheme', 'assets', 'present', 'value', 'funded', 'obligations', '208', '243', '213', '190', '200', '294', '212', '698', 'liability', 'recognised', 'statement', 'financial', 'position', '4', '947', '12', '404', 'year', 'ended', '31', 'december', '2015', '000', 'year', 'ended', '31', 'december', '2014', '000', 'amounts', 'recognised', 'income', 'statement', 'amounts', 'charged', 'credited', 'operating', 'loss', 'current', 'service', 'cost', 'past', 'service', 'cost', '10', '004', '287', '8', '709', '9', '717', '8', '709', 'amounts', 'charged', 'credited', 'finance', 'expense', 'income', 'net', 'interest', 'income', 'net', 'defined', 'liability', '277', 'total', 'expense', 'recognised', 'income', 'statement', '9', '994', '287', '8', '422', 'changes', 'present', 'value', 'defined', 'benefit', 'pensions', 'obligations', 'analysed', 'follows', 'year', 'ended', '31', 'december', '2015', 'year', 'ended', '31', 'december', '2014', 'beginning', 'year', 'current', 'service', 'cost', 'past', 'service', 'cost', 'employee', 'contributions', 'interest', 'cost', 'experience', 'losses', 'actuarial', 'gains', 'losses', 'arising', 'changes', 'financial', 'assumptions', 'disbursements', '212', '698', '10', '004', '287', '37', '7', '807', '436', '169', '652', '8', '709', '39', '7', '680', '2', '371', '13', '642', '3', '863', '26', '217', '1', '970', 'obligation', 'end', 'year', '213', '190', '212', '698', 'changes', 'fair', 'value', 'plan', 'assets', 'analysed', 'follows', 'year', 'ended', '31', 'december', '2015', 'year', 'ended', '31', 'december', '2014', 'beginning', 'year', 'interest', 'assets', 'employer', 'contributions', 'contributions', 'employees', 'actuarial', 'losses', 'gains', 'benefits', 'paid', '200', '294', '7', '530', '10', '350', '37', '6', '105', '3', '863', '171', '538', '7', '967', '9', '143', '39', '13', '577', '1', '970', 'fair', 'value', 'end', 'year', '208', '243', '200', '294', 'year', 'ended', '31', 'december', '2015', 'year', 'ended', '31', 'december', '2014', '1', '425', '21', '544', 'actual', 'return', 'scheme', 'assets', 'f', '90', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', 'year', 'ended', '31', 'december', '2015', 'year', 'ended', '31', 'december', '2014', 'analysis', 'amounts', 'recognised', 'statement', 'financial', 'position', 'liability', 'asset', 'beginning', 'year', 'net', 'expense', 'recognised', 'statement', 'comprehensive', 'income', 'employer', 'contributions', 'actuarial', 'gain', 'loss', 'recognised', 'comprehensive', 'income', 'liability', 'recognised', 'statement', 'financial', 'position', 'end', 'year', '12', '404', '1', '886', '9', '994', '10', '350', '7', '101', '8', '422', '9', '143', '15', '011', '4', '947', '12', '404', 'year', 'ended', '31', 'december', '2015', 'year', 'ended', '31', 'december', '2014', 'analysis', 'amount', 'taken', 'comprehensive', 'income', 'return', 'assets', 'greater', 'discount', 'rate', 'experience', 'losses', 'arising', 'funded', 'obligations', 'gains', 'losses', 'arising', 'due', 'changes', 'financial', 'assumptions', 'underlying', 'present', 'value', 'funded', 'obligations', '6', '105', '436', '13', '577', '2', '371', '13', '642', '26', '217', 'amount', 'recognised', 'comprehensive', 'income', '7', '101', '15', '011', 'sensitivity', 'analysis', 'principal', 'assumptions', 'used', 'measure', 'scheme', 'liabilities', 'change', 'assumption', 'present', 'value', 'benefit', 'present', 'value', 'obligations', 'benefit', 'obligations', '31', 'december', '31', 'december', '2015', '2014', '000', '000', 'discount', 'rate', 'decrease', '0', '25', 'rate', 'inflation', 'increase', '0', '25', 'life', 'expectancy', 'increased', 'approximately', '1', 'year', 'increase', 'one', 'year', '227', '257', '221', '754', '227', '284', '221', '255', '219', '759', '219', '414', 'applies', 'retail', 'prices', 'index', 'consumer', 'prices', 'index', 'inflation', 'assumptions', 'assumption', 'salary', 'increase', 'assumption', 'also', 'increase', '0', '2', 'per', 'annum', '2020', '21', 'projected', 'unit', 'method', 'applied', 'calculating', 'defined', 'benefit', 'obligations', 'funding', 'levels', 'monitored', 'regular', 'basis', 'trustee', 'group', 'ensure', 'security', 'member', 'benefits', 'next', 'triennial', 'valuation', '6', 'april', '2014', 'due', 'completed', 'june', '2016', 'line', 'scheme', 'specific', 'funding', 'requirements', 'pensions', 'act', '2004', 'part', 'valuation', 'trustee', 'group', 'review', 'adequacy', 'contributions', 'paid', 'scheme', 'f', '91', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', 'year', 'ended', '31', 'december', '2015', '000s', 'year', 'ended', '31', 'december', '2014', '000s', '2', '235', '2', '044', '2', '541', '2', '848', '3', '049', '25', '048', '2', '025', '1', '992', '2', '062', '2', '558', '2', '856', '21', '433', 'expected', 'future', 'benefit', 'payments', 'year', '1', '2016', '2015', 'year', '2', '2017', '2016', 'year', '3', '2018', '2017', 'year', '4', '2019', '2018', 'year', '5', '2020', '2019', 'years', '6', '10', '2020', '2024', 'years', '6', '10', '2021', '2025', 'history', 'scheme', 'experience', 'year', 'ended', '31', 'december', '2015', 'present', 'value', 'scheme', 'liabilities', 'fair', 'value', 'scheme', 'assets', 'deficit', 'scheme', 'taking', 'account', 'effect', 'paragraph', '64', 'ias19', 'experience', 'losses', 'gains', 'scheme', 'assets', 'percentage', 'scheme', 'assets', 'experience', 'losses', 'scheme', 'liabilities', 'percentage', 'present', 'value', 'scheme', 'liabilities', 'total', 'amount', 'recognised', 'comprehensive', 'income', 'percentage', 'present', 'value', 'scheme', 'liabilities', '213', '190', '208', '243', '4', '947', '6', '105', '2', '9', '436', '0', '2', '7', '101', '3', '3', 'year', 'ended', '31', 'december', '2014', '212', '698', '200', '294', '12', '404', '13', '577', '6', '4', '2', '371', '1', '1', '15', '011', '7', '1', '23', 'share', 'capital', 'group', 'company', '2015', '000', '2014', '000', '3', '3', '3', '3', '2015', '000', '2014', '000', '3', '3', '3', '3', 'allotted', 'called', 'fully', 'paid', '3', '069', '085', 'ordinary', 'shares', '0', '001', '2014', '3', '069', '085', 'ordinary', 'shares', '0', '001', '162', '521', 'shares', '0', '001', '2014', '162', '521', 'shares', 'classified', 'liabilities', 'shares', 'classified', 'shareholders', 'funds', 'april', '2014', '76', '180', 'ordinary', 'shares', 'issued', 'prestige', 'motor', 'holdings', 'controlled', 'investindustrial', 'v', 'l', 'p', 'consideration', '3', '750', '000', 'part', 'share', 'subscription', 'agreement', 'dated', '5', 'december', '2012', 'september', '2014', '33', '650', 'additional', 'shares', 'issued', 'daimler', 'ag', 'consideration', '33', '65', 'giving', 'aston', 'martin', 'holdings', 'uk', 'limited', 'subsidiaries', 'access', 'certain', 'technologies', 'use', 'next', 'generation', 'vehicles', 'f', '92', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', 'shares', 'cash', 'issued', 'prestige', 'motor', 'holdings', '2017', 'dependent', 'upon', 'deficit', 'defined', 'benefit', 'pension', 'scheme', 'four', 'year', 'period', 'june', '2017', 'holders', 'ordinary', 'shares', 'entitled', 'receive', 'dividends', 'declared', 'time', 'time', 'entitled', 'one', 'vote', 'per', 'share', 'meetings', 'company', 'holders', 'shares', 'entitled', 'receive', 'dividends', 'declared', 'time', 'time', 'not', 'entitled', 'vote', 'meetings', 'company', '24', 'reserves', 'share', 'premium', 'share', 'premium', '368', '818', '000', 'represents', 'following', 'transactions', '291', '512', '000', 'represents', 'difference', 'par', 'value', 'share', 'capital', 'issued', '1', 'june', '2007', '31', 'december', '2009', 'amount', 'subscribed', 'shares', 'june', '2011', 'board', 'directors', 'approved', 'reduction', 'capital', 'whereby', '100', '000', '000', 'share', 'premium', 'account', 'transferred', 'retained', 'earnings', 'order', 'create', 'distributable', 'reserves', 'within', 'aston', 'martin', 'holdings', 'uk', 'limited', 'parent', 'company', 'group', 'enable', 'redemption', 'preference', 'shares', 'payment', 'dividend', 'apri1', '2013', 'shares', 'issued', 'prestige', 'motor', 'holdings', 'controlled', 'lnvestindustrial', 'v', 'l', 'p', 'consideration', '150', '000', '000', 'par', 'value', '1', '000', 'resulting', 'share', 'premium', '149', '999', '000', 'december', '2013', 'shares', 'issued', 'daimler', 'ag', 'nominal', 'consideration', 'share', 'premium', '16', '785', '000', 'april', '2014', 'shares', 'issued', 'prestige', 'holdings', 'sa', 'controlled', 'lnvestindustrial', 'v', 'l', 'p', 'nominal', 'consideration', 'share', 'premium', '3', '750', '000', 'part', 'share', 'subscription', 'agreement', 'dated', '5', 'december', '2012', 'september', '2014', 'shares', 'issued', 'daimler', 'ag', 'nominal', 'consideration', 'share', 'premium', '4', '417', '000', 'april', '2015', 'group', 'received', 'settlement', 'balance', 'due', 'partly', 'paid', 'shares', 'gave', 'rise', 'share', 'premium', '2', '355', '000', 'share', 'warrants', 'share', 'warrants', '9', '043', '000', 'arose', 'follows', 'april', '2016', 'group', 'issued', '100', '000', '000', 'preference', 'shares', 'subscription', 'included', 'warrants', 'pro', 'rata', 'allocation', 'p', 'shares', 'non', 'voting', 'ordinary', 'shares', 'corresponding', '4', 'fully', 'diluted', 'share', 'capital', 'company', 'fair', 'value', '9', '043', '000', 'capital', 'reserve', 'capital', 'reserve', '94', '064', '000', 'arose', 'follows', 'year', 'ended', 'december', '2008', 'capital', 'contribution', 'company', 'existing', 'shareholders', '39', '069', '000', 'plus', 'share', 'based', 'payment', 'charge', '5', '495', '000', 'valuation', 'shares', 'options', 'granted', 'mr', 'david', 'richards', 'dr', 'ulrich', 'bez', 'relation', 'services', 'provided', 'connection', 'acquisition', 'aston', 'martin', 'lagonda', 'group', 'see', 'note', '26', 'june', '2011', 'group', 'redeemed', '48', '400', '000', 'preference', 'shares', 'transferred', 'equivalent', 'amount', 'retained', 'earnings', 'capital', 'redemption', 'reserve', 'april', '2014', 'group', 'acquired', '50', 'controlling', 'interest', 'amws', 'limited', 'parent', 'company', 'aston', 'martin', 'works', 'limited', 'increase', 'capital', 'reserve', '1', '100', '000', 'represents', 'difference', 'consideration', 'paid', 'acquisition', 'fair', 'value', 'disposal', '40', 'interest', 'amws', 'limited', 'group', 'owned', 'date', 'acquisition', 'see', 'note', '14', 'details', 'translation', 'reserve', 'foreign', 'currency', 'translation', 'reserve', 'used', 'record', 'exchange', 'differences', 'arising', 'translation', 'financial', 'statements', 'foreign', 'subsidiaries', 'f', '93', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', '25', 'additional', 'cash', 'flow', 'information', 'group', 'analysis', 'group', 'net', 'debt', 'year', 'ended', '31', 'december', '2015', '1', 'january', '2015', '000', 'cash', 'cash', 'equivalents', 'bank', 'loans', 'overdrafts', 'senior', 'secured', 'notes', 'senior', 'subordinated', 'pik', 'notes', 'preference', 'shares', 'exchange', 'differences', '000', 'cash', 'flow', '000', 'non', 'cash', 'movements', '000', '31', 'december', '2015', '000', '89', '250', '19', '808', '298', '403', '114', '195', '22', '939', '3', '751', '26', '614', '96', '464', '749', '540', '30', '253', '19', '601', '1', '801', '65', '562', '16', '597', '300', '042', '133', '796', '98', '265', '343', '156', '87', '038', '1', '289', '51', '655', '483', '138', 'year', 'ended', '31', 'december', '2014', '1', 'january', '2014', '000', 'cash', 'cash', 'equivalents', 'bank', 'loans', 'overdrafts', 'senior', 'secured', 'notes', 'senior', 'subordinated', 'pik', 'notes', 'exchange', 'differences', '000', 'cash', 'flow', '000', 'non', 'cash', 'movements', '000', '31', 'december', '2014', '000', '74', '653', '13', '854', '296', '765', '15', '354', '5', '348', '28', '565', '99', '035', '757', '606', '30', '203', '15', '160', '89', '250', '19', '808', '298', '403', '114', '195', '235', '966', '60', '464', '1', '363', '45', '363', '343', '156', '26', 'share', 'based', 'payments', 'company', 'two', 'share', 'option', 'schemes', 'operation', 'revenue', 'customs', 'approved', 'scheme', 'unapproved', 'scheme', 'schemes', 'no', 'vesting', 'conditions', 'equitysettled', 'earliest', 'exercise', 'date', 'schemes', '18', 'october', '2007', 'approved', 'scheme', 'no', 'expiry', 'date', 'unapproved', 'scheme', 'expiry', 'date', '18', 'october', '2027', 'movements', 'share', 'options', 'approved', 'scheme', '2015', 'number', 'shares', 'unapproved', 'scheme', '2015', 'number', 'shares', 'approved', 'scheme', '2014', 'number', 'shares', 'unapproved', 'scheme', '2014', 'number', 'shares', '54', '285', '21', '714', '54', '285', '21', '714', '1', 'january', 'exercised', 'year', '32', '571', '31', 'december', '21', '714', '21', '714', '54', '285', '21', '714', '7230', 'p', '0', '1', 'p', '7230', 'p', '0', '1', 'p', '7230', 'p', '7230', 'p', '0', '1', 'p', '7230', 'p', '0', '1', 'p', 'weighted', 'average', 'exercise', 'price', '1', 'january', 'exercised', 'year', '31', 'december', 'average', 'weighted', 'exercise', 'price', '31', 'december', '2015', '3615p', '31', 'december', '2014', '5164p', 'share', 'options', 'issued', 'return', 'services', 'relation', 'acquisition', 'aston', 'martin', 'lagonda', 'group', 'limited', 'period', 'ended', '31', 'december', '2007', 'therefore', 'fair', 'value', 'options', 'issued', '5', '495', '000', 'recognised', 'goodwill', 'f', '94', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2015', 'continued', '27', 'contingent', 'liabilities', 'capital', 'commitments', 'group', 'capital', 'expenditure', 'contracts', 'value', '43', '879', '000', '2014', '26', '135', '000', 'placed', 'not', 'provided', '31', 'december', '2015', 'company', 'company', 'guarantor', '9', '25', 'senior', 'secured', 'notes', 'issued', 'aston', 'martin', 'capital', 'limited', 'june', '2011', 'aston', 'martin', 'capital', 'limited', 'subsidiary', 'company', 'see', 'note', '19', 'information', '28', 'related', 'party', 'transactions', 'group', 'transactions', 'group', 'undertakings', 'related', 'parties', 'eliminated', 'consolidation', 'accordingly', 'not', 'disclosed', 'group', 'entered', 'transactions', 'ordinary', 'course', 'business', 'entities', 'significant', 'influence', 'group', 'related', 'parties', 'group', 'transactions', 'entered', 'trading', 'balances', 'outstanding', 'year', 'end', 'entities', 'significant', 'influence', 'group', 'related', 'parties', 'group', 'follows', 'sales', 'related', 'party', '000', 'related', 'party', 'group', 'entities', 'significant', 'influence', 'group', '31', 'december', '2015', 'associates', '31', 'december', '2015', 'related', 'parties', 'companies', 'common', 'directorship', '31', 'december', '2015', 'total', '31', 'december', '2015', 'entities', 'significant', 'influence', 'group', '31', 'december', '2014', 'associates', '31', 'december', '2014', 'related', 'parties', 'companies', 'common', 'directorship', '31', 'december', '2014', 'total', '31', 'december', '2014', 'purchases', 'amounts', 'amounts', 'owed', 'owed', 'related', 'related', 'related', 'party', 'party', 'party', '000', '000', '000', '1', '725', '483', '1', '725', '483', '2', '726', '3', '730', '28', '269', '159', '1', '199', '2', '885', '4', '957', '269', 'transactions', 'directors', 'following', 'transactions', 'taken', 'place', 'directors', 'arms', 'length', 'basis', 'year', 'ended', '31', 'december', '2015', 'no', 'transactions', 'directors', 'year', 'ended', '31', 'december', '2014', 'one', 'vehicle', 'sold', 'mr', 'amr', 'ali', 'abdallah', 'abou', 'el', 'seoud', '85', '833', 'no', 'amounts', 'outstanding', 'either', 'year', 'end', 'company', 'not', 'entered', 'transactions', 'related', 'parties', 'company', 'either', 'year', 'no', 'balances', 'outstanding', 'related', 'parties', 'company', 'either', 'year', 'end', 'f', '95', 'company', 'operates', 'arrangement', 'direct', 'indirect', 'subsidiaries', 'whereby', 'purchases', 'goods', 'services', 'behalf', 'subsidiaries', 'subsidiaries', 'purchase', 'goods', 'services', 'behalf', 'company', 'transactions', 'entered', 'trading', 'balances', 'year', 'end', 'subsidiaries', 'company', 'follows', 'related', 'party', 'subsidiary', 'purchased', 'behalf', 'subsidiary', 'undertakings', '000', 'purchased', 'via', 'subsidiary', 'undertakings', '000', 'amounts', 'owed', 'subsidiary', 'undertakings', '000', 'amounts', 'owed', 'subsidiary', 'undertakings', '000', 'subsidiaries', '31', 'december', '2015', '31', '394', '160', '566', '178', '192', 'subsidiaries', '31', 'december', '2014', '29', '593', '94', '968', '206', '317', 'terms', 'conditions', 'transactions', 'related', 'parties', 'group', 'company', 'sales', 'purchases', 'related', 'parties', 'made', 'normal', 'market', 'prices', 'outstanding', 'balances', 'entities', 'subsidiaries', 'unsecured', 'interest', 'free', 'cash', 'settlement', 'expected', 'within', '60', 'days', 'invoice', 'terms', 'conditions', 'transactions', 'subsidiaries', 'exception', 'balances', 'placed', 'intercompany', 'accounts', 'no', 'specified', 'credit', 'period', 'group', 'company', 'not', 'provided', 'benefited', 'guarantees', 'related', 'party', 'receivables', 'payables', 'company', 'not', 'made', 'provision', 'impairment', 'relating', 'amounts', 'owed', 'related', 'parties', 'either', 'year', 'end', '29', 'post', 'balance', 'sheet', 'events', 'april', '2016', 'company', 'drew', 'second', '100m', 'relating', '200m', 'redeemable', 'cumulative', 'preference', 'shares', 'issued', 'april', '2015', '30', 'immediate', 'parent', 'company', 'company', 'no', 'immediate', 'parent', 'company', 'f', '96', 'aston', 'martin', 'holdings', 'uk', 'limited', 'consolidated', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'registered', 'number', '06067176', 'f', '97', 'directors', 'advisors', 'directors', 'primary', 'bankers', 'najeeb', 'al', 'humaidhi', 'adnan', 'al', 'musallam', 'rezam', 'al', 'roumi', 'roberto', 'maestroni', 'umberto', 'magnetti', 'carlo', 'pasquale', 'campanini', 'bonomi', 'dante', 'razzano', 'mahmoud', 'samy', 'mohamed', 'ali', 'el', 'sayed', 'amr', 'ali', 'abdallah', 'abou', 'el', 'seoud', 'dr', 'andrew', 'palmer', 'chief', 'executive', 'officer', 'deutsche', 'bank', 'ag', 'winchester', 'house', '1', 'great', 'winchester', 'street', 'london', 'ec2n', '2db', 'hsbc', 'bank', 'plc', '8', 'canada', 'square', 'london', 'e14', '5hq', 'secretary', 'registered', 'office', 'lloyds', 'tsb', 'bank', 'plc', '10', 'gresham', 'street', 'london', 'ec2v', '7ae', 'michael', 'marecki', 'aston', 'martin', 'holdings', 'uk', 'limited', 'banbury', 'road', 'gaydon', 'warwick', 'england', 'cv35', '0db', 'standard', 'chartered', 'bank', 'plc', '1', 'basinghall', 'avenue', 'london', 'ec2v', '5dd', 'registered', 'auditor', 'kpmg', 'llp', 'one', 'snowhill', 'snow', 'hill', 'queensway', 'birmingham', 'b4', '6gh', 'comerica', 'bank', '1717', 'main', 'street', 'dallas', 'texas', '75201', 'united', 'states', 'america', 'f', '98', 'independent', 'auditor', 'report', 'members', 'aston', 'martin', 'holdings', 'uk', 'limited', 'audited', 'financial', 'statements', 'aston', 'martin', 'holdings', 'uk', 'limited', 'year', 'ended', '31', 'december', '2014', 'set', 'pages', '7', '40', 'financial', 'reporting', 'framework', 'applied', 'preparation', 'applicable', 'law', 'international', 'financial', 'reporting', 'standards', 'ifrss', 'adopted', 'eu', 'regards', 'parent', 'company', 'financial', 'statements', 'applied', 'accordance', 'provisions', 'companies', 'act', '2006', 'report', 'made', 'solely', 'company', 'members', 'body', 'accordance', 'chapter', '3', 'part', '16', 'companies', 'act', '2006', 'audit', 'work', 'undertaken', 'might', 'state', 'company', 'members', 'matters', 'required', 'state', 'auditor', 'report', 'no', 'purpose', 'fullest', 'extent', 'permitted', 'law', 'not', 'accept', 'assume', 'responsibility', 'anyone', 'company', 'company', 'members', 'body', 'audit', 'work', 'report', 'opinions', 'formed', 'respective', 'responsibilities', 'directors', 'auditor', 'explained', 'fully', 'directors', 'responsibilities', 'statement', 'set', 'page', '5', 'directors', 'responsible', 'preparation', 'financial', 'statements', 'satisfied', 'give', 'true', 'fair', 'view', 'responsibility', 'audit', 'express', 'opinion', 'financial', 'statements', 'accordance', 'applicable', 'law', 'international', 'standards', 'auditing', 'uk', 'ireland', 'standards', 'require', 'us', 'comply', 'auditing', 'practices', 'board', 'apb', 'ethical', 'standards', 'auditors', 'scope', 'audit', 'financial', 'statements', 'description', 'scope', 'audit', 'financial', 'statements', 'provided', 'financial', 'reporting', 'council', 'website', 'www', 'frc', 'org', 'uk', 'auditscopeukprivate', 'opinion', 'financial', 'statements', 'opinion', 'financial', 'statements', 'give', 'true', 'fair', 'view', 'state', 'group', 'parent', 'company', 'affairs', '31', 'december', '2014', 'group', 'loss', 'year', 'ended', 'group', 'financial', 'statements', 'properly', 'prepared', 'accordance', 'ifrss', 'adopted', 'eu', 'parent', 'company', 'financial', 'statements', 'properly', 'prepared', 'accordance', 'ifrss', 'adopted', 'eu', 'applied', 'accordance', 'provisions', 'companies', 'act', '2006', 'financial', 'statements', 'prepared', 'accordance', 'requirements', 'companies', 'act', '2006', 'opinion', 'matters', 'prescribed', 'companies', 'act', '2006', 'opinion', 'information', 'given', 'strategic', 'report', 'directors', 'report', 'financial', 'year', 'financial', 'statements', 'prepared', 'consistent', 'financial', 'statements', 'matters', 'required', 'report', 'exception', 'nothing', 'report', 'respect', 'following', 'matters', 'companies', 'act', '2006', 'requires', 'us', 'report', 'opinion', 'adequate', 'accounting', 'records', 'not', 'kept', 'parent', 'company', 'returns', 'adequate', 'audit', 'not', 'received', 'branches', 'not', 'visited', 'us', 'parent', 'company', 'financial', 'statements', 'not', 'agreement', 'accounting', 'records', 'returns', 'certain', 'disclosures', 'directors', 'remuneration', 'specified', 'law', 'not', 'made', 'not', 'received', 'information', 'explanations', 'require', 'audit', 'f', '99', 'john', 'leech', 'senior', 'statutory', 'auditor', 'behalf', 'kpmg', 'llp', 'statutory', 'auditor', 'chartered', 'accountants', 'one', 'snowhill', 'snow', 'hill', 'queensway', 'birmingham', 'b4', '6gh', 'date', 'f', '100', 'consolidated', 'statement', 'comprehensive', 'income', 'year', 'ended', '31', 'december', '2014', 'notes', 'revenue', 'cost', 'sales', 'gross', 'profit', 'selling', 'distribution', 'expenses', 'administrative', 'expenses', 'share', 'result', 'associates', '4', '18', '361', '1', '485', '6', '14', '6', '6', '6', '1', '706', '5', '977', '14', '090', '18', '361', '5', '200', '3', '481', '6', '663', '16', '829', '1', '485', '8', '9', '2', '548', '56', '018', '7', '230', '34', '097', '53', '470', '71', '831', '26', '867', '25', '382', '7', '079', '8', '727', '64', '752', '16', '655', '15', '011', '3', '255', '3', '831', '891', '11', '756', '2', '940', 'net', 'financing', 'expense', 'loss', 'tax', 'loss', 'year', 'comprehensive', 'income', 'items', 'never', 'reclassified', 'profit', 'loss', 'remeasurement', 'defined', 'benefit', 'liability', 'asset', 'related', 'income', 'tax', '468', '355', '519', '189', '313', '476', '352', '040', '5', 'finance', 'income', 'finance', 'expense', 'income', 'tax', 'credit', '2013', '000', '154', '879', '167', '149', '33', '439', '34', '087', '139', '833', '131', '939', '14', '32', '362', 'operating', 'loss', 'profit', 'analysed', 'gain', 'disposal', 'associated', 'company', 'concept', 'vehicle', 'development', 'costs', 'impairment', 'computer', 'hardware', 'software', 'assets', 'professional', 'fees', 'relating', 'capital', 'increase', 'underlying', 'operating', 'loss', 'profit', 'operating', 'loss', 'profit', '2014', '000', '10', '22', '10', 'items', 'may', 'reclassified', 'profit', 'loss', 'foreign', 'exchange', 'translation', 'differences', '336', 'comprehensive', 'income', 'period', 'net', 'income', 'tax', '12', '092', '2', '760', 'total', 'comprehensive', 'income', 'period', '76', '844', '13', '895', 'loss', 'attributable', 'owners', 'group', 'non', 'controlling', 'interests', '64', '916', '164', '16', '655', '64', '752', '16', '655', '77', '008', '164', '13', '895', '76', '844', '13', '895', 'total', 'comprehensive', 'expense', 'income', 'period', 'attributable', 'owners', 'group', 'non', 'controlling', 'interests', 'underlying', 'operating', 'loss', 'profit', 'represents', 'operating', 'loss', 'profit', 'excluding', 'non', 'recurring', 'items', 'notes', 'pages', '12', '40', 'form', 'integral', 'part', 'financial', 'statements', 'f', '101', '180', 'consolidated', 'statement', 'changes', 'equity', 'group', 'capital', 'reserve', 'share', 'share', 'non', 'controlling', 'translation', 'capital', 'premium', 'interest', 'reserve', '000', '000', '000', '000', '1', 'january', '2014', 'total', 'comprehensive', 'income', 'period', 'loss', '3', '358', '296', '92', '964', '164', 'retained', 'earnings', '000', 'total', 'equity', '000', '35', '404', '416', '023', '64', '916', '64', '916', 'total', 'comprehensive', 'income', '336', '11', '756', '12', '092', 'total', 'comprehensive', 'income', 'period', '336', '76', '672', '77', '008', 'transactions', 'owners', 'recorded', 'directly', 'equity', 'capital', 'increase', '8', '167', '8', '167', 'total', 'transactions', 'owners', '8', '167', '8', '167', 'acquisition', 'subsidiary', 'non', 'controlling', 'interests', 'notes', '3', '14', '5', '619', '3', '366', '463', '98', '583', 'comprehensive', 'income', 'foreign', 'currency', 'translation', 'differences', 'remeasurement', 'defined', 'benefit', 'liability', 'asset', 'note', '22', 'income', 'tax', 'comprehensive', 'income', 'note', '10', '31', 'december', '2014', '336', '336', '15', '011', '15', '011', '3', '255', '3', '255', '5', '619', '172', '112', '076', '352', '801', 'april', '2014', '76', '180', 'ordinary', 'shares', 'issued', 'prestige', 'motor', 'holdings', 'controlled', 'investinduslrial', 'v', 'l', 'p', 'consideration', '3', '750', '000', 'september', '2014', '33', '650', 'shares', 'par', 'value', '0', '001p', 'per', 'share', 'issued', 'daimler', 'ag', 'consideration', '4', '417', '000', 'included', 'capital', 'reserve', 'non', 'controlling', 'interests', '1', '100', '000', 'additional', 'capital', 'reserve', '4', '355', '000', 'non', 'controlling', 'interest', 'relating', 'acquisition', 'additional', '10', 'share', 'capital', 'amws', 'limited', 'parent', 'company', 'aston', 'martin', 'works', 'limited', 'see', 'notes', '3', '14', 'details', 'f', '102', 'group', 'capital', 'reserve', 'share', 'share', 'non', 'controlling', 'translation', 'retained', 'capital', 'premium', 'interest', 'reserve', 'earnings', '000', '000', '000', '000', '000', '1', 'january', '2013', 'total', 'comprehensive', 'income', 'period', 'loss', '2', '191', '512', '92', '964', '344', 'total', 'equity', '000', '21', '689', '263', '133', '16', '655', '16', '655', 'comprehensive', 'income', 'foreign', 'currency', 'translation', 'differences', 'remeasurement', 'defined', 'benefit', 'liability', 'asset', 'note', '22', 'income', 'tax', 'comprehensive', 'income', 'note', '10', 'total', 'comprehensive', 'income', '180', 'total', 'comprehensive', 'income', 'period', '180', '13', '715', '13', '895', 'transactions', 'owners', 'recorded', 'directly', 'equity', 'capital', 'increase', '1', '166', '784', '166', '785', 'total', 'transactions', 'owners', '1', '166', '784', '166', '785', '31', 'december', '2013', '3', '358', '296', '92', '964', '164', '35', '404', '416', '023', '180', '3', '831', '891', '2', '940', '180', '3', '831', '891', '2', '760', '30', 'april', '2013', 'company', 'issued', '1', '142', '696', 'shares', 'par', 'value', '0', '001p', 'per', 'share', 'consideration', '150', '000', '000', 'prestige', 'motor', 'holdings', '18', 'december', '2013', 'company', 'issued', '127', '871', 'shares', 'par', 'value', '0', '001p', 'per', 'share', 'consideration', '16', '785', '000', 'daimler', 'ag', 'f', '103', 'company', 'statement', 'changes', 'equity', 'company', 'share', 'capital', '000', 'share', 'premium', '000', 'capital', 'reserve', '000', 'translation', 'reserve', '000', 'retained', 'earnings', '000', 'total', 'equity', '000', '1', 'january', '2014', '3', '358', '296', '92', '964', 'total', 'comprehensive', 'income', 'period', 'loss', '17', '197', '17', '197', 'total', 'comprehensive', 'expense', 'period', '17', '197', '17', '197', 'transactions', 'owners', 'recorded', 'directly', 'equity', 'capital', 'increase', '8', '167', '8', '167', 'total', 'transactions', 'owners', '8', '167', '8', '167', '31', 'december', '2014', '3', '366', '463', '92', '964', '519', '450', '744', '17', '716', '441', '714', 'april', '2014', '76', '180', 'ordinary', 'shares', 'issued', 'prestige', 'motor', 'holdings', 'controlled', 'investindustrial', 'v', 'l', 'p', 'consideration', '3', '750', '000', 'september', '2014', '33', '650', 'shares', 'par', 'value', '0', '001p', 'issued', 'daimler', 'ag', 'consideration', '4', '417', '000', 'company', 'share', 'capital', '000', 'share', 'premium', '000', 'capital', 'reserve', '000', 'translation', 'reserve', '000', 'retained', 'earnings', '000', 'total', 'equity', '000', '1', 'january', '2013', '2', '191', '512', '92', '964', 'total', 'comprehensive', 'income', 'period', 'loss', '7', '408', '7', '408', 'total', 'comprehensive', 'expense', 'period', '7', '408', '7', '408', 'transactions', 'owners', 'recorded', 'directly', 'equity', 'capital', 'increase', '1', '166', '784', '166', '785', 'total', 'transactions', 'owners', '1', '166', '784', '166', '785', '31', 'december', '2013', '3', '358', '296', '92', '964', '6', '889', '291', '367', '519', '450', '744', '30', 'april', '2013', 'company', 'issued', '1', '142', '696', 'shares', 'par', 'value', '0', '001p', 'per', 'share', 'consideration', '150', '000', '000', 'prestige', 'motor', 'holdings', '18', 'december', '2013', 'company', 'issued', '127', '871', 'shares', 'par', 'value', '0', '001p', 'per', 'share', 'consideration', '16', '785', '000', 'daimler', 'ag', 'f', '104', 'statements', 'financial', 'position', '31', 'december', '2014', 'non', 'current', 'assets', 'intangible', 'assets', 'property', 'plant', 'equipment', 'investment', 'associates', 'investments', 'subsidiary', 'undertakings', 'financial', 'assets', 'deferred', 'tax', 'asset', 'employee', 'benefits', 'current', 'assets', 'inventories', 'trade', 'receivables', 'financial', 'assets', 'cash', 'cash', 'equivalents', 'notes', 'group', '2014', '000', 'group', '2013', '000', 'company', '2014', '000', 'company', '2013', '000', '11', '13', '14', '14', '19', '10', '22', '625', '805', '174', '379', '44', '024', '570', '942', '180', '809', '1', '962', '1', '542', '23', '016', '1', '886', '667', '982', '667', '982', '844', '208', '780', '157', '667', '982', '667', '982', '98', '427', '51', '538', '527', '89', '250', '69', '965', '40', '350', '3', '108', '74', '653', '95', '223', '1', '17', '209', '1', '15', '16', '19', '17', 'total', 'assets', 'current', 'liabilities', 'borrowings', 'trade', 'payables', 'income', 'tax', 'payable', 'financial', 'liabilities', 'provisions', 'non', 'current', 'liabilities', 'borrowings', 'financial', 'liabilities', 'employee', 'benefits', 'provisions', 'deferred', 'tax', 'liabilities', '19', '18', '19', '21', '19', '19', '22', '21', '10', '239', '742', '188', '076', '95', '224', '17', '210', '1', '083', '950', '968', '233', '763', '206', '685', '192', '19', '808', '160', '048', '1', '208', '3', '088', '9', '171', '13', '854', '130', '566', '936', '253', '7', '678', '207', '297', '234', '448', '193', '323', '153', '287', '207', '297', '234', '448', '412', '598', '2', '819', '12', '404', '8', '111', '101', '894', '296', '765', '45', '9', '297', '92', '816', '114', '195', '537', '826', '398', '923', '114', '195', 'total', 'liabilities', '731', '149', '552', '210', '321', '492', '234', '448', 'net', 'assets', '352', '801', '416', '023', '441', '714', '450', '744', '3', '366', '463', '92', '964', '17', '716', '3', '358', '296', '92', '964', '519', 'capital', 'reserves', 'share', 'capital', 'share', 'premium', 'capital', 'reserve', 'translation', 'reserve', 'retained', 'earnings', 'equity', 'attributable', 'owners', 'group', 'non', 'controlling', 'interests', 'total', 'shareholders', 'equity', '23', '24', '24', '24', '3', '14', '3', '3', '366', '463', '358', '296', '94', '064', '92', '964', '172', '164', '112', '076', '35', '404', '348', '282', '4', '519', '416', '023', '441', '714', '450', '744', '352', '801', '416', '023', '441', '714', '450', '744', 'financial', 'statements', 'pages', '7', '40', 'approved', 'board', 'directors', '28', 'april', '2015', 'signed', 'behalf', 'dr', 'andrew', 'palmer', 'director', 'company', 'number', '06067176', 'notes', 'pages', '12', '40', 'form', 'integral', 'part', 'financial', 'statements', 'f', '105', 'consolidated', 'statement', 'cash', 'flows', 'year', 'ended', '31', 'december', '2014', 'group', '2014', '000', 'group', '2013', '000', '64', '752', '16', '655', '7', '079', '32', '56', '612', '137', '67', '1', '706', '28', '316', '51', '964', '8', '727', '362', '25', '586', '273', '69', '27', '547', '43', '796', '721', '21', '842', '8', '146', '26', '709', '89', '1', '038', '3', '424', '6', '799', '45', '026', '832', 'cash', 'generated', 'operations', 'income', 'taxes', 'paid', '59', '342', '1', '472', '22', '374', '1', '106', 'net', 'cash', 'inflow', 'operating', 'activities', '57', '870', '21', '268', 'notes', 'operating', 'activities', 'loss', 'year', 'adjustments', 'reconcile', 'loss', 'year', 'net', 'cash', 'inflow', 'operating', 'activities', 'tax', 'continuing', 'operations', 'share', 'result', 'associates', 'net', 'finance', 'costs', 'non', 'cash', 'movements', 'losses', 'sale', 'property', 'plant', 'equipment', 'gain', 'sale', 'associated', 'company', 'depreciation', 'impairment', 'property', 'plant', 'equipment', 'amortisation', 'impairment', 'intangible', 'assets', 'difference', 'pension', 'contributions', 'paid', 'amounts', 'recognised', 'income', 'statement', 'increase', 'decrease', 'inventories', 'increase', 'trade', 'receivables', 'increase', 'decrease', 'trade', 'payables', 'movement', 'provisions', 'cash', 'flows', 'investing', 'activities', 'interest', 'received', 'proceeds', 'disposal', 'property', 'plant', 'equipment', 'payments', 'acquire', 'property', 'plant', 'equipment', 'payments', 'acquire', 'intangible', 'assets', 'acquisition', 'amws', 'limited', 'net', 'cash', 'used', 'investing', 'activities', 'cash', 'flows', 'financing', 'activities', 'interest', 'paid', 'proceeds', 'equity', 'share', 'issue', 'movement', 'borrowings', 'new', 'borrowings', 'transaction', 'fees', 'new', 'borrowings', '10', '14', '5', '5', '13', '5', '11', '8', '2', '037', '18', '13', '20', '852', '11', '105', '631', '14', '1', '300', '1', '950', '14', '13', '123', '92', '157', '123', '128', '103', '316', '31', '938', '8', '167', '5', '348', '99', '620', '585', '32', '258', '166', '785', '27', '366', 'net', 'cash', 'inflow', 'financing', 'activities', '80', '612', '107', '161', 'net', 'increase', 'cash', 'cash', 'equivalents', 'cash', 'cash', 'equivalents', 'beginning', 'year', 'effect', 'exchange', 'rates', 'cash', 'cash', 'equivalents', '15', '354', '74', '653', '757', '25', '113', '50', '413', '873', '89', '250', '74', '653', 'cash', 'cash', 'equivalents', 'end', 'year', '23', '24', '19', '19', '25', '25', '25', 'notes', 'pages', '12', '40', 'form', 'integral', 'part', 'financial', 'statements', 'f', '106', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', '1', 'basis', 'accounting', 'aston', 'martin', 'holdings', 'uk', 'limited', 'company', 'company', 'incorporated', 'england', 'wales', 'domiciled', 'uk', 'group', 'financial', 'statements', 'consolidate', 'company', 'subsidiaries', 'together', 'referred', 'group', 'parent', 'company', 'financial', 'statements', 'present', 'information', 'company', 'separate', 'entity', 'not', 'group', 'parent', 'company', 'financial', 'statements', 'group', 'financial', 'statements', 'prepared', 'approved', 'directors', 'accordance', 'international', 'financial', 'reporting', 'standards', 'adopted', 'eu', 'adopted', 'ifrss', 'publishing', 'parent', 'company', 'financial', 'statements', 'together', 'group', 'financial', 'statements', 'company', 'taking', 'advantage', 'exemption', 's408', 'companies', 'act', '2006', 'not', 'present', 'individual', 'income', 'statement', 'related', 'notes', 'form', 'part', 'approved', 'financial', 'statements', 'financial', 'statements', 'prepared', 'historical', 'cost', 'convention', 'except', 'certain', 'financial', 'instruments', 'carried', 'fair', 'value', 'group', 'financial', 'statements', 'presented', 'sterling', 'values', 'rounded', 'nearest', 'thousand', 'pounds', '000', 'except', 'otherwise', 'indicated', 'group', 'meets', 'day', 'day', 'working', 'capital', 'requirements', 'medium', 'term', 'funding', 'requirements', 'mixture', 'senior', 'secured', 'notes', 'revolving', 'credit', 'facility', 'inventory', 'financing', 'facilities', 'wholesale', 'vehicle', 'financing', 'facility', 'group', 'issued', '304', '000', '000', '9', '25', 'senior', 'secured', 'notes', 'repayable', '2018', 'access', '30', '000', '000', 'revolving', 'credit', 'facility', '2016', 'undrawn', '31', 'december', '2014', '31', 'december', '2013', 'senior', 'secured', 'notes', 'revolving', 'credit', 'facility', 'include', 'certain', 'covenant', 'tests', 'march', '2014', 'company', 'issued', 'senior', 'subordinated', 'pik', 'notes', 'value', '165', '000', '000', 'us', 'dollars', '99', '620', '000', 'due', 'repayment', 'july', '2018', '23', 'april', '2015', 'company', 'accepted', 'binding', 'subscriptions', '200', 'million', 'preference', 'shares', 'first', 'tranche', '100', 'million', 'received', '27', 'april', '2015', 'second', 'tranche', '100', 'million', 'may', 'drawn', 'time', 'following', '12', 'months', 'subscriptions', 'also', 'included', 'warrants', 'pro', 'rata', 'allocation', 'p', 'shares', 'non', 'voting', 'ordinary', 'shares', 'corresponding', '4', 'current', 'fully', 'diluted', 'share', 'capital', 'company', 'directors', 'prepared', 'trading', 'cash', 'flow', 'forecasts', 'period', '2020', 'date', 'approval', 'financial', 'statements', 'forecasts', 'show', 'group', 'sufficient', 'financial', 'resources', 'meet', 'obligations', 'fall', 'due', 'meet', 'covenant', 'tests', 'period', 'least', '12', 'months', 'date', 'financial', 'statements', 'approved', 'forecasts', 'make', 'assumptions', 'respect', 'future', 'trading', 'conditions', 'particular', 'launch', 'future', 'models', 'nature', 'group', 'business', 'variation', 'timing', 'cash', 'flows', 'around', 'development', 'launch', 'new', 'models', 'availability', 'funds', 'provided', 'vehicle', 'wholesale', 'finance', 'facility', 'availability', 'credit', 'insurance', 'sales', 'volumes', 'vary', 'total', 'seasonally', 'forecasts', 'take', 'account', 'aforementioned', 'factors', 'extent', 'directors', 'consider', 'represent', 'best', 'estimate', 'future', 'events', 'based', 'information', 'available', 'time', 'approval', 'financial', 'statements', 'directors', 'also', 'prepared', 'downside', 'forecast', 'incorporates', 'certain', 'adverse', 'sensitivities', 'not', 'expected', 'still', 'represent', 'reasonably', 'possible', 'scenario', 'forecast', 'group', 'still', 'sufficient', 'financial', 'resources', 'meet', 'obligations', 'fall', 'due', 'meets', 'covenant', 'tests', 'period', 'least', '12', 'months', 'date', 'financial', 'statements', 'approved', 'accordingly', 'considering', 'forecasts', 'appropriate', 'sensitivities', 'current', 'trading', 'available', 'facilities', 'directors', 'reasonable', 'expectation', 'group', 'adequate', 'f', '107', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', 'resources', 'continue', 'operational', 'existence', 'foreseeable', 'future', 'therefore', 'directors', 'continue', 'adopt', 'going', 'concern', 'basis', 'preparing', 'financial', 'statements', '2', 'accounting', 'policies', 'basis', 'consolidation', 'subsidiaries', 'subsidiaries', 'consolidated', 'date', 'acquisition', 'date', 'group', 'obtains', 'control', 'continue', 'consolidated', 'date', 'control', 'ceases', 'control', 'comprises', 'power', 'govern', 'financial', 'operating', 'policies', 'investee', 'obtain', 'benefit', 'activities', 'achieved', 'direct', 'indirect', 'ownership', 'voting', 'rights', 'currently', 'exercisable', 'convertible', 'potential', 'voting', 'rights', 'way', 'contractual', 'agreement', 'financial', 'statements', 'subsidiaries', 'used', 'preparation', 'consolidated', 'financial', 'statements', 'prepared', 'reporting', 'year', 'parent', 'company', 'based', 'consistent', 'accounting', 'policies', 'inter', 'company', 'balances', 'transactions', 'including', 'unrealised', 'profits', 'arising', 'eliminated', 'investments', 'associates', 'associates', 'entities', 'group', 'significant', 'influence', 'not', 'control', 'financial', 'operating', 'policies', 'significant', 'influence', 'presumed', 'exist', 'group', 'holds', '20', '50', 'per', 'cent', 'voting', 'power', 'another', 'entity', 'associates', 'accounted', 'using', 'equity', 'method', 'equity', 'accounted', 'investees', 'initially', 'recognised', 'cost', 'group', 'investment', 'includes', 'goodwill', 'identified', 'acquisition', 'net', 'accumulated', 'impairment', 'losses', 'consolidated', 'financial', 'statements', 'include', 'group', 'share', 'total', 'comprehensive', 'income', 'equity', 'movements', 'equity', 'accounted', 'investees', 'date', 'significant', 'influence', 'commences', 'date', 'significant', 'influence', 'ceases', 'group', 'share', 'losses', 'exceeds', 'interest', 'equity', 'accounted', 'investee', 'group', 'carrying', 'amount', 'reduced', 'nil', 'recognition', 'losses', 'discontinued', 'except', 'extent', 'group', 'incurred', 'legal', 'constructive', 'obligations', 'made', 'payments', 'behalf', 'investee', 'government', 'grants', 'government', 'grants', 'recognised', 'income', 'statement', 'match', 'related', 'expenses', 'intended', 'compensate', 'foreign', 'currency', 'translation', 'transactions', 'foreign', 'currencies', 'initially', 'recorded', 'functional', 'currency', 'operation', 'applying', 'exchange', 'rate', 'ruling', 'date', 'transaction', 'monetary', 'assets', 'liabilities', 'denominated', 'foreign', 'currencies', 'retranslated', 'functional', 'currency', 'rate', 'exchange', 'ruling', 'reporting', 'date', 'differences', 'taken', 'profit', 'loss', 'except', 'differences', 'monetary', 'assets', 'liabilities', 'form', 'part', 'group', 'net', 'investment', 'foreign', 'operation', 'taken', 'directly', 'equity', 'disposal', 'net', 'investment', 'time', 'recognised', 'comprehensive', 'income', 'assets', 'liabilities', 'foreign', 'operations', 'translated', 'sterling', 'rate', 'exchange', 'ruling', 'reporting', 'date', 'income', 'expenses', 'translated', 'average', 'exchange', 'rates', 'period', 'resulting', 'exchange', 'differences', 'taken', 'directly', 'comprehensive', 'income', 'disposal', 'foreign', 'entity', 'deferred', 'cumulative', 'amount', 'recognised', 'comprehensive', 'income', 'relating', 'particular', 'foreign', 'operation', 'recognised', 'profit', 'loss', 'non', 'monetary', 'items', 'measured', 'terms', 'historical', 'cost', 'foreign', 'currency', 'translated', 'using', 'exchange', 'rates', 'dates', 'initial', 'transactions', 'non', 'monetary', 'items', 'measured', 'fair', 'value', 'foreign', 'currency', 'translated', 'using', 'exchange', 'rates', 'date', 'fair', 'value', 'determined', 'f', '108', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', 'revenue', 'recognition', 'revenue', 'recognised', 'extent', 'probable', 'economic', 'benefits', 'flow', 'group', 'revenue', 'reliably', 'measured', 'revenue', 'measured', 'fair', 'value', 'consideration', 'receivable', 'deducting', 'wholesale', 'anticipated', 'retail', 'discounts', 'rebates', 'vat', 'sales', 'taxes', 'duty', 'following', 'criteria', 'must', 'also', 'met', 'revenue', 'recognised', 'sale', 'vehicles', 'revenue', 'sale', 'vehicles', 'recognised', 'significant', 'risks', 'rewards', 'ownership', 'vehicles', 'passed', 'buyer', 'normally', 'considered', 'point', 'despatch', 'dealer', 'distributor', 'party', 'group', 'acts', 'agent', 'vehicles', 'adopted', 'dealer', 'distributor', 'party', 'dealer', 'aston', 'martin', 'works', 'limited', 'aston', 'martin', 'italy', 'r', 'l', 'indirect', 'subsidiaries', 'aston', 'martin', 'holdings', 'uk', 'limited', 'revenue', 'recognised', 'point', 'sale', 'customer', 'buyer', 'outside', 'group', 'despatch', 'deferred', 'formal', 'request', 'buyer', 'revenue', 'recognised', 'vehicle', 'ready', 'despatch', 'written', 'request', 'hold', 'vehicle', 'specified', 'delivery', 'date', 'received', 'vehicles', 'sold', 'warranty', 'revenue', 'relating', 'warranty', 'service', 'recognised', 'despatch', 'vehicle', 'sales', 'parts', 'revenue', 'sale', 'parts', 'generally', 'recognised', 'upon', 'despatch', 'dealer', 'party', 'group', 'acts', 'agent', 'dealer', 'aston', 'martin', 'works', 'limited', 'aston', 'martin', 'italy', 'r', 'l', 'indirect', 'subsidiaries', 'aston', 'martin', 'holdings', 'uk', 'limited', 'revenue', 'recognised', 'point', 'despatch', 'buyer', 'outside', 'group', 'servicing', 'restoration', 'vehicles', 'bodyshop', 'sales', 'income', 'servicing', 'restoration', 'vehicles', 'bodyshop', 'sales', 'recognised', 'services', 'completed', 'finance', 'income', 'finance', 'income', 'comprises', 'interest', 'receivable', 'funds', 'invested', 'calculated', 'using', 'effective', 'interest', 'rate', 'method', 'net', 'interest', 'income', 'net', 'defined', 'benefit', 'liability', 'asset', 'gains', 'financial', 'instruments', 'recognised', 'profit', 'loss', 'finance', 'expense', 'finance', 'expense', 'comprises', 'interest', 'payable', 'borrowings', 'calculated', 'using', 'effective', 'interest', 'rate', 'method', 'net', 'interest', 'expense', 'net', 'defined', 'benefit', 'liability', 'asset', 'losses', 'financial', 'instruments', 'recognised', 'profit', 'loss', 'net', 'losses', 'financial', 'liabilities', 'measured', 'amortised', 'cost', 'borrowing', 'costs', 'directly', 'attributable', 'acquisition', 'construction', 'production', 'asset', 'takes', 'substantial', 'time', 'prepared', 'use', 'capitalised', 'part', 'cost', 'asset', 'current', 'non', 'current', 'classification', 'current', 'assets', 'include', 'assets', 'held', 'primarily', 'trading', 'purposes', 'cash', 'cash', 'equivalents', 'assets', 'expected', 'realised', 'intended', 'sale', 'consumption', 'course', 'group', 'operating', 'cycle', 'current', 'assets', 'also', 'include', 'assets', 'classified', 'held', 'sale', 'assets', 'classified', 'non', 'current', 'assets', 'current', 'liabilities', 'include', 'liabilities', 'held', 'primarily', 'trading', 'purposes', 'liabilities', 'expected', 'settled', 'course', 'group', 'operating', 'cycle', 'liabilities', 'due', 'within', 'one', 'year', 'reporting', 'date', 'liabilities', 'classified', 'non', 'current', 'liabilities', 'f', '109', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', 'goodwill', 'initial', 'recognition', 'goodwill', 'stated', 'cost', 'less', 'accumulated', 'impairment', 'losses', 'carrying', 'value', 'reviewed', 'impairment', 'least', 'annually', 'whenever', 'events', 'changes', 'circumstances', 'indicate', 'carrying', 'value', 'may', 'impaired', 'purpose', 'impairment', 'testing', 'goodwill', 'allocated', 'related', 'cash', 'generating', 'units', 'monitored', 'management', 'usually', 'business', 'segment', 'level', 'statutory', 'company', 'level', 'case', 'may', 'cash', 'generating', 'unit', 'group', 'aston', 'martin', 'lagonda', 'group', 'limited', 'business', 'recoverable', 'amount', 'cash', 'generating', 'unit', 'less', 'carrying', 'amount', 'including', 'goodwill', 'impairment', 'loss', 'recognised', 'profit', 'loss', 'intangible', 'assets', 'intangible', 'assets', 'acquired', 'separately', 'business', 'carried', 'initially', 'cost', 'intangible', 'asset', 'acquired', 'part', 'business', 'combination', 'recognised', 'outside', 'goodwill', 'asset', 'separable', 'arises', 'contractual', 'legal', 'rights', 'fair', 'value', 'measured', 'reliably', 'purchased', 'intellectual', 'property', 'purchased', 'intellectual', 'property', 'not', 'integral', 'item', 'property', 'plant', 'equipment', 'recognised', 'separately', 'intangible', 'asset', 'stated', 'cost', 'less', 'accumulated', 'depreciation', 'brands', 'acquired', 'brand', 'recognised', 'statement', 'financial', 'position', 'intangible', 'asset', 'supported', 'registered', 'trademark', 'established', 'market', 'place', 'brand', 'earnings', 'separately', 'identifiable', 'brand', 'could', 'sold', 'separately', 'rest', 'business', 'brand', 'achieves', 'earnings', 'excess', 'achieved', 'unbranded', 'products', 'value', 'acquired', 'brand', 'determined', 'allocating', 'purchase', 'price', 'consideration', 'acquired', 'business', 'underlying', 'fair', 'values', 'tangible', 'assets', 'goodwill', 'brands', 'intangible', 'assets', 'acquired', 'using', 'income', 'approach', 'multiperiod', 'excess', 'earnings', 'methodology', 'development', 'costs', 'expenditure', 'internally', 'developed', 'intangible', 'assets', 'excluding', 'development', 'costs', 'taken', 'profit', 'loss', 'year', 'incurred', 'expenditure', 'relating', 'clearly', 'defined', 'identifiable', 'development', 'projects', 'recognised', 'intangible', 'asset', 'following', 'criteria', 'met', 'project', 'technical', 'feasibility', 'commercial', 'viability', 'demonstrated', 'availability', 'adequate', 'technical', 'financial', 'resources', 'intention', 'complete', 'project', 'confirmed', 'correlation', 'development', 'costs', 'future', 'revenues', 'established', 'technology', 'patented', 'unpatented', 'technology', 'acquired', 'business', 'combinations', 'valued', 'using', 'cost', 'approach', 'value', 'determined', 'using', 'substitution', 'principle', 'adjusting', 'actual', 'costs', 'incurred', 'loss', 'due', 'obsolescence', 'date', 'acquisition', 'aston', 'martin', 'lagonda', 'group', 'limited', 'obsolete', 'element', 'determined', 'reference', 'proportion', 'product', 'life', 'cycle', 'expired', 'acquisition', 'date', 'technology', 'acquired', 'third', 'parties', 'included', 'fair', 'value', 'dealer', 'network', 'group', 'sells', 'vehicles', 'exclusively', 'network', 'franchised', 'dealers', 'extent', 'group', 'benefits', 'network', 'means', 'distribution', 'dealer', 'network', 'valued', 'based', 'costs', 'incurred', 'group', 'f', '110', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', 'beneficial', 'lease', 'rent', 'free', 'lease', 'options', 'valued', 'basis', 'net', 'present', 'value', 'market', 'rental', 'cashflows', 'amortisation', 'following', 'initial', 'recognition', 'historic', 'cost', 'model', 'applied', 'intangible', 'assets', 'carried', 'cost', 'less', 'accumulated', 'amortisation', 'accumulated', 'impairment', 'losses', 'amortisation', 'capitalised', 'costs', 'begins', 'date', 'production', 'commences', 'intangible', 'assets', 'finite', 'life', 'no', 'residual', 'value', 'amortised', 'straight', 'line', 'basis', 'expected', 'useful', 'lives', 'charges', 'included', 'profit', 'loss', 'follows', 'years', 'purchased', 'intellectual', 'property', 'brands', 'development', 'costs', 'technology', 'dealer', 'network', 'beneficial', 'lease', '5', 'indefinite', 'life', 'life', 'model', '10', '20', '10', 'property', 'plant', 'equipment', 'property', 'plant', 'equipment', 'stated', 'cost', 'less', 'accumulated', 'depreciation', 'accumulated', 'impairment', 'losses', 'cost', 'comprises', 'aggregate', 'amount', 'paid', 'fair', 'value', 'consideration', 'given', 'acquire', 'asset', 'includes', 'costs', 'directly', 'attributable', 'making', 'asset', 'capable', 'operating', 'intended', 'borrowing', 'costs', 'directly', 'attributable', 'assets', 'construction', 'capitalised', 'depreciation', 'provided', 'property', 'plant', 'equipment', 'land', 'straight', 'line', 'basis', 'residual', 'value', 'expected', 'useful', 'life', 'follows', 'years', 'freehold', 'buildings', 'plant', 'machinery', 'fixtures', 'fittings', 'tooling', 'motor', 'vehicles', '30', '3', '30', '5', '9', 'tooling', 'amortised', 'life', 'project', 'following', 'review', 'useful', 'lives', 'computer', 'software', 'hardware', 'assets', 'year', 'ended', '31', 'december', '2013', 'assets', 'greater', '3', 'years', 'old', '4', 'years', 'old', 'respectively', 'deemed', 'no', 'future', 'useful', 'life', 'fully', 'impaired', 'future', 'depreciation', 'rates', 'adjusted', 'reflect', 'revised', 'useful', 'lives', 'computer', 'software', 'hardware', 'assets', 'contained', 'within', 'plant', 'machinery', 'fixtures', 'fittings', 'tooling', 'assets', 'course', 'construction', 'included', 'respective', 'category', 'not', 'depreciated', 'completion', 'construction', 'no', 'depreciation', 'provided', 'freehold', 'land', 'carrying', 'values', 'property', 'plant', 'equipment', 'reviewed', 'impairment', 'events', 'changes', 'circumstances', 'indicate', 'carrying', 'value', 'may', 'not', 'recoverable', 'written', 'immediately', 'recoverable', 'amount', 'useful', 'lives', 'residual', 'values', 'reviewed', 'annually', 'adjustments', 'required', 'made', 'prospectively', 'item', 'property', 'plant', 'equipment', 'derecognised', 'upon', 'disposal', 'no', 'future', 'economic', 'benefits', 'expected', 'arise', 'continued', 'use', 'asset', 'gain', 'loss', 'arising', 'derecognition', 'asset', 'included', 'profit', 'loss', 'period', 'derecognition', 'f', '111', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', 'investments', 'subsidiaries', 'associates', 'separate', 'financial', 'statements', 'company', 'recognises', 'investments', 'subsidiaries', 'cost', 'income', 'recognised', 'investments', 'relation', 'distributions', 'received', 'postacquisition', 'profits', 'distributions', 'received', 'excess', 'post', 'acquisition', 'profits', 'deducted', 'cost', 'investment', 'associate', 'entity', 'group', 'significant', 'influence', 'significant', 'influence', 'power', 'participate', 'financial', 'operating', 'policy', 'decisions', 'investee', 'not', 'control', 'joint', 'control', 'policies', 'results', 'assets', 'liabilities', 'associates', 'incorporated', 'consolidated', 'financial', 'statements', 'using', 'equity', 'method', 'accounting', 'equity', 'method', 'investments', 'associates', 'carried', 'consolidated', 'statement', 'financial', 'position', 'cost', 'adjusted', 'post', 'acquisition', 'changes', 'group', 'share', 'net', 'assets', 'associates', 'lmpairment', 'assets', 'group', 'assesses', 'reporting', 'date', 'whether', 'indication', 'asset', 'may', 'impaired', 'indication', 'exists', 'annual', 'impairment', 'testing', 'asset', 'required', 'group', 'makes', 'estimate', 'asset', 'recoverable', 'amount', 'asset', 'recoverable', 'amount', 'higher', 'asset', 'cash', 'generating', 'unit', 'fair', 'value', 'less', 'costs', 'sell', 'value', 'use', 'determined', 'individual', 'asset', 'unless', 'asset', 'not', 'generate', 'cash', 'inflows', 'largely', 'independent', 'assets', 'groups', 'assets', 'carrying', 'amount', 'asset', 'exceeds', 'recoverable', 'amount', 'asset', 'considered', 'impaired', 'written', 'recoverable', 'amount', 'assessing', 'value', 'use', 'estimated', 'future', 'cash', 'flows', 'discounted', 'present', 'value', 'using', 'pre', 'tax', 'discount', 'rate', 'reflects', 'current', 'market', 'assessments', 'time', 'value', 'money', 'risks', 'specific', 'asset', 'impairment', 'losses', 'continuing', 'operations', 'recognised', 'profit', 'loss', 'expense', 'categories', 'consistent', 'function', 'impaired', 'asset', 'goodwill', 'brands', 'infinite', 'life', 'capitalised', 'development', 'costs', 'not', 'yet', 'available', 'use', 'recoverable', 'amount', 'estimated', 'annually', 'frequently', 'indication', 'asset', 'impaired', 'impairment', 'loss', 'subsequently', 'reverses', 'carrying', 'amount', 'asset', 'cashgenerating', 'unit', 'increased', 'revised', 'estimate', 'recoverable', 'amount', 'increased', 'carrying', 'amount', 'not', 'exceed', 'carrying', 'amount', 'would', 'determined', 'no', 'impairment', 'loss', 'recognised', 'asset', 'cash', 'generating', 'unit', 'prior', 'periods', 'reversal', 'impairment', 'loss', 'recognised', 'income', 'immediately', 'impairment', 'losses', 'recognised', 'goodwill', 'can', 'not', 'reversed', 'inventories', 'inventories', 'stated', 'lower', 'cost', 'net', 'realisable', 'value', 'service', 'restoration', 'projects', 'net', 'realisable', 'value', 'price', 'project', 'invoiced', 'normal', 'course', 'business', 'allowing', 'costs', 'realisation', 'cost', 'includes', 'costs', 'incurred', 'bringing', 'product', 'present', 'location', 'condition', 'follows', 'raw', 'materials', 'service', 'parts', 'spare', 'parts', 'purchase', 'cost', 'first', 'first', 'basis', 'work', 'progress', 'finished', 'vehicles', 'cost', 'direct', 'materials', 'labour', 'plus', 'attributable', 'overheads', 'based', 'normalised', 'level', 'activity', 'excluding', 'borrowing', 'costs', 'provisions', 'made', 'specific', 'basis', 'obsolete', 'slow', 'moving', 'defective', 'stocks', 'cost', 'service', 'restoration', 'project', 'can', 'not', 'fully', 'recovered', 'leases', 'payments', 'made', 'operating', 'leases', 'recognised', 'statement', 'comprehensive', 'income', 'straight', 'line', 'basis', 'term', 'lease', 'predetermined', 'rental', 'increases', 'f', '112', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', 'included', 'lease', 'recognised', 'straight', 'line', 'basis', 'benefits', 'received', 'incentive', 'sign', 'lease', 'whatever', 'form', 'may', 'take', 'credited', 'profit', 'loss', 'straight', 'line', 'basis', 'lease', 'term', 'cash', 'cash', 'equivalents', 'cash', 'short', 'term', 'deposits', 'statement', 'financial', 'position', 'comprise', 'cash', 'banks', 'hand', 'short', 'term', 'deposits', 'original', 'maturity', 'three', 'months', 'less', 'purpose', 'consolidated', 'cash', 'flow', 'statement', 'cash', 'cash', 'equivalents', 'consist', 'cash', 'cash', 'equivalents', 'defined', 'consignment', 'deposit', 'monies', 'received', 'customers', 'dealers', 'included', 'trade', 'payables', 'released', 'profit', 'loss', 'completion', 'sale', 'financial', 'liability', 'deposits', 'derecognised', 'entity', 'not', 'obligation', 'respect', 'deposits', 'derivative', 'financial', 'instruments', 'derivative', 'financial', 'assets', 'liabilities', 'recognised', 'statement', 'financial', 'position', 'fair', 'value', 'group', 'becomes', 'party', 'contractual', 'provisions', 'instrument', 'group', 'uses', 'derivative', 'instruments', 'manage', 'exposure', 'foreign', 'exchange', 'risk', 'arising', 'operating', 'financing', 'activities', 'movements', 'fair', 'value', 'foreign', 'exchange', 'derivatives', 'recognised', 'finance', 'income', 'expense', 'realised', 'gains', 'losses', 'cost', 'sales', 'statement', 'comprehensive', 'income', 'movements', 'fair', 'value', 'interest', 'rate', 'derivatives', 'taken', 'finance', 'income', 'finance', 'expense', 'appropriate', 'financial', 'asset', 'liability', 'derecognised', 'contract', 'gives', 'rise', 'settled', 'sold', 'cancelled', 'expires', 'financial', 'assets', 'liabilities', 'financial', 'assets', 'cash', 'contractual', 'right', 'receive', 'cash', 'another', 'financial', 'asset', 'another', 'entity', 'exchange', 'financial', 'assets', 'liabilities', 'another', 'entity', 'conditions', 'potentially', 'favourable', 'entity', 'addition', 'contracts', 'result', 'another', 'entity', 'delivering', 'variable', 'number', 'equity', 'instruments', 'financial', 'assets', 'trade', 'receivables', 'trade', 'receivables', 'carried', 'lower', 'original', 'invoiced', 'value', 'recoverable', 'amount', 'provision', 'made', 'objective', 'evidence', 'group', 'not', 'able', 'recover', 'balances', 'full', 'amount', 'write', 'determined', 'difference', 'asset', 'carrying', 'amount', 'present', 'value', 'estimated', 'future', 'cash', 'flows', 'receivables', 'not', 'discounted', 'time', 'value', 'money', 'not', 'considered', 'material', 'derivative', 'financial', 'assets', 'derivative', 'financial', 'asset', 'assessed', 'reporting', 'date', 'determine', 'whether', 'objective', 'evidence', 'impaired', 'derivative', 'financial', 'asset', 'considered', 'impaired', 'objective', 'evidence', 'indicates', 'one', 'events', 'negative', 'effect', 'estimated', 'future', 'cash', 'flows', 'asset', 'trade', 'payables', 'trade', 'payables', 'recognised', 'carried', 'original', 'invoiced', 'value', 'payables', 'not', 'discounted', 'take', 'account', 'time', 'value', 'money', 'effect', 'immaterial', 'f', '113', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', 'borrowings', 'borrowings', 'recognised', 'initially', 'fair', 'value', 'less', 'attributable', 'transaction', 'costs', 'subsequent', 'initial', 'recognition', 'borrowings', 'stated', 'amortised', 'cost', 'difference', 'cost', 'redemption', 'value', 'recognised', 'profit', 'loss', 'period', 'borrowings', 'effective', 'interest', 'basis', 'pensions', 'group', 'operates', 'defined', 'contribution', 'pension', 'plan', 'group', 'pays', 'fixed', 'contributions', 'separate', 'entity', 'no', 'legal', 'constructive', 'obligation', 'pay', 'amounts', 'obligations', 'contributions', 'defined', 'contribution', 'pension', 'plans', 'recognised', 'expense', 'income', 'statement', 'periods', 'services', 'rendered', 'employees', 'group', 'operates', 'defined', 'benefit', 'pension', 'plan', 'contracted', 'state', 'scheme', 'group', 'net', 'obligation', 'respect', 'defined', 'benefit', 'plans', 'calculated', 'plan', 'estimating', 'amount', 'future', 'benefit', 'employees', 'earned', 'current', 'prior', 'periods', 'discounting', 'amount', 'deducting', 'fair', 'value', 'plan', 'assets', 'calculation', 'defined', 'benefit', 'obligations', 'performed', 'annually', 'qualified', 'actuary', 'using', 'projected', 'unit', 'credit', 'method', 'calculation', 'results', 'potential', 'asset', 'group', 'recognised', 'asset', 'limited', 'present', 'value', 'economic', 'benefits', 'available', 'form', 'future', 'refunds', 'plan', 'reductions', 'future', 'contributions', 'plan', 'calculate', 'present', 'value', 'economic', 'benefits', 'consideration', 'given', 'minimum', 'funding', 'requirements', 'remeasurements', 'net', 'defined', 'benefit', 'asset', 'liability', 'comprise', 'actuarial', 'gains', 'losses', 'interest', 'plan', 'assets', 'excluding', 'interest', 'effect', 'asset', 'ceiling', 'excluding', 'interest', 'recognised', 'immediately', 'comprehensive', 'income', 'group', 'determines', 'net', 'interest', 'expense', 'income', 'net', 'defined', 'benefit', 'asset', 'liability', 'taking', 'account', 'changes', 'net', 'defined', 'asset', 'liability', 'period', 'result', 'contributions', 'benefit', 'payments', 'net', 'interest', 'expense', 'expenses', 'related', 'defined', 'benefit', 'plans', 'recognised', 'profit', 'loss', 'benefits', 'plan', 'changed', 'plan', 'curtailed', 'resulting', 'change', 'benefit', 'relates', 'past', 'service', 'cost', 'gain', 'loss', 'curtailment', 'recognised', 'immediately', 'profit', 'loss', 'group', 'recognises', 'gains', 'losses', 'settlement', 'defined', 'benefit', 'plan', 'settlement', 'occurs', 'share', 'based', 'payment', 'transactions', 'grant', 'date', 'fair', 'value', 'options', 'granted', 'employees', 'recognised', 'employee', 'expense', 'corresponding', 'increase', 'equity', 'period', 'employees', 'become', 'unconditionally', 'entitled', 'options', 'amount', 'recognised', 'expense', 'adjusted', 'reflect', 'actual', 'number', 'share', 'options', 'related', 'service', 'non', 'market', 'vesting', 'conditions', 'met', 'warranty', 'provision', 'provision', 'recognised', 'group', 'legal', 'constructive', 'obligation', 'result', 'past', 'event', 'probable', 'outflow', 'economic', 'benefits', 'required', 'settle', 'obligation', 'typically', 'despatch', 'vehicle', 'expected', 'future', 'cash', 'flows', 'not', 'discounted', 'present', 'value', 'effect', 'not', 'material', 'group', 'provides', 'estimated', 'liability', 'products', 'warranty', 'provision', 'estimated', 'based', 'past', 'experience', 'level', 'warranty', 'claims', 'received', 'f', '114', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', 'income', 'taxes', 'tax', 'profit', 'loss', 'period', 'represents', 'sum', 'tax', 'currently', 'payable', 'deferred', 'tax', 'tax', 'recognised', 'profit', 'loss', 'except', 'extent', 'relates', 'items', 'recognised', 'directly', 'equity', 'case', 'recognised', 'comprehensive', 'income', 'current', 'tax', 'assets', 'liabilities', 'measured', 'amount', 'expected', 'recovered', 'paid', 'taxation', 'authorities', 'based', 'tax', 'rates', 'laws', 'enacted', 'substantively', 'enacted', 'reporting', 'date', 'deferred', 'income', 'tax', 'recognised', 'temporary', 'differences', 'arising', 'tax', 'bases', 'assets', 'liabilities', 'carrying', 'amounts', 'financial', 'statements', 'following', 'exceptions', 'temporary', 'difference', 'arises', 'initial', 'recognition', 'goodwill', 'asset', 'liability', 'transaction', 'not', 'business', 'combination', 'time', 'transaction', 'affects', 'neither', 'accounting', 'nor', 'taxable', 'profit', 'loss', 'respect', 'taxable', 'temporary', 'differences', 'associated', 'investments', 'subsidiaries', 'timing', 'reversal', 'temporary', 'differences', 'controlled', 'probable', 'temporary', 'differences', 'not', 'reverse', 'foreseeable', 'future', 'deferred', 'income', 'tax', 'assets', 'recognised', 'extent', 'probable', 'taxable', 'profit', 'available', 'deductible', 'temporary', 'differences', 'carried', 'forward', 'tax', 'credits', 'tax', 'losses', 'utilised', 'deferred', 'income', 'tax', 'assets', 'liabilities', 'measured', 'undiscounted', 'basis', 'tax', 'rates', 'expected', 'apply', 'related', 'asset', 'realised', 'liability', 'settled', 'based', 'tax', 'rates', 'laws', 'enacted', 'substantively', 'enacted', 'reporting', 'date', 'equity', 'instruments', 'equity', 'instrument', 'contract', 'evidences', 'residual', 'interest', 'assets', 'group', 'deducting', 'liabilities', 'equity', 'instruments', 'issued', 'group', 'recorded', 'proceeds', 'received', 'net', 'direct', 'issue', 'costs', 'dividends', 'distributions', 'relating', 'equity', 'instruments', 'debited', 'direct', 'equity', 'critical', 'accounting', 'assumptions', 'key', 'sources', 'estimation', 'uncertainty', 'preparation', 'financial', 'statements', 'requires', 'management', 'make', 'estimates', 'assumptions', 'affect', 'amounts', 'reported', 'assets', 'liabilities', 'reporting', 'date', 'amounts', 'reported', 'revenues', 'expenses', 'period', 'nature', 'estimation', 'means', 'actual', 'outcomes', 'could', 'differ', 'estimates', 'process', 'applying', 'group', 'accounting', 'policies', 'described', 'note', 'management', 'made', 'following', 'judgements', 'significant', 'effect', 'amounts', 'recognised', 'financial', 'statements', 'point', 'capitalisation', 'amortisation', 'development', 'costs', 'useful', 'lives', 'tangible', 'intangible', 'assets', 'key', 'sources', 'estimation', 'uncertainty', 'significant', 'risk', 'causing', 'material', 'adjustments', 'carrying', 'amounts', 'assets', 'liabilities', 'within', 'next', 'financial', 'year', 'follows', 'measurement', 'impairment', 'indefinite', 'life', 'intangible', 'assets', 'including', 'goodwill', 'measurement', 'warranty', 'liabilities', 'measurement', 'defined', 'benefit', 'pension', 'assets', 'obligations', 'measurement', 'intangible', 'assets', 'goodwill', 'business', 'combination', 'involves', 'estimation', 'future', 'cash', 'flows', 'selection', 'suitable', 'discount', 'rate', 'group', 'f', '115', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', 'determines', 'whether', 'indefinite', 'life', 'intangible', 'assets', 'impaired', 'annual', 'basis', 'requires', 'estimation', 'value', 'use', 'cash', 'generating', 'units', 'intangible', 'assets', 'allocated', 'involves', 'estimation', 'future', 'cash', 'flows', 'choosing', 'suitable', 'discount', 'rate', 'see', 'note', '12', 'measurement', 'warranty', 'liabilities', 'estimated', 'past', 'experience', 'actual', 'level', 'warranty', 'claims', 'received', 'management', 'establishes', 'estimates', 'based', 'historical', 'information', 'nature', 'frequency', 'average', 'cost', 'warranty', 'claims', 'measurement', 'defined', 'benefit', 'pension', 'obligations', 'requires', 'estimation', 'future', 'changes', 'salaries', 'inflation', 'well', 'mortality', 'rates', 'expected', 'return', 'assets', 'suitable', 'discount', 'rates', 'see', 'note', '22', 'group', 'adopted', 'following', 'new', 'standards', 'amendments', 'standards', 'including', 'consequential', 'amendments', 'standards', 'date', 'initial', 'application', '1', 'january', '2014', 'international', 'financial', 'reporting', 'standard', 'ifrs', '10', 'consolidated', 'financial', 'statements', 'international', 'financial', 'reporting', 'standard', 'ifrs', '11', 'joint', 'arrangements', 'international', 'financial', 'reporting', 'standard', 'ifrs', '12', 'disclosure', 'interests', 'entities', 'adoption', 'standards', 'no', 'significant', 'impact', 'profit', 'net', 'assets', 'following', 'new', 'standards', 'not', 'yet', 'effective', 'endorsed', 'european', 'union', 'could', 'relevant', 'group', 'no', 'new', 'standards', 'endorsed', 'european', 'union', 'deemed', 'significant', 'group', 'relevant', 'standards', 'not', 'yet', 'endorsed', 'european', 'union', 'significant', 'impact', 'group', 'ifrs', '9', 'financial', 'instruments', 'first', 'chapters', 'new', 'standard', 'accounting', 'financial', 'instruments', 'replace', 'ias', '39', 'financial', 'instruments', 'recognition', 'measurement', 'effective', 'periods', '1', 'january', '2018', 'ifrs', '15', 'revenue', 'contracts', 'customers', 'standard', 'introduces', 'new', 'revenue', 'recognition', 'model', 'recognises', 'revenue', 'either', 'point', 'time', 'time', 'effective', 'periods', '1', 'january', '2017', '3', 'acquisition', 'subsidiary', 'acquisitions', 'current', 'period', '30', 'april', '2014', 'aston', 'martin', 'holdings', 'uk', 'limited', 'aston', 'martin', 'lagonda', 'limited', 'indirect', 'subsidiary', 'exercised', 'option', 'acquire', 'additional', '10', 'share', 'capital', 'amws', 'limited', 'parent', 'company', 'aston', 'martin', 'works', 'limited', 'increasing', 'interest', 'ordinary', 'share', 'capital', 'company', '40', '50', 'aston', 'martin', 'works', 'limited', 'principal', 'activities', 'servicing', 'restoration', 'sale', 'luxury', 'high', 'performance', 'motor', 'cars', 'brand', 'name', 'aston', 'martin', '4', 'months', '30', 'april', '2014', 'subsidiary', 'contributed', 'net', 'profit', '32', '000', 'consolidated', 'net', 'profit', 'year', 'f', '116', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', 'effect', 'acquisition', 'acquisition', 'following', 'effect', 'group', 'assets', 'liabilities', 'recognised', 'values', 'acquisition', '000', 'acquiree', 'net', 'assets', 'acquisition', 'date', 'property', 'plant', 'equipment', 'intangible', 'assets', 'inventories', 'trade', 'receivables', 'cash', 'cash', 'equivalents', 'trade', 'payables', '1', '318', '751', '6', '620', '2', '947', '1', '300', '4', '226', 'net', 'identifiable', 'assets', 'liabilities', '8', '710', 'consideration', 'cash', 'price', 'paid', 'fair', 'value', '50', 'investment', 'fair', 'value', '50', 'non', 'controlling', 'interest', '4', '800', '4', '355', 'total', 'consideration', '9', '155', 'goodwill', 'acquisition', '445', '4', 'revenue', 'group', '2014', '000', 'analysis', 'category', 'sale', 'vehicles', 'sale', 'parts', 'servicing', 'vehicles', '2013', '000', '418', '182', '485', '177', '42', '072', '33', '366', '8', '101', '646', '468', '355', '519', '189', 'f', '117', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', '5', 'operating', 'loss', 'profit', 'group', 'group', 'operating', 'loss', 'profit', 'stated', 'charging', 'crediting', '2014', '000', 'depreciation', 'property', 'plant', 'equipment', 'note', '13', 'amortisation', 'intangible', 'assets', 'note', '11', 'provision', 'impairment', 'trade', 'receivables', 'note', '16', 'loss', 'sale', 'property', 'plant', 'equipment', 'net', 'foreign', 'currency', 'differences', 'cost', 'inventories', 'recognised', 'expense', 'write', 'inventories', 'net', 'realisable', 'value', 'operating', 'lease', 'payments', 'land', 'buildings', 'plant', 'machinery', '2013', '000', '28', '316', '27', '547', '51', '964', '43', '796', '84', '67', '69', '2', '215', '4', '442', '249', '290', '242', '038', '61', '748', '2', '580', '1', '055', '2', '565', '668', 'auditor', 'remuneration', 'audit', 'financial', 'statements', 'audit', 'financial', 'statements', 'subsidiaries', 'pursuant', 'legislation', 'services', 'relating', 'taxation', 'services', 'government', 'grants', '15', '118', '595', '99', '4', '487', '12', '101', '518', '145', '3', '379', 'research', 'development', 'expenditure', 'recognised', 'expense', '10', '100', '7', '775', 'research', 'development', 'expenditure', 'analysed', 'follows', 'total', 'research', 'development', 'expenditure', 'capitalised', 'research', 'development', 'expenditure', 'research', 'development', 'expenditure', 'recognised', 'expense', '106', '193', '78', '922', '96', '093', '71', '147', '10', '100', '7', '775', 'group', 'received', 'grants', 'united', 'kingdom', 'government', 'support', 'incremental', 'development', 'activities', 'safeguard', 'increase', 'employment', 'within', 'group', 'designated', 'areas', 'united', 'kingdom', '6', 'non', 'recurring', 'items', '2014', '000', 'non', 'recurring', 'operating', 'income', 'expenses', 'gain', 'disposal', 'associated', 'company', 'concept', 'vehicle', 'development', 'costs', 'impairment', 'computer', 'hardware', 'software', 'assets', 'professional', 'fees', 'relating', 'capital', 'increase', 'non', 'recurring', 'items', 'tax', 'tax', 'non', 'recurring', 'items', 'non', 'recurring', 'items', 'tax', 'b', 'c', '2013', '000', '1', '706', '5', '977', '5', '200', '3', '481', '6', '663', '4', '271', '15', '344', '4', '271', '15', '344', '30', 'april', '2014', 'group', 'exercised', 'option', 'acquire', 'additional', '10', 'share', 'capital', 'amws', 'limited', 'parent', 'company', 'aston', 'martin', 'works', 'limited', 'consideration', '100', 'increasing', 'interest', 'ordinary', 'share', 'capital', 'company', '40', '50', 'aston', 'martin', 'works', 'limited', 'principal', 'activities', 'servicing', 'restoration', 'sale', 'luxury', 'high', 'performance', 'motor', 'cars', 'brand', 'name', 'aston', 'martin', 'previously', 'aston', 'martin', 'works', 'limited', 'accounted', 'associated', 'company', 'using', 'equity', 'method', 'accounting', 'following', 'increase', 'shareholding', '50', 'became', 'subsidiary', 'fully', 'consolidated', '1', 'may', '2014', 'accordance', 'f', '118', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', 'ifrs', '3', 'accounting', 'purposes', 'transaction', 'treated', 'disposal', '40', 'interest', 'acquisition', 'new', '50', 'interest', 'giving', 'rise', 'gain', 'disposal', 'associated', 'company', '1', '706', '000', 'treated', 'non', 'recurring', 'item', 'recorded', 'administrative', 'expenses', 'condensed', 'consolidated', 'statement', 'comprehensive', 'income', '1', 'may', '2014', 'condensed', 'consolidated', 'statement', 'comprehensive', 'income', 'includes', 'revenues', 'costs', 'aston', 'martin', 'works', 'limited', 'whilst', 'condensed', 'consolidated', 'statement', 'financial', 'position', 'shows', 'assets', 'liabilities', 'b', 'year', 'ended', '31', 'december', '2014', 'group', 'incurred', 'significant', 'one', 'costs', 'relation', 'concept', 'vehicles', 'continues', 'largest', 'investment', 'future', 'models', '102', 'year', 'history', 'year', 'ended', '31', 'december', '2013', 'following', 'review', 'decision', 'not', 'proceed', 'future', 'development', 'previous', 'concept', 'vehicle', 'costs', 'incurred', 'written', 'c', 'following', 'review', 'useful', 'lives', 'computer', 'software', 'hardware', 'assets', 'assets', 'greater', '3', 'years', 'old', '4', 'years', 'old', 'respectively', 'deemed', 'no', 'future', 'useful', 'life', 'fully', 'impaired', 'future', 'depreciation', 'rates', 'adjusted', 'reflect', 'revised', 'useful', 'lives', 'april', '2013', 'new', 'equity', 'issued', 'prestige', 'motor', 'holdings', 'controlled', 'investindustrial', 'v', 'l', 'p', 'professional', 'fees', 'relating', 'transaction', 'shown', 'no', 'tax', 'effect', 'non', 'recurring', 'items', 'either', 'year', '7', 'staff', 'costs', 'directors', 'emoluments', 'group', 'staff', 'costs', 'year', 'ended', '31', 'december', '2014', '000', 'year', 'ended', '31', 'december', '2013', '000', '62', '473', '5', '858', '8', '709', '1', '183', '56', '436', '5', '498', '8', '005', '343', '78', '223', '70', '282', 'wages', 'salaries', 'social', 'security', 'costs', 'expenses', 'related', 'post', 'employment', 'defined', 'benefit', 'plan', 'contributions', 'defined', 'contribution', 'plans', 'year', 'company', 'no', 'employees', 'staff', 'costs', '2013', 'none', 'average', 'monthly', 'number', 'employees', 'years', 'ended', '31', 'december', '2014', '31', 'december', '2013', 'activity', 'production', 'selling', 'distribution', 'administration', 'f', '119', '2014', '2013', '666', '200', '512', '605', '191', '443', '1', '378', '1', '239', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', 'b', 'directors', 'emoluments', 'transactions', 'directors', 'emoluments', 'none', 'directors', 'received', 'amounts', 'long', 'term', 'incentive', 'plans', 'members', 'group', 'pension', 'scheme', 'either', 'year', '2014', '000', '2013', '000', '1', '094', '535', '194', '399', '2014', '000', '2013', '000', '4', '004', '445', '5', '011', '499', '4', '449', '5', '510', 'highest', 'paid', 'director', 'aggregate', 'emoluments', 'compensation', 'key', 'management', 'personnel', 'including', 'directors', 'short', 'term', 'employee', 'benefits', 'post', 'employment', 'benefits', 'compensation', 'loss', 'office', 'payments', 'included', 'amounted', '13', '338', '2013', '198', '152', 'directors', 'benefited', 'qualifying', 'third', 'party', 'indemnity', 'provisions', '8', 'finance', 'income', 'group', 'year', 'ended', '31', 'december', '2014', '000', 'year', 'ended', '31', 'december', '2013', '000', 'bank', 'deposit', 'interest', 'income', 'net', 'interest', 'income', 'net', 'defined', 'benefit', 'liability', 'asset', 'net', 'gain', 'financial', 'instruments', 'recognised', 'fair', 'value', 'profit', 'loss', '2', '037', '287', '1', '950', '60', '224', '5', '220', 'total', 'finance', 'income', '2', '548', '7', '230', '2014', '000', '2013', '000', 'bank', 'loans', 'overdrafts', 'net', 'loss', 'financial', 'instruments', 'recognised', 'fair', 'value', 'profit', 'loss', 'net', 'foreign', 'exchange', 'loss', '42', '159', '34', '097', '7', '101', '6', '758', 'total', 'finance', 'expense', '56', '018', '34', '097', '9', 'finance', 'expense', 'group', 'f', '120', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', '10', 'tax', 'expense', 'continuing', 'operations', 'group', '2014', '000', '2013', '000', 'current', 'tax', 'expense', 'uk', 'corporation', 'tax', 'profits', 'overseas', 'tax', 'prior', 'period', 'movement', '43', '94', '1', '620', '2', '049', '67', '91', 'total', 'current', 'income', 'tax', '1', '596', '1', '864', 'deferred', 'tax', 'expense', 'origination', 'reversal', 'temporary', 'differences', 'effect', 'change', 'tax', 'laws', 'prior', 'period', 'movement', '8', '292', '611', '10', '786', '383', '711', 'total', 'deferred', 'tax', '8', '675', '10', '686', 'share', 'associate', 'tax', 'total', 'tax', 'credit', '7', '079', 'tax', 'relating', 'items', 'charged', 'comprehensive', 'income', 'deferred', 'tax', 'actuarial', 'losses', 'gains', 'defined', 'benefit', 'pension', 'plan', 'adjustment', 'pension', 'scheme', 'assets', 'accordance', 'paragraph', '64', 'ias19', '3', '255', 'tax', 'credit', 'charge', 'items', 'recognised', 'comprehensive', 'income', '3', '255', '95', '8', '727', '891', '891', 'b', 'reconciliation', 'total', 'tax', 'charge', 'tax', 'credit', '2013', 'credit', 'consolidated', 'statement', 'comprehensive', 'income', 'year', 'lower', '2013', 'higher', 'standard', 'rate', 'corporation', 'tax', 'uk', '21', '5', '2013', '23', '25', 'differences', 'reconciled', '2014', '000', 'loss', 'operations', 'taxation', 'loss', 'operations', 'taxation', 'multiplied', 'standard', 'rate', 'corporation', 'tax', 'uk', '21', '5', '2013', '23', '25', '71', '831', '2013', '000', '25', '382', '21', '5', '15', '444', '23', '25', '5', '901', 'difference', 'current', 'tax', 'credit', 'due', 'effects', 'unrecognised', 'tax', 'losses', 'additional', 'tax', 'credit', 'research', 'development', 'expenses', 'not', 'deductible', 'tax', 'purposes', 'adjustments', 'respect', 'prior', 'periods', 'effect', 'change', 'tax', 'laws', '6', '638', '8', '1', '165', '450', '1', '020', '6', '172', '642', '1', '386', '620', '10', '786', '424', 'total', 'tax', 'credit', '7', '079', '8', '727', 'c', 'factors', 'affecting', 'future', 'tax', 'charges', 'reduction', 'uk', 'corporation', 'rate', '23', '21', 'effective', '1', 'april', '2014', 'reduction', '20', 'effective', '1', 'april', '2015', 'substantively', 'enacted', '2', 'july', '2013', 'reduced', 'company', 'current', 'tax', 'charge', 'year', 'ended', '31', 'december', '2014', 'reduce', 'company', 'current', 'tax', 'charge', 'year', 'ended', '31', 'december', '2015', 'f', '121', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', 'deferred', 'tax', 'liability', '31', 'december', '2014', 'calculated', 'based', 'rate', '20', 'substantively', 'enacted', 'balance', 'sheet', 'date', 'deferred', 'tax', 'recognised', 'deferred', 'tax', 'assets', 'liabilities', 'deferred', 'tax', 'assets', 'liabilities', 'attributable', 'following', 'assets', '2014', '000', 'assets', '2013', '000', 'liabilities', '2014', '000', 'liabilities', '2013', '000', 'property', 'plant', 'equipment', 'intangible', 'assets', 'employee', 'benefits', 'provisions', 'losses', '27', '102', '20', '414', '2', '481', '2', '910', '11', '531', '2', '602', '101', '894', '91', '597', '377', '842', 'tax', 'assets', 'liabilities', '44', '024', '23', '016', '101', '894', '92', '816', '44', '024', '23', '016', '57', '870', '69', '800', 'set', 'tax', 'liabilities', 'assets', '44', '024', '23', '016', 'net', 'tax', 'assets', 'liabilities', 'movement', 'deferred', 'tax', '2014', '1', 'january', '2014', '000', 'property', 'plant', 'equipment', 'intangible', 'assets', 'employee', 'benefits', 'provisions', 'losses', 'recognised', 'income', '000', 'recognised', 'equity', '000', '31', 'december', '2014', '000', '20', '414', '91', '597', '377', '842', '2', '602', '6', '688', '10', '297', '397', '3', '752', '8', '929', '3', '255', '27', '102', '101', '894', '2', '481', '2', '910', '11', '531', '69', '800', '8', '675', '3', '255', '57', '870', 'movement', 'deferred', 'tax', '2013', '1', 'january', '2013', '000', 'property', 'plant', 'equipment', 'intangible', 'assets', 'employee', 'benefits', 'provisions', 'losses', 'recognised', 'income', '000', 'recognised', 'equity', '000', '31', 'december', '2013', '000', '16', '464', '97', '875', '686', '1', '130', '3', '950', '6', '278', '172', '1', '972', '2', '602', '891', '20', '414', '91', '597', '377', '842', '2', '602', '79', '595', '10', '686', '891', '69', '800', 'deferred', 'tax', 'assets', 'not', 'recognised', 'respect', 'following', 'items', '2014', '000', 'tax', 'losses', '2013', '000', '23', '181', '17', '095', 'deferred', 'tax', 'assets', 'not', 'recognised', 'not', 'probable', 'future', 'taxable', 'profit', 'available', 'group', 'utilise', 'benefits', 'therefrom', 'deferred', 'tax', 'asset', 'recognised', 'respect', 'losses', 'trading', 'companies', 'future', 'trading', 'profits', 'foreseen', 'f', '122', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', '11', 'intangible', 'assets', 'group', 'dealer', 'network', '000', 'brands', '000', 'technology', '000', '000', 'cost', 'balance', '1', 'january', '2013', 'additions', '242', '600', '80', '100', '16', '785', '15', '400', '234', '621', '75', '372', '84', '131', '656', '852', '92', '157', 'balance', '31', 'december', '2013', '242', '600', '96', '885', '15', '400', '309', '993', '84', '131', '749', '009', 'balance', '1', 'january', '2014', 'additions', 'transfer', 'note', '14', '242', '600', '96', '885', '4', '417', '15', '400', '309', '993', '101', '214', '84', '131', '749', '009', '445', '106', '076', '860', '860', 'balance', '31', 'december', '2014', '242', '600', '101', '302', '15', '400', '411', '207', '85', '436', '855', '945', 'amortisation', 'balance', '1', 'january', '2013', 'amortisation', 'year', '44', '723', '8', '010', '4', '299', '770', 'balance', '31', 'december', '2013', '52', '733', '5', '069', '120', '265', '178', '067', 'balance', '1', 'january', '2014', 'amortisation', 'year', 'transfer', 'note', '14', '52', '733', '8', '010', '5', '069', '120', '265', '770', '43', '093', '178', '067', '91', '51', '964', '109', '109', 'balance', '31', 'december', '2014', '60', '743', '5', '839', '163', '358', '200', '230', '140', 'carrying', 'amounts', '1', 'january', '2013', '242', '600', '35', '377', '11', '101', '149', '372', '84', '131', '522', '581', '31', 'december', '2013', '242', '600', '44', '152', '10', '331', '189', '728', '84', '131', '570', '942', '1', 'january', '2014', '242', '600', '44', '152', '10', '331', '189', '728', '84', '131', '570', '942', '31', 'december', '2014', '242', '600', '40', '559', '9', '561', '247', '849', '85', '236', '625', '805', '85', '249', '35', '016', 'goodwill', '000', 'total', '000', '134', '271', '43', '796', 'brand', 'identified', 'valued', 'acquisition', 'aston', 'martin', 'lagonda', 'group', 'limited', 'identified', 'indefinite', 'life', 'due', 'long', 'history', 'wide', 'recognition', 'brand', 'meant', 'not', 'possible', 'identify', 'future', 'lifetime', 'intangible', 'assets', '247', '849', '000', '2013', '189', '728', '000', 'include', '237', '700', '000', '2013', '177', '716', '000', 'relating', 'capitalised', 'development', 'costs', '2', '762', '000', 'relating', 'chinese', 'distribution', 'rights', '2013', '3', '989', '000', '7', '026', '000', 'relating', 'software', 'development', '2013', '7', '511', '000', 'goodwill', '84', '131', '000', '2013', '84', '131', '000', 'arose', 'acquisition', 'aston', 'martin', 'lagonda', 'group', 'limited', 'aston', 'martin', 'holdings', 'uk', 'limited', 'via', 'aston', 'martin', 'investments', 'limited', '2007', 'addition', '445', '000', 'year', 'ended', '31', 'december', '2014', 'arose', 'acquisition', 'amws', 'limited', 'parent', 'company', 'aston', 'martin', 'works', 'limited', 'see', 'note', '14', 'details', 'transfer', 'net', 'book', 'value', '751', '000', 'relates', 'acquisition', 'aston', 'martin', 'works', 'limited', 'see', 'note', '14', 'amortisation', 'year', 'ended', '31', 'december', '2014', 'relates', 'amortisation', 'goodwill', 'acquisition', 'amws', 'limited', '59', '000', 'amortisation', 'goodwill', 'within', 'aston', 'martin', 'works', 'limited', '32', '000', 'no', 'intangible', 'assets', 'company', 'f', '123', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', '12', 'impairment', 'testing', 'goodwill', 'intangible', 'fixed', 'assets', 'indefinite', 'useful', 'lives', 'group', 'goodwill', 'brands', 'acquired', 'business', 'combinations', 'allocated', 'impairment', 'testing', 'purposes', 'one', 'cash', 'generating', 'unit', 'aston', 'martin', 'lagonda', 'group', 'limited', 'business', 'represents', 'lowest', 'level', 'within', 'group', 'goodwill', 'brands', 'monitored', 'internal', 'purposes', 'group', 'tests', 'carrying', 'value', 'goodwill', 'brands', 'cash', 'generating', 'unit', 'level', 'impairment', 'annually', 'frequently', 'indications', 'goodwill', 'brands', 'might', 'impaired', 'year', 'end', 'reporting', 'date', 'review', 'undertaken', 'value', 'use', 'basis', 'assessing', 'whether', 'carrying', 'values', 'goodwill', 'brands', 'supported', 'net', 'present', 'value', 'future', 'cash', 'flows', 'derived', 'assets', 'key', 'assumptions', 'used', 'value', 'use', 'calculations', 'calculation', 'value', 'use', 'cash', 'generating', 'unit', 'sensitive', 'following', 'assumptions', 'cash', 'flows', 'projected', 'based', 'actual', 'operating', 'results', 'six', 'year', 'business', 'plan', 'beyond', 'cash', 'flows', 'extrapolated', 'using', 'constant', 'growth', 'rate', '2', 'per', 'annum', 'key', 'assumptions', 'revenue', 'gross', 'margin', 'fixed', 'costs', 'within', 'forecasts', 'based', 'past', 'experience', 'current', 'business', 'strategy', 'discount', 'rates', 'calculated', 'using', 'weighted', 'average', 'cost', 'capital', 'approach', 'reflect', 'individual', 'nature', 'specific', 'risks', 'relating', 'business', 'market', 'operates', 'pre', 'tax', 'discount', 'rate', 'used', '12', '0', 'exchange', 'rate', '1', '56', 'used', 'forecast', 'sensitivity', 'analysis', 'pre', 'tax', 'discount', 'rate', 'would', 'need', 'increase', '14', '5', 'order', 'assets', 'become', 'impaired', 'rate', 'growth', '2', 'per', 'annum', 'beyond', 'six', 'year', 'plan', 'would', 'need', 'decline', '3', '1', 'order', 'assets', 'become', 'impaired', 'f', '124', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', '13', 'property', 'plant', 'equipment', 'group', 'freehold', 'land', 'buildings', 'plant', 'machinery', 'fixtures', 'fittings', 'tooling', 'motor', 'vehicles', '000', '000', '000', 'total', '000', 'cost', 'balance', '1', 'january', '2013', 'additions', 'disposals', 'effect', 'movements', 'exchange', 'rates', '62', '962', '74', '82', '277', '793', '13', '049', '70', '8', '840', '341', '595', '13', '123', '23', '93', '2', '76', 'balance', '31', 'december', '2013', '63', '118', '290', '764', '819', '354', '701', 'balance', '1', 'january', '2014', 'additions', 'transfer', 'note', '14', 'disposals', 'effect', 'movements', 'exchange', 'rates', '63', '118', '5', '158', '88', '219', '290', '764', '15', '618', '1', '395', '435', '49', '819', '354', '701', '76', '20', '852', '1', '483', '435', '7', '275', 'balance', '31', 'december', '2014', '68', '145', '307', '293', '888', '376', '326', 'depreciation', 'balance', '1', 'january', '2013', 'charge', 'year', 'disposals', 'effect', 'movements', 'exchange', 'rates', '11', '527', '2', '153', '11', '134', '793', '25', '374', '29', '52', '146', '372', '20', '27', '547', '10', '10', '1', '17', 'balance', '31', 'december', '2013', '13', '691', '160', '138', '63', '173', '892', 'balance', '1', 'january', '2014', 'charge', 'year', 'transfer', 'note', '14', 'disposals', 'effect', 'movements', 'exchange', 'rates', '13', '691', '2', '231', '2', '45', '160', '138', '26', '069', '163', '350', '26', '63', '173', '892', '16', '28', '316', '165', '350', '5', '76', 'balance', '31', 'december', '2014', '15', '879', '185', '994', '74', '201', '947', 'carrying', 'amounts', '1', 'january', '2013', '51', '435', '143', '000', '788', '195', '223', '31', 'december', '2013', '49', '427', '130', '626', '756', '180', '809', '1', 'january', '2014', '49', '427', '130', '626', '756', '180', '809', '31', 'december', '2014', '52', '266', '121', '299', '814', '174', '379', 'detailed', 'note', '19', 'property', 'plant', 'equipment', 'provides', 'security', 'fixed', 'floating', 'charge', 'favour', 'holders', '9', '25', 'senior', 'secured', 'notes', 'assets', 'course', 'construction', 'cost', '13', '171', '000', '2013', '74', '000', 'included', 'within', 'land', 'buildings', 'assets', 'course', 'construction', 'cost', '15', '115', '000', '2013', '1', '548', '000', 'included', 'within', 'plant', 'machinery', 'capital', 'expenditure', 'contracts', 'value', '26', '135', '000', 'placed', 'not', 'provided', '31', 'december', '2014', '2013', '6', '064', '000', 'no', 'property', 'plant', 'equipment', 'company', '2013', 'nil', 'f', '125', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', '14', 'investments', 'investments', 'subsidiary', 'undertakings', 'company', 'proportion', 'voting', 'rights', 'holding', 'shares', 'held', 'subsidiary', 'undertakings', 'nature', 'business', 'aston', 'martin', 'capital', 'limited', 'ordinary', '100', 'aston', 'martin', 'investments', 'limited', 'aston', 'martin', 'lagonda', 'group', 'limited', 'aston', 'martin', 'lagonda', 'north', 'america', 'incorporated', 'lagonda', 'properties', 'limited', 'aston', 'martin', 'lagonda', 'pension', 'trustees', 'limited', 'ordinary', '100', 'financing', 'company', 'holding', 'senior', 'secured', 'notes', 'holding', 'company', 'ordinary', '100', 'holding', 'company', 'ordinary', 'ordinary', '100', '100', 'ordinary', 'ordinary', '100', '100', 'aston', 'martin', 'lagonda', 'europe', 'gmbh', 'aml', 'overseas', 'services', 'limited', 'ordinary', '100', 'ordinary', '100', 'aston', 'martin', 'italy', 'r', 'l', 'ordinary', '100', 'aml', 'italy', 'r', 'l', 'aston', 'martin', 'lagonda', 'china', 'automobile', 'distribution', 'co', 'ltd', 'nurburgring', 'racing', 'limited', 'amws', 'limited', 'aston', 'martin', 'works', 'limited', 'ordinary', '100', 'luxury', 'sports', 'car', 'distributor', 'dormant', 'company', 'trustee', 'aston', 'martin', 'lagonda', 'limited', 'pension', 'scheme', 'manufacture', 'sale', 'luxury', 'sports', 'cars', 'sale', 'parts', 'provision', 'engineering', 'sales', 'marketing', 'services', 'provision', 'management', 'services', 'aston', 'martin', 'lagonda', 'limited', 'sale', 'servicing', 'luxury', 'sports', 'cars', 'sale', 'parts', 'dormant', 'company', 'ordinary', 'ordinary', 'ordinary', 'ordinary', '100', '100', '50', '50', 'aston', 'martin', 'lagonda', 'limited', 'luxury', 'sports', 'car', 'distributor', 'dormant', 'company', 'holding', 'company', 'sale', 'servicing', 'restoration', 'aston', 'martin', 'cars', 'subsidiaries', 'incorporated', 'england', 'wales', 'unless', 'otherwise', 'stated', 'incorporated', 'jersey', 'incorporated', 'united', 'states', 'america', 'incorporated', 'germany', 'incorporated', 'italy', 'incorporated', 'people', 'republic', 'china', 'held', 'directly', 'aston', 'martin', 'holdings', 'uk', 'limited', 'held', 'indirectly', 'aston', 'martin', 'holdings', 'uk', 'limited', 'shares', 'subsidiary', 'undertakings', '000', 'cost', 'carrying', 'value', '1', 'january', '2014', 'additions', '667', '982', '31', 'december', '2014', '667', '982', 'f', '126', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', '30', 'april', '2014', 'group', 'exercised', 'option', 'acquire', 'additional', '10', 'share', 'capital', 'amws', 'limited', 'parent', 'company', 'aston', 'martin', 'works', 'limited', 'consideration', '100', 'increasing', 'interest', 'ordinary', 'share', 'capital', 'company', '40', '50', 'previously', 'aston', 'martin', 'works', 'limited', 'accounted', 'associated', 'company', 'using', 'equity', 'method', 'accounting', 'following', 'increase', 'shareholding', '50', 'became', 'subsidiary', 'fully', 'consolidated', '1', 'may', '2014', '1', 'may', '2014', 'condensed', 'consolidated', 'statement', 'comprehensive', 'income', 'includes', 'revenues', 'costs', 'aston', 'martin', 'works', 'limited', 'whilst', 'condensed', 'consolidated', 'statement', 'financial', 'position', 'shows', 'assets', 'liabilities', 'investments', 'associates', 'investment', 'associated', 'undertakings', '000', 'cost', 'carrying', 'value', '1', 'january', '2014', 'share', 'result', 'disposal', '40', 'interest', 'amws', 'limited', 'see', 'investments', 'subsidiary', 'undertakings', 'page', '18', '31', 'december', '2014', '1', '962', '32', '1', '994', 'company', '40', 'share', 'post', 'acquisition', 'result', 'amws', 'limited', 'date', 'disposal', 'immediate', 'acquisition', 'subsidiary', '30', 'april', '2014', 'detailed', 'period', '30', 'april', '2014', '000', 'year', 'ended', '31', 'december', '2013', '000', 'turnover', '2', '783', '9', '097', 'profit', 'tax', 'taxation', 'profit', 'tax', '32', '32', '362', '95', '267', 'fixed', 'assets', '816', 'current', 'assets', '3', '884', 'liabilities', 'due', 'within', 'one', 'year', '1', '233', '15', 'inventories', 'group', 'service', 'parts', 'spares', 'production', 'stock', 'work', 'progress', 'finished', 'cars', 'parts', 'resale', '2014', '000', '2013', '000', '31', '758', '12', '465', '54', '204', '30', '251', '10', '836', '28', '878', '98', '427', '69', '965', 'finished', 'cars', 'parts', 'resale', 'includes', 'group', 'owned', 'service', 'vehicles', 'net', 'realisable', 'value', '14', '867', '000', '31', 'december', '2013', '16', '593', '000', 'vehicles', 'used', 'employees', 'group', 'not', 'retained', 'group', 'periods', 'excess', 'one', 'year', 'no', 'inventories', 'company', '2013', 'nil', 'f', '127', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', '16', 'trade', 'receivables', 'group', 'company', 'amounts', 'included', 'current', 'assets', 'trade', 'receivables', 'owed', 'group', 'undertakings', 'see', 'note', '28', 'owed', 'related', 'parties', 'see', 'note', '28', 'receivables', 'including', 'taxation', 'prepayments', 'group', '2014', '000', 'group', '2013', '000', 'company', '2014', '000', 'company', '2013', '000', '28', '247', '17', '513', '5', '778', '26', '846', '940', '10', '599', '1', '965', '94', '968', '255', '16', '774', '435', '51', '538', '40', '350', '95', '223', '17', '209', 'trade', 'receivables', 'receivables', 'non', 'interest', 'bearing', 'generally', 'terms', '10', '30', 'days', 'amounts', 'financed', 'trade', 'finance', 'facility', 'standard', 'chartered', 'bank', 'plc', 'see', 'terms', '30', '60', 'days', 'due', 'short', 'maturities', 'fair', 'value', 'trade', 'receivables', 'approximates', 'book', 'value', 'majority', 'group', 'receivables', 'derived', 'sales', 'franchised', 'dealers', 'appointed', 'group', 'receivables', 'supported', 'credit', 'risk', 'insurance', 'credit', 'limit', 'franchised', 'dealer', 'set', 'insurance', 'company', 'consultation', 'group', 'credit', 'risk', 'discussed', 'note', '19', 'financed', 'vehicle', 'sales', 'made', 'directly', 'third', 'party', 'aston', 'martin', 'franchised', 'dealers', 'large', 'proportion', 'financed', '100', '000', '000', 'trade', 'finance', 'facility', 'standard', 'chartered', 'bank', 'plc', 'associated', 'credit', 'insurance', 'policy', 'group', 'entered', 'financing', 'agreement', 'standard', 'chartered', 'bank', 'plc', 'whereby', 'standard', 'chartered', 'bank', 'plc', 'advance', 'group', 'sales', 'value', 'vehicles', 'despatched', 'upon', 'receipt', 'transportation', 'documentation', 'substantially', 'risks', 'associated', 'receivables', 'reside', 'standard', 'chartered', 'bank', 'plc', 'therefore', 'financing', 'arrangement', 'treated', 'balance', 'sheet', 'utilisation', 'facility', '31', 'december', '2014', '89', '988', '000', '2013', '69', '318', '000', 'carrying', 'amount', 'trade', 'receivables', 'excluding', 'prepayments', 'denominated', 'following', 'currencies', 'sterling', 'chinese', 'renminbi', 'euro', 'us', 'dollar', 'f', '128', 'group', '2014', '000', 'group', '2013', '000', 'company', '2014', '000', 'company', '2013', '000', '22', '306', '9', '778', '5', '792', '7', '490', '394', '15', '770', '1', '319', '6', '179', '12', '766', '2', '351', '94', '968', '16', '774', '45', '760', '38', '385', '94', '968', '16', '774', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', 'provision', 'impairment', 'receivables', 'trade', 'receivables', 'value', '331', '000', 'impaired', 'group', '31', 'december', '2014', '31', 'december', '2013', '356', '000', 'management', 'review', 'trade', 'receivables', 'individual', 'account', 'basis', 'make', 'provision', 'recoverability', 'doubtful', 'group', '2014', '000', 'group', '2013', '000', '3', '977', '3', '902', 'company', '2014', '000', 'company', '2013', '000', '1', 'january', 'charge', 'year', 'utilised', 'transfer', 'acquisition', 'amws', 'limited', 'note', '14', 'effect', 'movements', 'exchange', 'rates', '356', '84', '50', '3', '62', '281', '31', 'december', '331', '356', '31', 'december', '2014', 'trade', 'receivables', '6', '268', '000', 'overdue', 'not', 'impaired', '31', 'december', '2013', '8', '314', '000', 'ageing', 'analysis', 'trade', 'receivables', 'follows', 'group', '2014', '000', 'group', '2013', '000', 'company', '2014', '000', 'company', '2013', '000', '3', 'months', 'overdue', '3', '6', 'months', 'overdue', '6', 'months', 'overdue', '2', '649', '114', '3', '505', '5', '596', '329', '2', '389', 'total', '6', '268', '8', '314', 'group', '2014', '000', 'group', '2013', '000', 'company', '2014', '000', 'company', '2013', '000', '89', '250', '74', '653', '1', '1', 'no', 'impairments', 'company', 'either', 'year', '17', 'cash', 'cash', 'equivalents', 'group', 'company', 'cash', 'bank', 'hand', 'cash', 'bank', 'earns', 'interest', 'floating', 'rates', 'based', 'daily', 'bank', 'deposit', 'rates', 'book', 'value', 'cash', 'cash', 'equivalents', 'approximates', 'fair', 'value', 'cash', 'held', 'following', 'currencies', 'held', 'currencies', 'sterling', 'converted', 'sterling', 'year', 'end', 'exchange', 'rates', 'sterling', 'chinese', 'renminbi', 'us', 'dollar', 'f', '129', 'group', '2014', '000', 'group', '2013', '000', 'company', '2014', '000', 'company', '2013', '000', '15', '619', '28', '298', '27', '642', '17', '691', '28', '911', '24', '064', '9', '547', '12', '131', '1', '1', '89', '250', '74', '653', '1', '1', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', '18', 'trade', 'payables', 'current', 'trade', 'payables', 'group', 'company', 'trade', 'payables', 'due', 'group', 'undertakings', 'see', 'note', '28', 'due', 'related', 'parties', 'see', 'note', '28', 'accruals', 'payables', 'group', '2014', '000', 'group', '2013', '000', 'company', '2014', '000', 'company', '2013', '000', '61', '004', '269', '98', '775', '50', '248', '1', '953', '78', '365', '206', '317', '980', '234', '433', '15', '160', '048', '130', '566', '207', '297', '234', '448', 'trade', 'payables', 'non', 'interest', 'bearing', 'group', 'policy', 'pay', 'within', 'stated', 'terms', 'vary', '14', '60', 'days', 'trade', 'payables', 'held', 'amortised', 'cost', 'amortised', 'cash', 'flows', 'expected', 'mature', 'within', '12', 'months', 'year', 'end', '19', 'financial', 'instruments', 'group', 'company', 'group', 'principal', 'financial', 'instruments', 'comprise', 'senior', 'secured', 'notes', 'senior', 'subordinated', 'pik', 'notes', 'revolving', 'credit', 'facility', 'inventory', 'financing', 'facilities', 'cash', 'forward', 'currency', 'contracts', 'group', 'also', 'trade', 'payables', 'trade', 'receivables', 'arise', 'directly', 'operations', 'short', 'term', 'assets', 'liabilities', 'included', 'currency', 'risk', 'disclosure', 'main', 'risks', 'arising', 'group', 'financial', 'instruments', 'credit', 'risk', 'interest', 'rate', 'risk', 'currency', 'risk', 'liquidity', 'risk', 'shown', 'board', 'directors', 'overall', 'responsibility', 'establishment', 'oversight', 'group', 'risk', 'management', 'framework', 'group', 'risk', 'policies', 'established', 'identify', 'analyse', 'risks', 'faced', 'group', 'set', 'appropriate', 'risk', 'limits', 'controls', 'monitor', 'risk', 'adherence', 'limits', 'board', 'directors', 'oversees', 'management', 'monitor', 'compliance', 'group', 'risk', 'management', 'policies', 'procedures', 'reviews', 'adequacy', 'risk', 'management', 'framework', 'relation', 'risks', 'faced', 'group', 'credit', 'risk', 'group', 'sells', 'vehicles', 'dedicated', 'dealer', 'network', 'dealers', 'outside', 'north', 'america', 'required', 'pay', 'vehicles', 'advance', 'despatch', 'use', 'wholesale', 'financing', 'scheme', 'see', 'liquidity', 'risk', 'dealers', 'within', 'north', 'america', 'allowed', '10', 'day', 'credit', 'terms', 'date', 'invoice', 'use', 'wholesale', 'financing', 'scheme', 'vehicle', 'sales', 'wholesale', 'financing', 'scheme', 'covered', 'credit', 'risk', 'insurance', 'exceptional', 'circumstances', 'thorough', 'consideration', 'credit', 'history', 'individual', 'dealer', 'group', 'may', 'sell', 'vehicles', 'dealer', 'outside', 'credit', 'risk', 'insurance', 'policy', 'deferred', 'payment', 'terms', 'parts', 'sales', 'represent', 'smaller', 'element', 'total', 'revenue', 'made', 'dealers', '30', 'day', 'credit', 'terms', 'service', 'receivables', 'due', 'payment', 'collection', 'vehicle', 'interest', 'rate', 'risk', 'group', 'uses', 'wholesale', 'financing', 'scheme', 'fund', 'certain', 'vehicle', 'receivables', 'also', 'places', 'surplus', 'cash', 'funds', 'deposit', 'arrangements', 'attract', 'interest', 'rate', 'varies', 'depending', 'libor', 'group', 'entered', 'number', 'arrangements', 'finance', 'group', 'inventory', 'order', 'pipeline', 'aston', 'martin', 'lagonda', 'limited', 'aston', 'martin', 'lagonda', 'china', 'automobile', 'distribution', 'co', 'ltd', 'total', 'borrowings', 'facilities', '31', 'december', '2014', '19', '8m', '2013', '13', '9m', 'interest', 'rate', 'charged', 'facilities', 'determined', 'f', '130', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', 'borrowings', 'made', 'borrowings', 'made', 'periods', 'not', 'excess', 'six', 'months', 'interest', 'rates', 'charged', 'inventory', 'financing', 'based', 'libor', 'interest', 'rates', 'charged', 'order', 'pipeline', 'financing', 'rates', 'charged', 'chinese', 'banks', 'borrowings', 'following', 'table', 'analyses', 'borrowings', 'group', '2014', '000', 'group', '2013', '000', 'company', '2014', '000', 'company', '2013', '000', 'current', 'bank', 'loans', 'overdrafts', '19', '808', '13', '854', 'non', 'current', 'senior', 'secured', 'notes', 'senior', 'subordinated', 'pik', 'notes', '298', '403', '114', '195', '296', '765', '114', '195', 'total', 'non', 'current', 'borrowings', '412', '598', '296', '765', '114', '195', 'total', 'borrowings', '432', '406', '310', '619', '114', '195', 'june', '2011', 'group', 'issued', '304', '000', '000', '9', '25', 'senior', 'secured', 'notes', 'repayable', 'july', '2018', 'senior', 'secured', 'notes', 'quoted', 'luxembourg', 'stock', 'exchange', 'interest', 'rate', 'payable', 'senior', 'secured', 'notes', 'fixed', '9', '25', 'per', 'annum', 'repayment', 'date', 'described', 'accounting', 'policies', 'borrowings', 'initially', 'recognised', 'fair', 'value', 'less', 'attributable', 'transaction', 'costs', 'subject', 'initial', 'recognition', 'borrowings', 'stated', 'amortised', 'cost', 'difference', 'cost', 'redemption', 'value', 'recognised', 'statement', 'comprehensive', 'income', 'period', 'borrowings', 'effective', 'interest', 'basis', 'senior', 'secured', 'notes', 'secured', 'fixed', 'floating', 'charges', 'certain', 'assets', 'group', 'attached', 'senior', 'secured', 'notes', '30', '000', '000', 'revolving', 'credit', 'facility', 'undrawn', '31', 'december', '2014', '31', 'december', '2013', 'group', 'entered', 'number', 'arrangements', 'finance', 'group', 'inventory', 'order', 'pipeline', 'aston', 'martin', 'lagonda', 'limited', 'aston', 'martin', 'lagonda', 'china', 'automobile', 'distribution', 'co', 'ltd', 'total', 'borrowings', 'facilities', '31', 'december', '2014', '19', '808', '000', 'year', 'ended', '31', 'december', '2013', '13', '854', '000', 'march', '2014', 'group', 'issued', '165', '000', '000', '99', '620', '000', 'senior', 'subordinated', 'pik', 'notes', 'repayable', 'july', '2018', 'interest', 'rate', 'payable', 'senior', 'secured', 'pik', 'notes', '10', '25', 'per', 'annum', 'interest', 'charged', 'semi', 'annually', 'arrears', 'january', '15th', 'july', '15th', 'year', 'shorter', 'interest', 'period', '15', 'july', '2014', 'interest', 'charged', 'increases', 'principal', 'amount', 'senior', 'subordinated', 'pik', 'notes', 'payable', 'repayment', 'senior', 'subordinated', 'pik', 'notes', 'july', '2018', 'borrowing', 'costs', '585', '000', '2013', 'nil', 'capitalised', 'year', 'ended', '31', 'december', '2014', 'interest', 'rate', 'risks', 'sensitivity', 'june', '2011', 'group', 'issued', '304', '000', '000', '9', '25', 'senior', 'secured', 'notes', 'repayable', 'july', '2018', 'senior', 'secured', 'notes', 'attract', 'fixed', 'rate', 'interest', 'no', 'interest', 'rate', 'risk', 'attached', 'attached', 'senior', 'secured', 'notes', '30', '000', '000', 'revolving', 'credit', 'facility', 'undrawn', '31', 'december', '2014', '31', 'december', '2013', 'group', 'entered', 'number', 'arrangements', 'finance', 'group', 'inventory', 'order', 'pipeline', 'aston', 'martin', 'lagonda', 'limited', 'aston', 'martin', 'lagonda', 'china', 'automobile', 'distribution', 'co', 'ltd', 'total', 'borrowings', 'facilities', '31', 'december', '2014', '19', '808', '000', '2013', '13', '854', '000', 'interest', 'rate', 'charged', 'facilities', 'determined', 'borrowings', 'made', 'borrowings', 'made', 'periods', 'not', 'excess', 'six', 'months', 'f', '131', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', 'march', '2014', 'group', 'issued', '165', '000', '000', '99', '620', '000', 'senior', 'subordinated', 'pik', 'notes', 'repayable', 'july', '2018', 'interest', 'rate', 'payable', 'senior', 'secured', 'pik', 'notes', 'fixed', '10', '25', 'per', 'annum', '304', '000', '000', '9', '25', 'senior', 'secured', 'notes', 'fixed', 'interest', 'rate', '9', '25', 'per', 'annum', 'senior', 'subordinated', 'pik', 'notes', 'fixed', 'interest', 'rate', '10', '25', 'per', 'annum', 'interest', 'rate', 'payable', 'revolving', 'credit', 'facility', 'determined', 'time', 'drawing', 'facility', 'therefore', 'group', 'no', 'sensitivity', 'increase', 'interest', 'rates', 'based', 'borrowings', 'either', 'year', 'end', 'foreign', 'currency', 'risk', 'management', 'addition', 'functional', 'currency', 'sterling', 'group', 'buys', 'sells', 'currencies', 'group', 'manages', 'movement', 'funds', 'via', 'individual', 'bank', 'accounts', 'relating', 'currency', 'thereby', 'reducing', 'exposure', 'exchange', 'rate', 'fluctuations', 'group', 'may', 'time', 'time', 'use', 'derivative', 'financial', 'instruments', 'manage', 'exchange', 'rate', 'risk', 'significant', 'exposure', 'foreign', 'currency', 'year', 'ends', 'group', 'derivative', 'instruments', 'several', 'currencies', 'form', 'forward', 'exchange', 'contracts', 'foreign', 'currency', 'exposure', 'group', 'sterling', 'equivalents', 'financial', 'assets', 'liabilities', 'denominated', 'foreign', 'currencies', '31', 'december', '2014', '31', 'december', '2013', 'euros', '000', 'chinese', 'renminbi', '000', 'us', 'dollars', '000', '000', 'financial', 'assets', 'trade', 'receivables', 'foreign', 'exchange', 'contracts', 'cash', 'balances', '5', '792', '13', '902', '9', '778', '28', '298', '7', '490', '233', '27', '642', '394', '294', '3', '789', '19', '694', '38', '076', '35', '365', '4', '477', 'financial', 'liabilities', 'trade', 'payables', 'foreign', 'exchange', 'contracts', '16', '728', '14', '371', '4', '982', '5', '907', '1', '112', '16', '728', '14', '371', '10', '889', '1', '112', 'net', 'balance', 'sheet', 'exposure', '2', '966', '23', '705', '24', '476', '3', '365', 'euros', '000', 'chinese', 'renminbi', '000', 'us', 'dollars', '000', '000', '6', '179', '6', '571', '1', '319', '24', '064', '12', '766', '4', '140', '9', '547', '2', '351', '510', '5', '560', '12', '750', '25', '383', '26', '453', '8', '421', '20', '370', '7', '009', '4', '815', '1', '603', '298', '20', '370', '7', '009', '4', '815', '1', '901', '7', '620', '18', '374', '21', '638', '6', '520', '31', 'december', '2014', '31', 'december', '2013', 'financial', 'assets', 'trade', 'receivables', 'foreign', 'exchange', 'contracts', 'cash', 'balances', 'financial', 'liabilities', 'trade', 'payables', 'foreign', 'exchange', 'contracts', 'net', 'balance', 'sheet', 'exposure', 'f', '132', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', 'following', 'significant', 'exchange', 'rates', 'applied', 'euro', 'chinese', 'renminbi', 'us', 'dollar', 'average', 'rate', '2014', 'average', 'rate', '2013', 'reporting', 'date', 'spot', 'rate', '2014', 'reporting', 'date', 'spot', 'rate', '2013', '1', '2360', '10', '2373', '1', '6637', '1', '1947', '9', '6945', '1', '5700', '1', '2886', '9', '6736', '1', '5593', '1', '2020', '10', '0268', '1', '6563', 'currency', 'risk', 'sensitivity', 'following', 'table', 'demonstrates', 'sensitivity', 'reasonably', 'possible', 'change', 'us', 'dollar', 'exchange', 'rates', 'variables', 'held', 'constant', 'group', 'profit', 'tax', 'due', 'changes', 'fair', 'value', 'monetary', 'assets', 'liabilities', 'increase', 'decrease', 'usd', 'rate', 'us', 'dollar', 'five', 'per', 'cent', 'effect', 'profit', 'tax', '2014', '000', '4', '356', 'effect', 'profit', 'tax', '2013', '000', '4', '803', 'company', 'trades', 'almost', 'entirely', 'sterling', 'therefore', 'no', 'significant', 'foreign', 'currency', 'risk', 'liquidity', 'risk', 'group', 'seeks', 'manage', 'liquidity', 'risk', 'ensure', 'sufficient', 'liquidity', 'available', 'meet', 'foreseeable', 'needs', 'invest', 'cash', 'assets', 'safely', 'profitably', 'group', 'uses', 'wholesale', 'financing', 'scheme', 'finance', 'certain', 'vehicle', 'sales', 'despatch', 'vehicle', '31', 'december', '2014', '89', '988', '000', '2013', '69', '318', '000', 'received', 'sales', 'invoices', 'wholesale', 'finance', 'scheme', 'credit', 'insurance', 'supporting', 'facility', 'renewed', 'two', 'years', 'august', '2016', 'june', '2011', 'group', 'issued', '304', '000', '000', '9', '25', 'senior', 'secured', 'notes', 'repayable', 'july', '2018', 'group', 'also', 'access', '30', '000', '000', 'revolving', 'credit', 'facility', '2016', 'undrawn', '31', 'december', '2014', '31', 'december', '2013', 'group', 'also', 'facilities', 'finance', 'certain', 'inventories', 'order', 'pipeline', 'aston', 'martin', 'lagonda', 'limited', 'aston', 'martin', 'lagonda', 'china', 'automobile', 'distribution', 'co', 'ltd', 'total', 'size', 'facilities', '31', 'december', '2014', '23', '058', '000', '2013', '29', '023', '000', 'utilisation', 'facilities', '31', 'december', '2014', '19', '808', '000', '2013', '13', '854', '000', 'march', '2014', 'company', 'issued', 'senior', 'subordinated', 'pik', 'notes', 'value', '165', '000', '000', 'us', 'dollars', '99', '620', '000', 'due', 'repayment', 'july', '2018', '22', 'april', '2015', 'company', 'accepted', 'binding', 'subscriptions', '200', 'million', 'preference', 'shares', 'first', 'tranche', '100', 'million', 'received', '27', 'april', '2015', 'second', 'tranche', '100', 'million', 'may', 'drawn', 'time', 'following', '12', 'months', 'subscriptions', 'also', 'included', 'warrants', 'pro', 'rata', 'allocation', 'p', 'shares', 'non', 'voting', 'ordinary', 'shares', 'corresponding', '4', 'current', 'fully', 'diluted', 'share', 'capital', 'company', 'f', '133', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', 'table', 'summarises', 'maturity', 'profile', 'group', 'financial', 'liabilities', '31', 'december', '2014', 'based', 'contractual', 'undiscounted', 'payments', 'non', 'derivative', 'financial', 'liabilities', 'bank', 'loans', 'overdrafts', 'senior', 'secured', 'notes', 'senior', 'subordinated', 'pik', 'notes', 'trade', 'payables', 'demand', '000', 'less', '3', 'months', '000', '3', '12', 'months', '000', '1', '5', 'years', '000', '5', 'years', '000', 'contractual', 'cash', 'flows', 'total', '000', '14', '823', '14', '060', '5', '310', '14', '060', '388', '360', '20', '133', '416', '480', '161', '879', '161', '879', '269', '159', '779', '160', '048', '701', '2', '387', '2', '819', '5', '907', '269', '189', '363', '21', '757', '553', '058', '764', '447', 'derivative', 'financial', 'liabilities', 'forward', 'exchange', 'contracts', 'included', 'table', 'respect', 'group', 'interest', 'bearing', 'loans', 'borrowings', 'carrying', 'value', '432', '406', '000', 'table', 'summarises', 'maturity', 'profile', 'group', 'financial', 'liabilities', '31', 'december', '2013', 'based', 'contractual', 'undiscounted', 'payments', 'demand', '000', 'less', '3', 'months', '000', '3', '12', 'months', '000', '1', '5', 'years', '000', '5', 'years', '000', 'contractual', 'cash', 'flows', 'total', '000', 'non', 'derivative', 'financial', 'liabilities', 'bank', 'loans', 'overdrafts', 'senior', 'secured', 'notes', '8', '952', '14', '060', '5', '126', '14', '060', '416', '480', '14', '078', '444', '600', 'trade', 'payables', '1', '953', '128', '613', '130', '566', '65', '188', '45', '298', '1', '953', '151', '690', '19', '374', '416', '525', '589', '542', 'derivative', 'financial', 'liabilities', 'forward', 'exchange', 'contracts', 'included', 'table', 'respect', 'group', 'interest', 'bearing', 'loans', 'borrowings', 'carrying', 'value', '310', '619', '000', 'f', '134', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', 'table', 'summarises', 'maturity', 'profile', 'company', 'financial', 'liabilities', '31', 'december', '2014', 'based', 'contractual', 'undiscounted', 'payments', 'non', 'derivative', 'financial', 'liabilities', 'trade', 'payables', 'demand', '000', 'less', '3', 'months', '000', '3', '12', 'months', '000', '1', '5', 'years', '000', '5', 'years', '000', 'contractual', 'cash', 'flows', 'total', '000', '206', '317', '980', '207', '297', '206', '317', '980', '207', '297', 'table', 'summarises', 'maturity', 'profile', 'company', 'financial', 'liabilities', '31', 'december', '2013', 'based', 'contractual', 'undiscounted', 'payments', 'non', 'derivative', 'financial', 'liabilities', 'trade', 'payables', 'demand', '000', 'less', '3', 'months', '000', '3', '12', 'months', '000', '1', '5', 'years', '000', '5', 'years', '000', 'contractual', 'cash', 'flows', 'total', '000', '234', '433', '15', '234', '448', '234', '433', '15', '234', '448', 'estimation', 'fair', 'values', 'forward', 'currency', 'contracts', 'carried', 'fair', 'value', 'valued', 'using', 'pricing', 'models', 'discounted', 'cash', 'flow', 'techniques', 'based', 'assumptions', 'provided', 'standard', 'chartered', 'bank', 'plc', 'morgan', 'stanley', 'co', 'international', 'plc', '9', '25', 'senior', 'secured', 'notes', 'issued', '2011', 'valued', 'amortised', 'cost', 'fair', 'value', '9', '25', 'senior', 'secured', 'notes', 'determined', 'reference', 'quoted', 'price', '31', 'december', '9', '25', 'senior', 'secured', 'notes', 'quoted', 'luxembourg', 'stock', 'exchange', 'bourse', 'de', 'luxembourg', '31', 'december', '2014', 'fair', 'value', 'senior', 'secured', 'notes', '291', '080', '000', '2013', '329', '949', '000', '31', 'december', '2014', 'effective', 'interest', 'rate', 'senior', 'secured', 'notes', '10', '25', '2013', '10', '25', 'receivables', 'payables', 'carrying', 'amount', 'deemed', 'reflect', 'fair', 'value', 'ifrs', '7', 'assets', 'liabilities', 'classified', 'way', 'fair', 'value', 'calculated', 'interest', 'bearing', 'loans', 'borrowings', 'considered', 'level', '1', 'liabilities', 'remaining', 'financial', 'assets', 'liabilities', 'considered', 'level', '2', 'assets', 'liabilities', 'ifrs', '7', 'defines', 'level', '2', 'assets', 'liabilities', 'inputs', 'quoted', 'prices', 'included', 'within', 'level', '1', 'observable', 'asset', 'liability', 'either', 'directly', 'e', 'prices', 'indirectly', 'e', 'derived', 'prices', 'capital', 'management', 'board', 'policy', 'maintain', 'strong', 'capital', 'base', 'maintain', 'investor', 'creditor', 'confidence', 'sustain', 'future', 'development', 'business', 'given', 'objective', 'group', 'capital', 'management', 'ensure', 'maintains', 'healthy', 'capital', 'ratios', 'order', 'support', 'business', 'maximise', 'shareholder', 'value', 'capital', 'structure', 'group', 'consists', 'debt', 'includes', 'borrowings', 'disclosed', 'note', 'cash', 'cash', 'equivalents', 'equity', 'attributable', 'equity', 'holders', 'parent', 'comprising', 'share', 'capital', 'reserves', 'disclosed', 'notes', '23', '24', 'consolidated', 'statements', 'changes', 'equity', 'no', 'changes', 'made', 'objectives', 'policies', 'processes', 'either', 'year', 'f', '135', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', '20', 'obligations', 'leases', 'group', 'group', 'entered', 'commercial', 'leases', 'certain', 'properties', 'items', 'machinery', 'leases', 'duration', '1', '10', 'years', 'future', 'minimum', 'rentals', 'payable', 'non', 'cancellable', 'operating', 'leases', 'follows', 'not', 'later', 'one', 'year', 'one', 'year', 'not', 'five', 'years', 'five', 'years', '2014', '000', '2013', '000', '2', '618', '8', '260', '2', '571', '1', '562', '5', '713', '1', '177', '13', '449', '8', '452', 'none', 'leases', 'contain', 'contingent', 'rents', 'no', 'obligations', 'leases', 'company', '2013', 'nil', '21', 'provisions', 'liabilities', 'charges', 'group', 'warranty', '2014', '000', 'beginning', 'year', 'additions', 'utilisation', 'effect', 'movements', 'exchange', 'rates', '16', '975', '10', '789', '10', '700', '218', 'end', 'year', '17', '282', 'analysed', 'current', 'non', 'current', '9', '171', '8', '111', '17', '282', 'warranty', 'provision', 'represents', 'costs', 'provided', 'respect', 'group', 'warranty', 'scheme', 'provision', '17', '282', '000', '2013', '16', '975', '000', 'recognised', 'expected', 'claims', 'based', 'past', 'experience', 'level', 'actual', 'warranty', 'claims', 'received', 'expected', 'substantially', 'utilised', 'within', 'next', 'three', 'years', 'no', 'provisions', 'liabilities', 'charges', 'company', '22', 'pension', 'obligations', 'group', 'defined', 'contribution', 'scheme', 'group', 'opened', 'defined', 'contribution', 'scheme', 'june', '2011', 'total', 'expense', 'relating', 'scheme', 'current', 'year', '1', '183', '000', '2013', '343', '000', 'outstanding', 'contributions', 'year', 'end', '123', '000', '2013', '99', '000', 'defined', 'benefit', 'scheme', 'group', 'operates', 'defined', 'benefit', 'pension', 'scheme', 'providing', 'benefits', 'based', 'final', 'pensionable', 'salary', 'scheme', 'closed', 'new', 'entrants', '31', 'may', '2011', 'benefits', 'existing', 'members', 'not', 'affected', 'closure', 'scheme', 'defined', 'contribution', 'scheme', 'available', 'new', 'employees', 'date', 'scheme', 'assets', 'invested', 'standard', 'life', 'f', '136', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', 'pension', 'limited', 'legal', 'general', 'assurance', 'mfs', 'international', 'uk', 'limited', 'eaton', 'vance', 'management', 'international', 'limited', 'morgan', 'stanley', 'investment', 'management', 'limited', 'majedie', 'asset', 'management', 'scheme', 'administered', 'buck', 'consultants', 'administration', 'investment', 'limited', 'assets', 'scheme', 'held', 'separately', 'group', 'pension', 'scheme', 'operates', 'regulatory', 'framework', 'pensions', 'act', '2004', 'trustee', 'primary', 'responsibility', 'governance', 'scheme', 'benefit', 'payments', 'trustee', 'administered', 'funds', 'scheme', 'assets', 'held', 'trust', 'governed', 'uk', 'regulation', 'responsibility', 'governance', 'scheme', 'lies', 'mainly', 'trustee', 'trustee', 'comprised', 'representatives', 'group', 'members', 'scheme', 'pension', 'scheme', 'exposes', 'group', 'following', 'risks', 'asset', 'volatility', 'scheme', 'statement', 'investment', 'principles', 'targets', '55', 'return', 'enhancing', 'assets', '45', 'risk', 'reducing', 'assets', 'trustee', 'monitors', 'appropriateness', 'scheme', 'investment', 'strategy', 'consultation', 'group', 'ongoing', 'basis', 'inflation', 'risk', 'majority', 'benefits', 'linked', 'inflation', 'increases', 'inflation', 'lead', 'higher', 'liabilities', 'although', 'cases', 'caps', 'place', 'protect', 'extreme', 'inflation', 'longevity', 'increases', 'life', 'expectancy', 'increase', 'period', 'benefits', 'expected', 'payable', 'increases', 'value', 'placed', 'scheme', 'liabilities', 'no', 'scheme', 'amendments', 'curtailments', 'settlements', 'either', 'year', 'ended', '31', 'december', '2014', '31', 'december', '2013', 'projected', 'unit', 'method', 'used', 'determine', 'liabilities', 'pension', 'cost', 'assessed', 'accordance', 'advice', 'independent', 'qualified', 'actuary', 'using', 'projected', 'unit', 'method', 'latest', 'actuarial', 'valuation', 'scheme', 'effective', 'date', '6', 'april', '2011', 'assumptions', 'make', 'significant', 'effect', 'valuation', 'relating', 'rate', 'return', 'investments', 'rate', 'increase', 'salaries', 'pensions', 'expected', 'longevity', 'assumed', 'pre', 'retirement', 'investment', 'return', 'would', '6', '2', 'per', 'annum', 'post', 'retirement', 'return', '4', '9', 'salary', 'increases', 'would', 'average', '3', '25', 'per', 'annum', 'next', 'four', 'calendar', 'years', 'starting', '1', 'january', '2011', '4', '05', 'thereafter', '6', 'april', '2011', 'actuarial', 'valuation', 'actuarial', 'value', 'scheme', 'assets', '114', '306', '000', 'sufficient', 'cover', '109', 'benefits', 'accrued', 'members', 'allowing', 'expected', 'future', 'increases', 'earnings', 'following', 'latest', 'actuarial', 'valuation', 'scheme', '6', 'april', '2011', 'contributions', 'remained', '15', '5', 'group', 'active', 'member', 'not', 'participate', 'salary', 'sacrifice', 'scheme', 'active', 'members', 'participating', 'salary', 'sacrifice', 'scheme', 'employees', 'make', 'no', 'contributions', 'group', 'contribution', '22', 'latest', 'actuarial', 'valuation', '6', 'april', '2011', 'showed', 'surplus', 'scheme', '9', '645', '000', 'valuation', 'rolled', 'forward', '6', 'april', '2012', 'date', 'deficit', 'scheme', '28', '856', '000', 'representing', 'funding', 'level', '82', 'basis', 'group', 'agreed', 'recovery', 'plan', 'fund', 'deficit', 'period', '9', 'years', '6', 'april', '2012', 'estimated', 'group', 'contributions', 'year', 'ending', '31', 'december', '2015', '9', '093', '000', 'full', 'actuarial', 'valuation', 'carried', '6', 'april', '2011', 'qualified', 'independent', 'actuary', 'valuation', 'updated', 'independent', 'qualified', 'actuary', '31', 'december', '2013', '31', 'december', '2014', 'accordance', 'ias', '19r', 'actuarial', 'valuation', '6', 'april', '2014', 'currently', 'progress', 'due', 'completed', 'july', '2015', 'f', '137', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', 'principal', 'assumptions', 'used', 'actuary', '31', 'december', '2014', 'discount', 'rate', 'rate', 'increase', 'salaries', 'see', 'rate', 'revaluation', 'deferment', 'rate', 'increase', 'pensions', 'payment', 'attracting', 'lpi', 'expected', 'return', 'scheme', 'assets', 'rpi', 'inflation', 'assumption', 'cpi', 'inflation', 'assumption', '31', 'december', '2013', '3', '70', '3', '10', '2', '10', '3', '15', '4', '65', '3', '30', '2', '10', '4', '55', '3', '90', '2', '20', '3', '25', '5', '90', '3', '40', '2', '20', 'salary', 'escalation', 'assumption', 'applies', '2014', 'assumed', 'salary', 'increases', '2013', '2014', '3', '5', 'per', 'annum', 'salary', 'assumption', 'increase', '2015', '2021', '3', 'per', 'annum', 'salary', 'increase', '3', '1', 'table', 'applies', '2021', 'group', 'inflation', 'assumption', 'reflects', 'long', 'term', 'expectations', 'not', 'amended', 'short', 'term', 'variability', 'post', 'mortality', 'assumptions', 'allow', 'expected', 'increases', 'longevity', 'current', 'disclosures', 'relate', 'assumptions', 'based', 'longevity', 'years', 'following', 'retirement', 'reporting', 'date', 'future', 'relating', 'employee', 'retiring', '2034', '2014', 'assumptions', '2033', '2013', 'assumptions', 'projected', 'life', 'expectancy', 'age', '65', 'future', 'currently', 'aged', '45', '2014', 'current', 'currently', 'aged', '65', '2014', 'future', 'currently', 'aged', '45', '2013', 'current', 'currently', 'aged', '65', '2013', '23', '6', '27', '5', '22', '3', '26', '0', '23', '5', '27', '5', '22', '2', '25', '9', 'male', 'female', 'years', 'duration', 'liabilities', 'years', '31', 'december', '2014', 'duration', 'liabilities', 'years', '31', 'december', '2013', '27', '26', 'following', 'table', 'provide', 'information', 'composition', 'fair', 'value', 'assets', 'scheme', 'asset', 'class', '31', 'december', '31', 'december', '31', 'december', '31', 'december', '31', 'december', '31', 'december', '2014', '2014', '2014', '2013', '2013', '2013', 'quoted', 'unquoted', 'total', 'quoted', 'unquoted', 'total', '000', '000', '000', '000', '000', '000', 'uk', 'equities', 'overseas', 'equities', 'property', 'index', 'linked', 'gilts', 'corporate', 'bonds', 'diversified', 'alternatives', 'high', 'yield', 'bonds', 'cash', 'insurance', 'policies', '32', '029', '32', '470', '44', '478', '18', '718', '42', '056', '32', '029', '32', '470', '18', '718', '44', '478', '42', '056', '30', '386', '30', '072', '33', '588', '16', '130', '33', '884', '30', '386', '30', '072', '16', '130', '33', '588', '33', '884', '675', '18', '732', '8', '973', '2', '163', '18', '732', '8', '973', '675', '2', '163', '903', '17', '290', '8', '005', '1', '280', '17', '290', '8', '005', '903', '1', '280', 'total', '109', '652', '90', '642', '200', '294', '94', '949', '76', '589', '171', '538', 'f', '138', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', '31', 'december', '2014', '000', '31', 'december', '2013', '000', 'total', 'fair', 'value', 'scheme', 'assets', 'present', 'value', 'funded', 'obligations', '200', '294', '212', '698', 'liability', 'asset', 'recognised', 'statement', 'financial', 'position', '12', '404', 'year', 'ended', '31', 'december', '2014', '000', 'amounts', 'recognised', 'income', 'statement', 'amounts', 'charged', 'operating', 'loss', 'profit', 'current', 'service', 'cost', 'amounts', 'credited', 'finance', 'income', 'net', 'interest', 'income', 'net', 'defined', 'liability', 'asset', 'total', 'expense', 'recognised', 'income', 'statement', '171', '538', '169', '652', '1', '886', 'year', 'ended', '31', 'december', '2013', '000', '8', '709', '8', '005', '287', '8', '422', '60', '7', '945', 'changes', 'present', 'value', 'defined', 'benefit', 'pensions', 'obligations', 'analysed', 'follows', 'year', 'ended', '31', 'december', '2014', 'year', 'ended', '31', 'december', '2013', 'beginning', 'year', 'current', 'service', 'cost', 'employee', 'contributions', 'interest', 'cost', 'experience', 'losses', 'actuarial', 'losses', 'arising', 'changes', 'financial', 'assumptions', 'disbursements', '169', '652', '149', '469', '8', '709', '8', '005', '39', '38', '7', '680', '6', '840', '2', '371', '427', '26', '217', '6', '795', '1', '970', '1', '922', 'obligation', 'end', 'year', '212', '698', '169', '652', 'changes', 'fair', 'value', 'plan', 'assets', 'analysed', 'follows', 'year', 'ended', '31', 'december', '2014', 'year', 'ended', '31', 'december', '2013', 'beginning', 'year', 'interest', 'assets', 'employer', 'contributions', 'contributions', 'employees', 'actuarial', 'gains', 'benefits', 'paid', '171', '538', '7', '967', '9', '143', '39', '13', '577', '1', '970', '146', '486', '6', '900', '8', '983', '38', '11', '053', '1', '922', 'fair', 'value', 'end', 'year', '200', '294', '171', '538', 'year', 'ended', '31', 'december', '2014', 'year', 'ended', '31', 'december', '2013', '21', '544', '17', '953', 'actual', 'return', 'scheme', 'assets', 'f', '139', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', 'year', 'ended', '31', 'december', '2014', 'year', 'ended', '31', 'december', '2013', 'analysis', 'amounts', 'recognised', 'statement', 'financial', 'position', 'asset', 'liability', 'beginning', 'year', 'net', 'expense', 'recognised', 'statement', 'comprehensive', 'income', 'employer', 'contributions', 'actuarial', 'loss', 'gain', 'recognised', 'comprehensive', 'income', '1', '886', '8', '422', '9', '143', '15', '011', '2', '983', '7', '945', '8', '983', '3', '831', 'liability', 'asset', 'recognised', 'statement', 'financial', 'position', 'end', 'year', '12', '404', '1', '886', 'year', 'ended', '31', 'december', '2014', 'year', 'ended', '31', 'december', '2013', 'analysis', 'amount', 'taken', 'comprehensive', 'income', 'return', 'assets', 'greater', 'discount', 'rate', 'experience', 'losses', 'arising', 'funded', 'obligations', 'losses', 'arising', 'due', 'changes', 'financial', 'assumptions', 'underlying', 'present', 'value', 'funded', 'obligations', '13', '577', '2', '371', '11', '053', '427', '26', '217', '6', '795', 'amount', 'recognised', 'comprehensive', 'income', '15', '011', '3', '831', 'sensitivity', 'analysis', 'principal', 'assumptions', 'used', 'measure', 'scheme', 'liabilities', 'present', 'value', 'benefit', 'obligations', '31', 'december', '2014', '000', 'present', 'value', 'benefit', 'obligations', '31', 'december', '2013', '000', 'decrease', '0', '25', 'increase', '0', '25', '227', '284', '221', '255', '180', '881', '178', '178', 'increase', 'one', 'year', '219', '414', '174', '276', 'change', 'assumption', 'discount', 'rate', 'rate', 'inflation', 'life', 'expectancy', 'increased', 'approximately', '1', 'year', 'applies', 'retail', 'prices', 'index', 'consumer', 'prices', 'index', 'inflation', 'assumptions', 'assumption', 'salary', 'increase', 'assumption', 'also', 'increase', '0', '25', 'per', 'annum', '2020', '21', 'pension', 'increase', 'assumption', 'increase', '0', '15', 'per', 'annum', 'projected', 'unit', 'method', 'applied', 'calculating', 'defined', 'benefit', 'obligations', 'funding', 'levels', 'monitored', 'regular', 'basis', 'trustee', 'group', 'ensure', 'security', 'member', 'benefits', 'next', 'triennial', 'valuation', '6', 'april', '2014', 'due', 'completed', 'july', '2015', 'line', 'scheme', 'specific', 'funding', 'requirements', 'pensions', 'act', '2004', 'part', 'valuation', 'trustee', 'group', 'review', 'adequacy', 'contributions', 'paid', 'scheme', 'expected', 'future', 'benefit', 'payments', 'year', '1', '2015', 'year', '2', '2016', 'year', '3', '2017', 'year', '4', '2018', 'year', '5', '2019', 'years', '6', '10', '2019', '2023', 'years', '6', '10', '2020', '2024', 'f', '140', 'year', 'ended', '31', 'december', '2014', '000s', 'year', 'ended', '31', 'december', '2013', '000s', '2', '025', '1', '992', '2', '062', '2', '558', '2', '856', '21', '433', '1', '684', '1', '739', '1', '796', '1', '854', '10', '213', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', 'history', 'scheme', 'experience', 'year', 'ended', '31', 'december', '2014', 'present', 'value', 'scheme', 'liabilities', 'fair', 'value', 'scheme', 'assets', 'deficit', 'surplus', 'scheme', 'taking', 'account', 'effect', 'paragraph', '64', 'ias19', 'experience', 'gains', 'scheme', 'assets', 'percentage', 'scheme', 'assets', 'experience', 'losses', 'scheme', 'liabilities', 'percentage', 'present', 'value', 'scheme', 'liabilities', 'total', 'amount', 'recognised', 'comprehensive', 'income', 'percentage', 'present', 'value', 'scheme', 'liabilities', 'year', 'ended', '31', 'december', '2013', '212', '698', '200', '294', '169', '652', '171', '538', '12', '404', '13', '577', '6', '8', '2', '371', '1', '1', '15', '011', '7', '1', '1', '886', '11', '053', '6', '4', '427', '0', '3', '3', '831', '2', '3', '23', 'share', 'capital', 'group', 'company', 'allotted', 'called', 'fully', 'paid', '3', '069', '085', 'ordinary', 'shares', '0', '001', '2013', '2', '992', '905', 'ordinary', 'shares', '0', '001', '161', '521', 'shares', '0', '001', '2013', '127', '871', 'shares', 'classified', 'liabilities', 'shares', 'classified', 'shareholders', 'funds', '2014', '000', '2013', '000', '3', '3', '3', '3', '2014', '000', '2013', '000', '3', '3', '3', '3', 'april', '2013', '1', '142', '696', 'ordinary', 'shares', 'issued', 'prestige', 'motor', 'holdings', 'controlled', 'lnvestindustrial', 'v', 'l', 'p', 'consideration', '150', '000', '000', 'order', 'provide', 'funds', 'development', 'new', 'vehicles', 'april', '2014', '76', '180', 'ordinary', 'shares', 'issued', 'prestige', 'motor', 'holdings', 'consideration', '3', '750', '000', 'part', 'share', 'subscription', 'agreement', 'dated', '5', 'december', '2012', 'december', '2013', '127', '871', 'shares', 'issued', 'daimler', 'ag', 'consideration', '127', '88', 'september', '2014', '33', '650', 'additional', 'shares', 'issued', 'daimler', 'ag', 'consideration', '33', '65', 'giving', 'aston', 'martin', 'holdings', 'uk', 'limited', 'subsidiaries', 'access', 'certain', 'technologies', 'use', 'next', 'generation', 'vehicles', 'shares', 'cash', 'issued', 'prestige', 'motor', 'holdings', '2017', 'dependent', 'upon', 'deficit', 'defined', 'benefit', 'pension', 'scheme', 'four', 'year', 'period', 'june', '2017', 'holders', 'ordinary', 'shares', 'entitled', 'receive', 'dividends', 'declared', 'time', 'time', 'entitled', 'one', 'vote', 'per', 'share', 'meetings', 'company', 'holders', 'shares', 'entitled', 'receive', 'dividends', 'declared', 'time', 'time', 'not', 'entitled', 'vote', 'meetings', 'company', '24', 'reserves', 'share', 'premium', 'share', 'premium', '366', '463', '000', 'represents', 'following', 'transactions', '291', '512', '000', 'represents', 'difference', 'par', 'value', 'share', 'capital', 'issued', '1', 'june', '2007', '31', 'december', '2009', 'amount', 'subscribed', 'shares', 'june', '2011', 'board', 'directors', 'approved', 'reduction', 'capital', 'whereby', '100', '000', '000', 'share', 'f', '141', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', 'premium', 'account', 'transferred', 'retained', 'earnings', 'order', 'create', 'distributable', 'reserves', 'within', 'aston', 'martin', 'holdings', 'uk', 'limited', 'parent', 'company', 'group', 'enable', 'redemption', 'preference', 'shares', 'payment', 'dividend', 'april', '2013', 'shares', 'issued', 'prestige', 'motor', 'holdings', 'controlled', 'investindustrial', 'v', 'l', 'p', 'consideration', '150', '000', '000', 'par', 'value', '1', '000', 'resulting', 'share', 'premium', '149', '999', '000', 'december', '2013', 'shares', 'issued', 'daimler', 'ag', 'nominal', 'consideration', 'share', 'premium', '16', '785', '000', 'april', '2014', 'shares', 'issued', 'prestige', 'holdings', 'controlled', 'investindustrial', 'v', 'l', 'p', 'nominal', 'consideration', 'share', 'premium', '3', '750', '000', 'part', 'share', 'subscription', 'agreement', 'dated', '5', 'december', '2012', 'september', '2014', 'shares', 'issued', 'daimler', 'ag', 'nominal', 'consideration', 'share', 'premium', '4', '417', '000', 'capital', 'reserve', 'capital', 'reserve', '94', '064', '000', 'arose', 'follows', 'year', 'ended', 'december', '2008', 'capital', 'contribution', 'company', 'existing', 'shareholders', '39', '069', '000', 'plus', 'share', 'based', 'payment', 'charge', '5', '495', '000', 'valuation', 'shares', 'options', 'granted', 'mr', 'david', 'richards', 'dr', 'ulrich', 'bez', 'relation', 'services', 'provided', 'connection', 'acquisition', 'aston', 'martin', 'lagonda', 'group', 'see', 'note', '26', 'june', '2011', 'group', 'redeemed', '48', '400', '000', 'preference', 'shares', 'transferred', 'equivalent', 'amount', 'retained', 'earnings', 'capital', 'redemption', 'reserve', 'april', '2014', 'group', 'acquired', '50', 'controlling', 'interest', 'amws', 'limited', 'parent', 'company', 'aston', 'martin', 'works', 'limited', 'increase', 'capital', 'reserve', '1', '100', '000', 'represents', 'difference', 'consideration', 'paid', 'acquisition', 'fair', 'value', 'disposal', '40', 'interest', 'amws', 'limited', 'group', 'owned', 'date', 'acquisition', 'see', 'note', '14', 'details', 'translation', 'reserve', 'foreign', 'currency', 'translation', 'reserve', 'used', 'record', 'exchange', 'differences', 'arising', 'translation', 'financial', 'statements', 'foreign', 'subsidiaries', '25', 'additional', 'cash', 'flow', 'information', 'group', 'analysis', 'group', 'net', 'debt', 'year', 'ended', '31', 'december', '2014', '1', 'january', '2014', 'cash', 'flow', '000', '000', 'cash', 'cash', 'equivalents', 'bank', 'loans', 'overdrafts', 'senior', 'secured', 'notes', 'senior', 'subordinated', 'pik', 'notes', 'exchange', 'differences', '000', 'non', 'cash', 'movements', '000', '31', 'december', '2014', '000', '74', '653', '13', '854', '296', '765', '15', '354', '5', '348', '28', '565', '99', '035', '757', '606', '30', '203', '15', '160', '89', '250', '19', '808', '298', '403', '114', '195', '235', '966', '60', '464', '1', '363', '45', '363', '343', '156', 'year', 'ended', '31', 'december', '2013', '1', 'january', '2013', 'cash', 'flow', '000', '000', 'cash', 'cash', 'equivalents', 'bank', 'loans', 'overdrafts', 'senior', 'secured', 'notes', 'exchange', 'differences', '000', 'non', 'cash', 'movements', '000', '31', 'december', '2013', '000', '50', '413', '41', '259', '295', '149', '25', '113', '27', '344', '28', '379', '873', '61', '29', '995', '74', '653', '13', '854', '296', '765', '285', '995', '24', '078', '812', '26', '763', '235', '966', 'f', '142', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', '26', 'share', 'based', 'payments', 'company', 'two', 'share', 'option', 'schemes', 'operation', 'revenue', 'customs', 'approved', 'scheme', 'unapproved', 'scheme', 'schemes', 'no', 'vesting', 'conditions', 'equitysettled', 'options', 'existed', 'year', 'follows', 'approved', 'scheme', 'unapproved', 'scheme', 'grant', 'date', 'exercise', 'price', '18', 'october', '2007', '7230', 'p', '18', 'october', '2007', '0', '1', 'p', 'number', 'shares', 'earliest', 'date', 'exercise', 'expiry', 'date', '54', '285', '18', 'october', '2007', '21', '714', '18', 'october', '2007', '18', 'october', '2027', 'number', 'weighted', 'average', 'exercise', 'price', 'share', 'options', 'follows', 'outstanding', 'beginning', 'end', 'year', '2014', 'weighted', 'average', 'exercise', 'price', '2014', 'number', 'options', '2013', 'weighted', 'average', 'exercise', 'price', '2013', 'number', 'options', '5164', 'p', '75', '999', '5164', 'p', '75', '999', 'share', 'options', 'issued', 'return', 'services', 'relation', 'acquisition', 'aston', 'martin', 'lagonda', 'group', 'limited', 'period', 'ended', '31', 'december', '2007', 'therefore', 'fair', 'value', 'options', 'issued', '5', '495', '000', 'recognised', 'goodwill', '27', 'contingent', 'liabilities', 'capital', 'commitments', 'group', 'capital', 'expenditure', 'contracts', 'value', '26', '135', '000', '2013', '6', '064', '000', 'placed', 'not', 'provided', '31', 'december', '2014', 'company', 'company', 'guarantor', '9', '25', 'senior', 'secured', 'notes', 'issued', 'aston', 'martin', 'capital', 'limited', 'june', '2011', 'aston', 'martin', 'capital', 'limited', 'subsidiary', 'company', '28', 'related', 'party', 'transactions', 'group', 'transactions', 'group', 'undertakings', 'related', 'parties', 'eliminated', 'consolidation', 'accordingly', 'not', 'disclosed', 'group', 'entered', 'transactions', 'ordinary', 'course', 'business', 'entities', 'significant', 'influence', 'group', 'related', 'parties', 'group', 'transactions', 'entered', 'trading', 'balances', 'outstanding', 'year', 'end', 'entities', 'significant', 'influence', 'group', 'related', 'parties', 'group', 'follows', 'related', 'party', 'group', 'entities', 'significant', 'influence', 'group', '31', 'december', '2014', 'associates', '31', 'december', '2014', 'related', 'parties', 'companies', 'common', 'directorship', '31', 'december', '2014', 'total', '31', 'december', '2014', 'f', '143', 'sales', 'related', 'party', '000', 'purchases', 'related', 'party', '000', 'amounts', 'owed', 'related', 'party', '000', 'amounts', 'owed', 'related', 'party', '000', '2', '726', '3', '730', '28', '269', '159', '1', '199', '2', '885', '4', '957', '269', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', 'year', 'ended', '31', 'december', '2013', 'group', 'provided', 'balance', '5', '200', '000', 'due', 'entity', 'significant', 'influence', 'group', 'entities', 'significant', 'influence', 'group', '31', 'december', '2013', 'associates', '31', 'december', '2013', 'related', 'parties', 'companies', 'common', 'directorship', '31', 'december', '2013', 'total', '31', 'december', '2013', '3', '371', '12', '355', '15', '041', '349', '81', '594', '1', '835', '117', '887', '699', '265', '1', '16', '613', '16', '089', '940', '1', '953', 'transactions', 'directors', 'following', 'transactions', 'taken', 'place', 'directors', 'arms', 'length', 'basis', 'year', 'ended', '31', 'december', '2014', 'one', 'vehicle', 'sold', 'mr', 'amr', 'ali', 'abdallah', 'abou', 'el', 'seoud', '85', '833', 'year', 'ended', '31', 'december', '2013', 'no', 'transactions', 'directors', 'no', 'amounts', 'outstanding', 'either', 'year', 'end', 'company', 'not', 'entered', 'transactions', 'related', 'parties', 'company', 'either', 'year', 'no', 'balances', 'outstanding', 'related', 'parties', 'company', 'either', 'year', 'end', 'company', 'operates', 'arrangement', 'direct', 'indirect', 'subsidiaries', 'whereby', 'purchases', 'goods', 'services', 'behalf', 'subsidiaries', 'subsidiaries', 'purchase', 'goods', 'services', 'behalf', 'company', 'transactions', 'entered', 'trading', 'balances', 'year', 'end', 'subsidiaries', 'company', 'follows', 'purchased', 'behalf', 'subsidiary', 'undertakings', '000', 'purchased', 'via', 'subsidiary', 'undertakings', '000', 'amounts', 'owed', 'subsidiary', 'undertakings', '000', 'amounts', 'owed', 'subsidiary', 'undertakings', '000', 'subsidiaries', '31', 'december', '2014', '29', '593', '94', '968', '206', '317', 'subsidiaries', '31', 'december', '2013', '35', '779', '16', '774', '234', '433', 'related', 'party', 'subsidiary', 'terms', 'conditions', 'transactions', 'related', 'parties', 'group', 'company', 'sales', 'purchases', 'related', 'parties', 'made', 'normal', 'market', 'prices', 'outstanding', 'balances', 'entities', 'subsidiaries', 'unsecured', 'interest', 'free', 'cash', 'settlement', 'expected', 'within', '60', 'days', 'invoice', 'terms', 'conditions', 'transactions', 'subsidiaries', 'exception', 'balances', 'placed', 'intercompany', 'accounts', 'no', 'specified', 'credit', 'period', 'group', 'company', 'not', 'provided', 'benefited', 'guarantees', 'related', 'party', 'receivables', 'payables', 'year', 'ended', '31', 'december', '2013', 'group', 'provided', 'balance', '5', '200', '000', 'due', 'entity', 'significant', 'influence', 'group', 'company', 'not', 'made', 'provision', 'impairment', 'relating', 'amounts', 'owed', 'related', 'parties', 'either', 'year', 'end', '29', 'post', 'balance', 'sheet', 'events', 'april', '2015', 'david', 'richards', 'agreed', 'transfer', '32', '571', 'ordinary', 'shares', 'aston', 'martin', 'holdings', 'uk', 'limited', 'following', 'shareholders', '19', '671', 'ordinary', 'shares', 'prestige', 'motor', 'holdings', '9', '700', 'ordinary', 'shares', 'tejara', 'capital', 'limited', '3', '200', 'ordinary', 'shares', 'adeem', 'automotive', 'manufacturing', 'company', 'limited', 'f', '144', 'notes', 'financial', 'statements', 'year', 'ended', '31', 'december', '2014', 'continued', '23', 'april', '2015', 'company', 'accepted', 'binding', 'subscriptions', '200', 'million', 'preference', 'shares', 'first', 'tranche', '100', 'million', 'received', '27', 'april', '2015', 'second', 'tranche', '100', 'million', 'may', 'drawn', 'time', 'following', '12', 'months', 'subscriptions', 'also', 'included', 'warrants', 'pro', 'rata', 'allocation', 'p', 'shares', 'non', 'voting', 'ordinary', 'shares', 'corresponding', '4', 'current', 'fully', 'diluted', 'share', 'capital', 'company', '30', 'immediate', 'parent', 'company', 'company', 'no', 'immediate', 'parent', 'company', 'f', '145', 'registered', 'office', 'issuer', 'aston', 'martin', 'capital', 'holdings', 'limited', 'po', 'box', '218', '43', '45', 'la', 'motte', 'street', 'st', 'helier', 'jersey', 'je4', '8sd', 'legal', 'advisors', 'issuer', 'company', 'english', 'u', 'law', 'simpson', 'thacher', 'bartlett', 'llp', 'citypoint', 'one', 'ropemaker', 'street', 'london', 'ec2y', '9hu', 'united', 'kingdom', 'jersey', 'law', 'carey', 'olsen', '47', 'esplanade', 'st', 'helier', 'je1', '0bd', 'jersey', 'initial', 'purchasers', 'english', 'u', 'law', 'latham', 'watkins', 'llp', '99', 'bishopsgate', 'london', 'ec2m', '3xf', 'united', 'kingdom', 'jersey', 'law', 'appleby', '13', '14', 'esplanade', 'st', 'helier', 'jersey', 'je1', '1bd', 'trustee', 'security', 'agent', 'bryan', 'cave', 'llp', '88', 'wood', 'street', 'london', 'ec2v', '7aj', 'united', 'kingdom', 'trustee', 'security', 'agent', 'u', 'bank', 'trustees', 'limited', 'fifth', 'floor', '125', 'old', 'broad', 'street', 'london', 'ec2n', '1ar', 'united', 'kingdom', 'principal', 'paying', 'agent', 'transfer', 'agent', 'elavon', 'financial', 'services', 'dac', 'block', 'e', 'cherrywood', 'business', 'park', 'loughlinstown', 'dublin', 'ireland', 'registrar', 'calculation', 'agent', 'elavon', 'financial', 'services', 'dac', 'block', 'e', 'cherrywood', 'business', 'park', 'loughlinstown', 'dublin', 'ireland', 'u', 'paying', 'agent', 'transfer', 'agent', 'u', 'bank', 'na', '111', 'filmore', 'avenue', 'st', 'paul', 'minnesota', '55107', 'usa', 'independent', 'auditors', 'kpmg', 'llp', 'one', 'snowhill', 'snow', 'hill', 'queensway', 'birmingham', 'b4', '6gh', 'listing', 'sponsor', 'carey', 'olsen', 'corporate', 'finance', 'limited', '47', 'esplanade', 'st', 'helier', 'je1', '0bd', 'jersey', 'preliminary', 'offering', 'memorandum', 'aston', 'martin', 'holdings', 'capital', 'limited', '530', '000', '000', 'equivalent', 'senior', 'secured', 'notes', 'due', '2022', 'senior', 'secured', 'notes', 'due', '2022', 'joint', 'global', 'coordinators', 'j', 'p', 'morgan', 'deutsche', 'bank', 'goldman', 'sachs', 'international', 'joint', 'bookrunners', 'bofa', 'merrill', 'lynch', 'hsbc', 'morgan', 'stanley', 'standard', 'chartered', 'bank', 'unicredit', 'bank']]
In [87]:
print(len(text))
print(len(text.split())) 
105469885
14320094
In [88]:
from nltk.tokenize import word_tokenize
tokens = word_tokenize(text)
In [89]:
print(len(tokens))
14324293
In [90]:
text = [tokens]
In [109]:
from gensim.models import Word2Vec
model = Word2Vec(text,size=150, window=2, min_count=10, workers=4, iter=100)
In [110]:
model.wv.similarity('holdings','issuer')
Out[110]:
0.8597713
In [111]:
model.wv.similarity('holdings','company')
Out[111]:
0.6776182
In [112]:
model.similarity('company','issuer')
C:\Users\ALMUG\Anaconda3\lib\site-packages\ipykernel_launcher.py:1: DeprecationWarning: Call to deprecated `similarity` (Method will be removed in 4.0.0, use self.wv.similarity() instead).
  """Entry point for launching an IPython kernel.
Out[112]:
0.45329663
In [113]:
model.similarity('except','issuer')
C:\Users\ALMUG\Anaconda3\lib\site-packages\ipykernel_launcher.py:1: DeprecationWarning: Call to deprecated `similarity` (Method will be removed in 4.0.0, use self.wv.similarity() instead).
  """Entry point for launching an IPython kernel.
Out[113]:
0.45481765
In [114]:
model.similarity('holding','issuer')
C:\Users\ALMUG\Anaconda3\lib\site-packages\ipykernel_launcher.py:1: DeprecationWarning: Call to deprecated `similarity` (Method will be removed in 4.0.0, use self.wv.similarity() instead).
  """Entry point for launching an IPython kernel.
Out[114]:
-0.064534955
In [115]:
model.most_similar("holdings")
C:\Users\ALMUG\Anaconda3\lib\site-packages\ipykernel_launcher.py:1: DeprecationWarning: Call to deprecated `most_similar` (Method will be removed in 4.0.0, use self.wv.most_similar() instead).
  """Entry point for launching an IPython kernel.
Out[115]:
[('finance', 0.9689649939537048),
 ('acquisition', 0.939449667930603),
 ('group', 0.9190472364425659),
 ('advance', 0.9185442328453064),
 ('p', 0.9179452657699585),
 ('telecomunicazioni', 0.9109818935394287),
 ('weather', 0.9087049961090088),
 ('lender', 0.9033300876617432),
 ('performing', 0.9008870720863342),
 ('entered', 0.8940343856811523)]
In [32]:
model.most_similar("Issuer will not, and will not cause or permit")
C:\Users\ALMUG\Anaconda3\lib\site-packages\ipykernel_launcher.py:1: DeprecationWarning: Call to deprecated `most_similar` (Method will be removed in 4.0.0, use self.wv.most_similar() instead).
  """Entry point for launching an IPython kernel.
---------------------------------------------------------------------------
KeyError                                  Traceback (most recent call last)
<ipython-input-32-89a8ae82f439> in <module>
----> 1 model.most_similar("Issuer will not, and will not cause or permit")

~\Anaconda3\lib\site-packages\gensim\utils.py in new_func1(*args, **kwargs)
   1445                     stacklevel=2
   1446                 )
-> 1447                 return func(*args, **kwargs)
   1448 
   1449             return new_func1

~\Anaconda3\lib\site-packages\gensim\models\base_any2vec.py in most_similar(self, positive, negative, topn, restrict_vocab, indexer)
   1395 
   1396         """
-> 1397         return self.wv.most_similar(positive, negative, topn, restrict_vocab, indexer)
   1398 
   1399     @deprecated("Method will be removed in 4.0.0, use self.wv.wmdistance() instead")

~\Anaconda3\lib\site-packages\gensim\models\keyedvectors.py in most_similar(self, positive, negative, topn, restrict_vocab, indexer)
    551                 mean.append(weight * word)
    552             else:
--> 553                 mean.append(weight * self.word_vec(word, use_norm=True))
    554                 if word in self.vocab:
    555                     all_words.add(self.vocab[word].index)

~\Anaconda3\lib\site-packages\gensim\models\keyedvectors.py in word_vec(self, word, use_norm)
    466             return result
    467         else:
--> 468             raise KeyError("word '%s' not in vocabulary" % word)
    469 
    470     def get_vector(self, word):

KeyError: "word 'Issuer will not, and will not cause or permit' not in vocabulary"
In [33]:
model.doesnt_match('breakfast cereal dinner lunch';.split())
  File "<ipython-input-33-cb3e652df33c>", line 1
    model.doesnt_match('breakfast cereal dinner lunch';.split())
                                                      ^
SyntaxError: invalid syntax
In [17]:
model.score(['The fox jumped over the lazy dog'.split()])
---------------------------------------------------------------------------
RuntimeError                              Traceback (most recent call last)
<ipython-input-17-95fd9c58bb45> in <module>
----> 1 model.score(['The fox jumped over the lazy dog'.split()])

~\Anaconda3\lib\site-packages\gensim\models\word2vec.py in score(self, sentences, total_sentences, chunksize, queue_factor, report_delay)
    960         if not self.hs:
    961             raise RuntimeError(
--> 962                 "We have currently only implemented score for the hierarchical softmax scheme, "
    963                 "so you need to have run word2vec with hs=1 and negative=0 for this to work."
    964             )

RuntimeError: We have currently only implemented score for the hierarchical softmax scheme, so you need to have run word2vec with hs=1 and negative=0 for this to work.
In [ ]:
path = r"C:\Users\ALMUG\Downloads\BondCovenant_Corpus\High Yield - Bond Documents\corpus\Aston Martin 2022 Prelim OM Mar 23 2017.txt"
data = open(path, 'r', encoding="utf8")
text = data.read()
data.close()